| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove GCSE, ValueNumbering, and LoadValueNumbering. These have been depreca... | Owen Anderson | 2008-08-15 | 5 | -130/+0 |
* | Add a value_type typedef to SmallVector, to make it more compatible with STL ... | Owen Anderson | 2008-08-15 | 1 | -0/+1 |
* | Inline the fastpath of PATypeHolder::get(). This is a small speedup in | Chris Lattner | 2008-08-15 | 1 | -0/+11 |
* | Move MachineInstr::getOpcode inline. | Owen Anderson | 2008-08-14 | 1 | -1/+2 |
* | Convert uses of std::vector in TargetInstrInfo to SmallVector. This change h... | Owen Anderson | 2008-08-14 | 1 | -7/+8 |
* | Make FastISel's constructor protected, and give it a destructor. | Dan Gohman | 2008-08-14 | 1 | -4/+6 |
* | Removed redundant ctor. | Ted Kremenek | 2008-08-14 | 1 | -1/+0 |
* | Use empty() instead of begin() == end(). | Dan Gohman | 2008-08-14 | 2 | -0/+3 |
* | Expunge the last uses of std::map from LiveIntervals. | Owen Anderson | 2008-08-13 | 1 | -7/+6 |
* | Move r2iMap_ over to DenseMap from std::map. | Owen Anderson | 2008-08-13 | 1 | -3/+17 |
* | Make the allocation of LiveIntervals explicit, rather than holding them in th... | Owen Anderson | 2008-08-13 | 1 | -6/+8 |
* | Switch this from std::map to DenseMap. | Owen Anderson | 2008-08-13 | 1 | -1/+1 |
* | Add default constructor to APSInt | Daniel Dunbar | 2008-08-13 | 1 | -0/+3 |
* | Initial checkin of the new "fast" instruction selection support. See | Dan Gohman | 2008-08-13 | 1 | -0/+71 |
* | Rename SelectionDAGISel's FastISel to Fast, to begin to make | Dan Gohman | 2008-08-13 | 1 | -2/+2 |
* | Rename this, in case people think that NullFolder | Duncan Sands | 2008-08-13 | 1 | -4/+4 |
* | Add a NullFolder class that doesn't fold constants. | Duncan Sands | 2008-08-12 | 4 | -8/+210 |
* | Use SmallVector instead of std::vector | Devang Patel | 2008-08-12 | 1 | -6/+6 |
* | Point people to ConstantExpr and ConstantFolding, | Duncan Sands | 2008-08-12 | 2 | -8/+14 |
* | Use DenseMap to keep track of last users. | Devang Patel | 2008-08-12 | 1 | -1/+7 |
* | add a helper method to sys::Path for clang, patch by | Chris Lattner | 2008-08-11 | 1 | -0/+6 |
* | Keep track of analysis usage information for passes. Avoid invoking | Devang Patel | 2008-08-11 | 1 | -0/+6 |
* | Make it possible to use different constant | Duncan Sands | 2008-08-11 | 3 | -81/+455 |
* | "This patch adds a virtual call to AbstractLatticeFunction to derive a | Chris Lattner | 2008-08-09 | 1 | -0/+7 |
* | Unbreak the llvm-gcc build: recent changes to | Duncan Sands | 2008-08-09 | 1 | -2/+2 |
* | Make 'Insert' set the name for Loads, instead of passing the name into the | Chris Lattner | 2008-08-09 | 1 | -3/+3 |
* | comment update | Chris Lattner | 2008-08-09 | 1 | -1/+2 |
* | Delete a redundant binding, LLVMHasInitializer. | Gordon Henriksen | 2008-08-09 | 1 | -1/+0 |
* | Fix the LLVMCreateJITCompiler C binding. | Gordon Henriksen | 2008-08-08 | 1 | -0/+1 |
* | Have IRBuilder take a template argument on whether or not to preserve | Eric Christopher | 2008-08-08 | 2 | -3/+5 |
* | Handle visibility printing with all generality. Remove bunch of duplicate code. | Anton Korobeynikov | 2008-08-08 | 1 | -0/+4 |
* | Undo most of r54519. | Evan Cheng | 2008-08-08 | 3 | -10/+5 |
* | Don't call getAnalysisUsage unless -debug-pass is enabled. This speeds | Chris Lattner | 2008-08-08 | 1 | -2/+5 |
* | Add new parameter Fast to createJIT to enable the fast codegen path. | Evan Cheng | 2008-08-08 | 1 | -3/+6 |
* | It's not legal to output a GV in a coalesced section if it's used in an ARM P... | Evan Cheng | 2008-08-08 | 3 | -5/+10 |
* | Speed up the passmgr by avoiding heap thrashing on vectors. | Chris Lattner | 2008-08-08 | 2 | -5/+11 |
* | Add the remaining fp_round libcalls: | Bruno Cardoso Lopes | 2008-08-07 | 1 | -0/+4 |
* | Silence a warning. | Matthijs Kooijman | 2008-08-07 | 1 | -1/+1 |
* | Provide convenient helpers | Anton Korobeynikov | 2008-08-07 | 1 | -0/+12 |
* | Add hook for constant pool section selection for darwin. | Anton Korobeynikov | 2008-08-07 | 1 | -0/+3 |
* | Select section for constant pool entries | Anton Korobeynikov | 2008-08-07 | 2 | -0/+7 |
* | Remove trailing spaces. | Matthijs Kooijman | 2008-08-07 | 1 | -8/+8 |
* | Factor code that finalize PHI nodes, jump tables, etc. out of SelectBasicBloc... | Evan Cheng | 2008-08-07 | 1 | -1/+6 |
* | Clarify "node" vs. "value" in some comments. | Dan Gohman | 2008-08-06 | 1 | -3/+3 |
* | Correct an assertion string. | Dan Gohman | 2008-08-05 | 1 | -1/+1 |
* | This option doesn't need to be a target option. It can be in SDISel instead. | Owen Anderson | 2008-08-05 | 1 | -5/+0 |
* | - Fix SelectionDAG to generate correct CFGs. | Owen Anderson | 2008-08-04 | 3 | -4/+11 |
* | Removed unused parameters. | Bill Wendling | 2008-08-01 | 1 | -5/+5 |
* | Add a flag to disable jump table generation (all | Dale Johannesen | 2008-07-31 | 1 | -0/+4 |
* | Move SelectionDAG::viewGraph() out of line; as an inline function | Dan Gohman | 2008-07-30 | 1 | -1/+1 |