aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG
AgeCommit message (Expand)Author
2008-10-23Merge from mainline.Tanya Lattner
2008-10-17Merge from mainline.Tanya Lattner
2008-10-07Correctly handle calls with no return values. This fixesDan Gohman
2008-10-04wrap some long lines and expand i32 mul's to libcalls, inspired by aChris Lattner
2008-10-04Fix fast-isel's handling of atomic instructions. They mayDan Gohman
2008-10-03Pass MemOperand through for 64-bit atomics on 32-bit,Dale Johannesen
2008-10-03Use -1ULL instead of uint64_t(-1), at Anton's suggestion.Dan Gohman
2008-10-03The result of getSetCCResultType (eg: i32) may be largerDuncan Sands
2008-10-03Implement fast-isel support for zero-extending from i1.Dan Gohman
2008-10-02Optimize conditional branches in X86FastISel. This replacesDan Gohman
2008-10-02Handle some 64-bit atomics on x86-32, some of the time.Dale Johannesen
2008-10-01Make some implicit conversions explicit, to avoid compiler warnings.Dan Gohman
2008-10-01Fold trivial two-operand tokenfactors where the operands are equalDan Gohman
2008-10-01Fix typos in comments.Dan Gohman
2008-10-01Implement the -fno-builtin option in the front-end, not in the back-end.Bill Wendling
2008-09-30- Initialize "--no-builtin" to "false".Bill Wendling
2008-09-30Add the new `-no-builtin' flag. This flag is meant to mimic the GCCBill Wendling
2008-09-30Move the primary fast-isel top-level comments to FastISel.cpp, whereDan Gohman
2008-09-30Optimize SelectionDAG's AssignTopologicalOrder even further.Dan Gohman
2008-09-29Remove misuse of ReplaceNodeResults for atomics withDale Johannesen
2008-09-29Fix FastISel to not initialize the PIC-base register multiple timesDan Gohman
2008-09-26Temporarily reverting r56683. This is causing a failure during the build of l...Bill Wendling
2008-09-26Rename ConstantSDNode's getSignExtended to getSExtValue, forDan Gohman
2008-09-26Fix @llvm.frameaddress codegen. FP elimination optimization should be disable...Evan Cheng
2008-09-26Add "inreg" field to CallSDNode (doesn't increaseDale Johannesen
2008-09-25 Large mechanical patch.Devang Patel
2008-09-25Accept 'inreg' attribute on x86 functions asDale Johannesen
2008-09-25Support for i1 XOR in FastISel. It is actually safe becauseDan Gohman
2008-09-25Don't print fast-isel debug messages by default. Thanks Chris!Dan Gohman
2008-09-25Don't forget the newline in debug output.Dan Gohman
2008-09-25FastISel support for debug info.Dan Gohman
2008-09-25bug 2812: Segmentation fault on a big emdiam processor.Richard Pennington
2008-09-25Fix a recent fast-isel coverage regression - don't bail out beforeDan Gohman
2008-09-25Enable DeadMachineInstructionElim when Fast-ISel is enabled.Dan Gohman
2008-09-25<rdar://problem/6234798> Assertion failed: (!OpInfo.AssignedRegs.Regs.empty()...Evan Cheng
2008-09-24Remove SelectionDag early allocation of registersDale Johannesen
2008-09-24Reapplying r56550Bill Wendling
2008-09-24Forgot this part with my last patch. Sorry about the breakage.Bill Wendling
2008-09-24Temporarily revert r56550 until missing commit can be added.Eric Christopher
2008-09-24Refactor the constant folding code into it's own function. And call it from bothBill Wendling
2008-09-24Next round of earlyclobber handling. Approach theDale Johannesen
2008-09-24Properly handle 'm' inline asm constraints. If a GV is being selected for the...Evan Cheng
2008-09-23s/ParameterAttributes/Attributes/gDevang Patel
2008-09-23Arrange for FastISel code to have access to the MachineModuleInfoDan Gohman
2008-09-23Replace the LiveRegs SmallSet with a simple counter that keepsDan Gohman
2008-09-22Fix the alignment of loads from constant pool entries when theDan Gohman
2008-09-22Make log, log2, log10, exp, exp2 use Expand byDale Johannesen
2008-09-22Per review feedback: Only performEvan Cheng
2008-09-22Initial support for the CMake build system.Oscar Fuentes
2008-09-22Add helper function to get a 32-bit floating point constant. No functionality...Bill Wendling