Age | Commit message (Expand) | Author |
2009-07-10 | remove the "debug" modifier, it is only used by one instruction which can | Chris Lattner |
2009-07-10 | make pcrel and non-pcrel global printing more similar. | Chris Lattner |
2009-07-10 | Undo my brain cramp. | Evan Cheng |
2009-07-10 | code model is never set to default. | Chris Lattner |
2009-07-10 | fix indentation | Chris Lattner |
2009-07-10 | remove the now-dead TM argument to these methods. | Chris Lattner |
2009-07-10 | make PIC vs DynamicNoPIC be explicit in PICStyles. | Chris Lattner |
2009-07-10 | some minor simplifications. | Chris Lattner |
2009-07-10 | add a couple of predicates to test for "stub style pic in PIC mode" and "stub... | Chris Lattner |
2009-07-10 | CMOVxx doesn't swap operands which it's commuted. | Evan Cheng |
2009-07-10 | make this more like printOperand. Perhaps some merging will happen | Chris Lattner |
2009-07-10 | simplify fast isel by using ClassifyGlobalReference. This | Chris Lattner |
2009-07-10 | eliminate GVRequiresRegister, replacing it with predicates we | Chris Lattner |
2009-07-10 | change a bunch of logic in LowerGlobalAddress to leverage the work | Chris Lattner |
2009-07-10 | add a predicate to determine if a global var reference requires a | Chris Lattner |
2009-07-10 | move some classification logic around. Now GVRequiresExtraLoad | Chris Lattner |
2009-07-10 | change isGlobalStubReference to take target flags instead of a MachineOperand. | Chris Lattner |
2009-07-10 | convert some late code (called by regalloc and code emission) | Chris Lattner |
2009-07-10 | add a new predicate method that says whether a GlobalValue | Chris Lattner |
2009-07-10 | GVRequiresExtraLoad is now never used for calls, simplify it based on this. | Chris Lattner |
2009-07-10 | actually, just eliminate PCRelGVRequiresExtraLoad. It makes the code | Chris Lattner |
2009-07-10 | There is only one case where GVRequiresExtraLoad returns true for calls: | Chris Lattner |
2009-07-10 | the "isDirectCall" operand of GVRequiresRegister is always false, eliminate it. | Chris Lattner |
2009-07-10 | split call handling out of X86SelectAddress into X86SelectCallAddress | Chris Lattner |
2009-07-10 | convert a helper method to be a static function instead of a | Chris Lattner |
2009-07-09 | If -fomit-frame-pointer is used, we still need to record when the %esp register | Bill Wendling |
2009-07-09 | Handle 'A' modifier in inline asms. | Dale Johannesen |
2009-07-09 | Thread LLVMContext through MVT and related parts of SDISel. | Owen Anderson |
2009-07-09 | Misc encoding fixes; reported on llvmdev. | Eli Friedman |
2009-07-09 | simplify this logic a bit more. | Chris Lattner |
2009-07-09 | move reasoning about darwin $non_lazy_ptr stubs from asmprinter into | Chris Lattner |
2009-07-09 | Targets sometimes assign fixed stack object to spill certain callee-saved | Evan Cheng |
2009-07-09 | rearrange some code, no functionality change. | Chris Lattner |
2009-07-09 | make direct calls set MO_PLT or MO_DARWIN_STUB as appropriate with fast isel. | Chris Lattner |
2009-07-09 | reduce nesting by rearranging branches. | Chris Lattner |
2009-07-09 | make isel use MO_PIC_BASE_OFFSET when lowering globalvalues on darwin in pic | Chris Lattner |
2009-07-09 | various minor cleanups, no functionality change. | Chris Lattner |
2009-07-09 | make isel decide whether to emit $stub's on darwin instead of asmprinter. | Chris Lattner |
2009-07-09 | pc-relative references are *always* to functions, never to globals. ISel | Chris Lattner |
2009-07-09 | make cygwin use its own stubs set, instead of overloading a darwin one. | Chris Lattner |
2009-07-09 | Make isel determine where to emit PLT-relative calls instead of having | Chris Lattner |
2009-07-09 | isPICStyleStub() is now never true in -static mode, so simplify code. | Chris Lattner |
2009-07-09 | simplify some code based on the fact that picstyles != none are only valid | Chris Lattner |
2009-07-09 | all this logic always returns true because GOT mode is never active in x86-64... | Chris Lattner |
2009-07-09 | isPICStyleRIPRel() and friends are never true in -static mode. | Chris Lattner |
2009-07-09 | .o file writing shouldn't mess around with pic/relo models like the JIT does. | Chris Lattner |
2009-07-09 | move a hack out of the asm-printer specific path to the main target selection... | Chris Lattner |
2009-07-09 | many more cleanups, for example if in the "none" pic-style, | Chris Lattner |
2009-07-09 | Reduce indentation in GVRequiresExtraLoad. Return true for windows | Chris Lattner |
2009-07-09 | When in -static mode, force the PIC style to none. Doing this requires fixing | Chris Lattner |