| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix comment. | Eric Christopher | 2009-07-29 | 1 | -2/+2 |
* | Add support for gcc __builtin_ia32_ptest{z,c,nzc} intrinsics. Lower | Eric Christopher | 2009-07-29 | 1 | -0/+31 |
* | Return ConstantVector to 2.5 API. | Owen Anderson | 2009-07-28 | 1 | -6/+6 |
* | the apple "ld_classic" linker doesn't support .literal16 in 32-bit | Chris Lattner | 2009-07-28 | 1 | -1/+1 |
* | Rip all of the global variable lowering logic out of TargetAsmInfo. Since | Chris Lattner | 2009-07-28 | 1 | -1/+17 |
* | Move ConstantFP construction back to the 2.5-ish API. | Owen Anderson | 2009-07-27 | 1 | -18/+18 |
* | Revert the ConstantInt constructors back to their 2.5 forms where possible, t... | Owen Anderson | 2009-07-24 | 1 | -4/+4 |
* | Update insertps handling based on feedback. Move to a v4f32 style | Eric Christopher | 2009-07-24 | 1 | -4/+5 |
* | Add support for MMX VSETCC. | Eli Friedman | 2009-07-22 | 1 | -0/+6 |
* | Get rid of the Pass+Context magic. | Owen Anderson | 2009-07-22 | 1 | -4/+4 |
* | Remove shift amount flavor. It isn't actually complete enough to | Eli Friedman | 2009-07-21 | 1 | -1/+0 |
* | revert 76503 while I figure out what's going on | Dale Johannesen | 2009-07-21 | 1 | -2/+5 |
* | Make sure a global matching asm 'i' constraint gets its | Dale Johannesen | 2009-07-20 | 1 | -5/+2 |
* | Copy ExpandInlineAsm to TargetLowering from TargetAsmInfo. | Chris Lattner | 2009-07-20 | 1 | -0/+95 |
* | Fix x86 inline ams 'q' constraint support. In 32-bit mode, it's just like 'Q'... | Evan Cheng | 2009-07-17 | 1 | -1/+31 |
* | Move a few more convenience factory functions from Constant to LLVMContext. | Owen Anderson | 2009-07-15 | 1 | -28/+35 |
* | llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. | Torok Edwin | 2009-07-14 | 1 | -13/+13 |
* | Fix PR4533, which is about buggy codegen in x86-64 -static mode. | Chris Lattner | 2009-07-11 | 1 | -4/+4 |
* | assert(0) -> LLVM_UNREACHABLE. | Torok Edwin | 2009-07-11 | 1 | -12/+12 |
* | remove the now-dead TM argument to these methods. | Chris Lattner | 2009-07-10 | 1 | -3/+3 |
* | add a couple of predicates to test for "stub style pic in PIC mode" and "stub... | Chris Lattner | 2009-07-10 | 1 | -17/+13 |
* | eliminate GVRequiresRegister, replacing it with predicates we | Chris Lattner | 2009-07-10 | 1 | -5/+9 |
* | change a bunch of logic in LowerGlobalAddress to leverage the work | Chris Lattner | 2009-07-10 | 1 | -17/+10 |
* | move some classification logic around. Now GVRequiresExtraLoad | Chris Lattner | 2009-07-10 | 1 | -35/+5 |
* | change isGlobalStubReference to take target flags instead of a MachineOperand. | Chris Lattner | 2009-07-10 | 1 | -0/+1 |
* | GVRequiresExtraLoad is now never used for calls, simplify it based on this. | Chris Lattner | 2009-07-10 | 1 | -4/+3 |
* | actually, just eliminate PCRelGVRequiresExtraLoad. It makes the code | Chris Lattner | 2009-07-10 | 1 | -1/+1 |
* | There is only one case where GVRequiresExtraLoad returns true for calls: | Chris Lattner | 2009-07-10 | 1 | -1/+1 |
* | the "isDirectCall" operand of GVRequiresRegister is always false, eliminate it. | Chris Lattner | 2009-07-10 | 1 | -3/+3 |
* | Thread LLVMContext through MVT and related parts of SDISel. | Owen Anderson | 2009-07-09 | 1 | -4/+5 |
* | simplify this logic a bit more. | Chris Lattner | 2009-07-09 | 1 | -6/+2 |
* | move reasoning about darwin $non_lazy_ptr stubs from asmprinter into | Chris Lattner | 2009-07-09 | 1 | -6/+26 |
* | make isel use MO_PIC_BASE_OFFSET when lowering globalvalues on darwin in pic | Chris Lattner | 2009-07-09 | 1 | -0/+3 |
* | make isel decide whether to emit $stub's on darwin instead of asmprinter. | Chris Lattner | 2009-07-09 | 1 | -7/+21 |
* | Make isel determine where to emit PLT-relative calls instead of having | Chris Lattner | 2009-07-09 | 1 | -3/+25 |
* | simplify some code based on the fact that picstyles != none are only valid | Chris Lattner | 2009-07-09 | 1 | -1/+1 |
* | all this logic always returns true because GOT mode is never active in x86-64... | Chris Lattner | 2009-07-09 | 1 | -16/+5 |
* | isPICStyleRIPRel() and friends are never true in -static mode. | Chris Lattner | 2009-07-09 | 1 | -31/+21 |
* | When in -static mode, force the PIC style to none. Doing this requires fixing | Chris Lattner | 2009-07-09 | 1 | -14/+16 |
* | merge two identical functions and simplify things that are GOT specific | Chris Lattner | 2009-07-09 | 1 | -41/+33 |
* | hoist check for IsTailCall to callers. Eliminate redundant check for | Chris Lattner | 2009-07-09 | 1 | -10/+6 |
* | change a few methods to be static functions. | Chris Lattner | 2009-07-09 | 1 | -12/+17 |
* | move handling of dllimport linkage in isel, not in asmprinter. | Chris Lattner | 2009-07-09 | 1 | -2/+5 |
* | Implement changes from Chris's feedback. | Torok Edwin | 2009-07-08 | 1 | -1/+2 |
* | Convert more abort() calls to llvm_report_error(). | Torok Edwin | 2009-07-08 | 1 | -2/+1 |
* | Start converting to new error handling API. | Torok Edwin | 2009-07-08 | 1 | -5/+4 |
* | Don't accept globals as matching 'i' constraint | Dale Johannesen | 2009-07-07 | 1 | -1/+6 |
* | Add NumFixedArgs attribute to CallSDNode which indicates the number of fixed ... | Tilmann Scheller | 2009-07-03 | 1 | -1/+1 |
* | Update comments to make it clear that the function alignment is the Log2 of the | Bill Wendling | 2009-07-01 | 1 | -1/+1 |
* | Add an "alignment" field to the MachineFunction object. It makes more sense to | Bill Wendling | 2009-06-30 | 1 | -0/+5 |