- 3dd168d Fix a search+replace-o. by Dan Gohman · 17 years ago
- 601d3c0 Add -flimit-float-precision to enable some faster, by Dale Johannesen · 17 years ago
- 087c850 FastISel support for unreachable. by Dan Gohman · 17 years ago
- c7f4a8a In FastISel mode, the scheduler may be invoked multiple times by Dan Gohman · 17 years ago
- 95267a1 Add initial support for selecting constant materializations that require constant by Owen Anderson · 17 years ago
- 5b22980 Add an include of SmallSet.h. by Dan Gohman · 17 years ago
- ae73dc1 Tidy up several unbeseeming casts from pointer to intptr_t. by Dan Gohman · 17 years ago
- 6448d91 Clean up uses of TargetLowering::getTargetMachine. by Dan Gohman · 17 years ago
- 7794f2a Add intrinsics for log, log2, log10, exp, exp2. by Dale Johannesen · 17 years ago
- 104e4ce Do trivial local CSE for constants and other non-Instruction values in FastISel. by Dan Gohman · 17 years ago
- 2a7c671 Put RegsForValue in the llvm namespace to avoid warnings about by Dan Gohman · 17 years ago
- 3df24e6 Create HandlePHINodesInSuccessorBlocksFast, a version of by Dan Gohman · 17 years ago
- d5d81a4 Oops, I accidentally broke the fallback case with my last commit. by Owen Anderson · 17 years ago
- 99aaf10 Fix an issue where we were reusing materializations of constants in blocks not dominated by the materialization. This is by Owen Anderson · 17 years ago
- f0cbcd4 Split the SelectionDAG-building code, including the FunctionLoweringInfo by Dan Gohman · 17 years ago
- 94b8d7e Separate MachineInstr-emitting routines from actual scheduling by Dan Gohman · 17 years ago
- f45261f If TargetSelectInstruction returns true, move to next instruction. by Evan Cheng · 17 years ago
- 36fd941 80 col violations. by Evan Cheng · 17 years ago
- d2ff647 Ensure that HandlePHINodesInSuccessorBlocks is run for all blocks, by Dan Gohman · 17 years ago
- ed63214 Provide two overloads of AnalyzeNewNode. by Gabor Greif · 17 years ago
- 1189f3a Even though no caller actually uses the new value by Duncan Sands · 17 years ago
- 2692d59 Another situation where ROTR is cheaper than ROTL. by Bill Wendling · 17 years ago
- 353dea2 For this pattern, ROTR is the cheaper option. by Bill Wendling · 17 years ago
- c5cbda1 - Fix comment so that it describes how the code really works: by Bill Wendling · 17 years ago
- dc71563 typo by Gabor Greif · 17 years ago
- 12632d2 fix some 80-col violations by Gabor Greif · 17 years ago
- eb9f892 Transform (x << (y&31)) -> (x << y). This takes advantage of the fact x86 shift instructions 2nd operand (shift count) is limited to 0 to 31 (or 63 in the x86-64 case). by Evan Cheng · 17 years ago
- cc54e76 Fix an issue where a use might be selected before a def, and then we didn't respect the pre-chosen vreg by Owen Anderson · 17 years ago
- 4529966 Fix 80 col. violations. by Evan Cheng · 17 years ago
- 17a568b Back out 55498. It broken Apple style bootstrapping. by Evan Cheng · 17 years ago
- 99b2182 Add a target callback for FastISel. by Dan Gohman · 17 years ago
- ba36cb5 erect abstraction boundaries for accessing SDValue members, rename Val -> Node to reflect semantics by Gabor Greif · 17 years ago
- 205d925 Implement null and undef values for FastISel. by Dan Gohman · 17 years ago
- a3f8b7a Optimize DAGCombiner's worklist processing. Previously it started by Dan Gohman · 17 years ago
- 9ffd8b5 Move CaseBlock, JumpTable, and BitTestBlock to be members of by Dan Gohman · 17 years ago
- 5edd361 Fix a FastISel bug where the instructions from lowering the arguments by Dan Gohman · 17 years ago
- 91ee545 Reduce the size of the Parts vector. by Rafael Espindola · 17 years ago
- c0bb68b Hook up support for fast-isel of trunc instructions, using the newly working support for EXTRACT_SUBREG. by Owen Anderson · 17 years ago
- 40a468f FastEmitInst_extractsubreg doesn't need to be passed the register class. It can get it from MachineRegisterInfo instead. by Owen Anderson · 17 years ago
- c748ffa Correctly resize the Parts array. by Rafael Espindola · 17 years ago
- e00a8a2 Split the ATOMIC NodeType's to include the size, e.g. by Dale Johannesen · 17 years ago
- 7c3234c Reorganize the lifetimes of the major objects SelectionDAGISel works with. by Dan Gohman · 17 years ago
- 8970f00 Add a helper method that will be used to support EXTRACT_SUBREG for selecting trunc's in fast-isel. by Owen Anderson · 17 years ago
- a318dab Fix FastISel's bitcast code for the case where getRegForValue fails. by Dan Gohman · 17 years ago
- 6336b70 Use TargetLowering to get the types in fast isel, which handles pointer types correctly for our purposes. by Owen Anderson · 17 years ago
- 151ed61 Don't check TLI.getOperationAction. The FastISel way is to by Dan Gohman · 17 years ago
- ad368ac Add a new FastISel method, getRegForValue, which takes care of by Dan Gohman · 17 years ago
- 96a9999 Add a comment about the current floating-point constant code in FastISel. by Dan Gohman · 17 years ago
- e5a8dc5 Optimize ScheduleDAGRRList's topological sort to use one pass instead by Dan Gohman · 17 years ago
- 3a09d89 Optimize ScheduleDAG's ComputeDepths and ComputeHeights to not need by Dan Gohman · 17 years ago
- 10df0fa Basic FastISel support for floating-point constants. by Dan Gohman · 17 years ago
- 96c5ea8 Fix handling of inttoptr and ptrtoint when unhandled operands are present. by Owen Anderson · 17 years ago
- 9d5b416 Add support for fast isel of inttoptr and ptrtoint in the cases where truncation is not needed. by Owen Anderson · 17 years ago
- d0533c9 Factor out a large amoutn of the cast handling code in fast isel into helper methods. by Owen Anderson · 17 years ago
- 97e2568 Add support for fast isel of zext. by Owen Anderson · 17 years ago
- 99a6cb9 disallow direct access to SDValue::ResNo, provide a getter instead by Gabor Greif · 17 years ago
- 1326933 Add support for fptosi of constants in fast isel. by Owen Anderson · 17 years ago
- 3200d92 Optimize SelectionDAG's topological sort to use one pass instead by Dan Gohman · 17 years ago
- 763d893 Refactor the bitcast code into its own function. by Dan Gohman · 17 years ago
- 80bc6e2 Make FastISel use the correct argument type when casting GEP indices. by Dan Gohman · 17 years ago
- b71fea2 Don't select binary instructions with illegal types. by Dan Gohman · 17 years ago
- a843b8d Add support for fast isel of sitofp, and remove some unnecessary and imprecise legality checks. by Owen Anderson · 17 years ago
- 77a2187 Use a combination of copyRegToReg and ISD::BIT_CONVERT when doing fast isel of bitcasts, by Owen Anderson · 17 years ago
- 940f83e Make TargetInstrInfo::copyRegToReg return a bool indicating whether the copy requested by Owen Anderson · 17 years ago
- 46aa2f5 Add support for fast isel of non-constant fptosi instructions. by Owen Anderson · 17 years ago
- 09c5d8b typo fix. by Chris Lattner · 17 years ago
- 1146728 Actually recycle SDNode allocations. SelectionDAG is using by Dan Gohman · 17 years ago
- 0f84e4e Add a RetVT parameter to emitted FastISel methods, so that we will be able to pass the desired return by Owen Anderson · 17 years ago
- b41aec5 Unbreak build. by Evan Cheng · 17 years ago
- d894f1d Expand bitcast support in fast isel to support bitcasts of non-constant values by emitting reg-reg copies. by Owen Anderson · 17 years ago
- 6d0c25e Add support for fast isel of (integer) immediate materialization pattens, and use them to support by Owen Anderson · 17 years ago
- c56711c make sure to flush the stream after dumping, to make sure it goes out immediately. by Chris Lattner · 17 years ago
- 62ca325 get MachineConstantPool off std::ostream, onto raw_ostream. It would be by Chris Lattner · 17 years ago
- 944fac7 Switch the asmprinter (.ll) and all the stuff it requires over to by Chris Lattner · 17 years ago
- 6ecf509 Make MBBMap a DenseMap instead of a std::map. by Dan Gohman · 17 years ago
- f350b27 Move the point at which FastISel taps into the SelectionDAGISel by Dan Gohman · 17 years ago
- 6679906 Avoid creating shift-by-zero SDNodes in the common case of by Dan Gohman · 17 years ago
- 6f17966 Move SelectionDAG's constructor out of line. by Dan Gohman · 17 years ago
- 3c8f36f Reapply r55191 and r55192. by Dan Gohman · 17 years ago
- 449416d Reverting r55190, r55191, and r55192. They broke the build with this error message: by Bill Wendling · 17 years ago
- 5ed3cbb Fix the InsertBranch call. by Dan Gohman · 17 years ago
- e0182ec Support non-fallthrough unconditional branches in FastISel. by Dan Gohman · 17 years ago
- 3b7753b Add FastISel support for PHINodes. Machine PHI nodes by Dan Gohman · 17 years ago
- 22bb311 Factor out the predicate check code from DAGISelEmitter.cpp by Dan Gohman · 17 years ago
- 2bb1e3e Add libcalls for the new rounding opcodes. by Dan Gohman · 17 years ago
- 509e84f Add libm-oriented ISD opcodes for rounding operations. by Dan Gohman · 17 years ago
- f93cf79 Have FastISel skip the multiply by 1 for getelementptr on i8*. by Dan Gohman · 17 years ago
- 7a0e659 MVT::getMVT uses iPTR for pointer types, while we need the actual by Dan Gohman · 17 years ago
- ca84121 Elements in DeadNodeSet are checked for use_empty() before they by Dan Gohman · 17 years ago
- d5fe57d Basic fast-isel support for instructions with constant int operands. by Dan Gohman · 17 years ago
- 2076aa8 Type of first GEP operand is always the same as the target pointer type. by Evan Cheng · 17 years ago
- fd90394 Fix unused variable warnings. by Dan Gohman · 17 years ago
- 83785c8 First cut, un-optimized (and untested) fast isel lowering of GetElementPtrInst. by Evan Cheng · 17 years ago
- f990b57 Simplify the BuildMI calls even more. by Dan Gohman · 17 years ago
- bb46633 Simplify FastISel's constructor argument list, make the FastISel by Dan Gohman · 17 years ago
- 2385852 Dump the instruction that foiled ISel even when -debug is not used. by Dan Gohman · 17 years ago
- cb34cd7 Make more use of the BuildMI API. by Dan Gohman · 17 years ago
- 4cbe066 Minor code reorganization. by Dan Gohman · 17 years ago
- 77ad796 Minor whitespace cleanup. by Dan Gohman · 17 years ago
- b7864a9 Fix 80 column violation. by Dan Gohman · 17 years ago