| Age | Commit message (Expand) | Author |
| 2009-07-12 | Temporarily revert r75408. It appears to break the Apple-style builds: | Bill Wendling |
| 2009-07-12 | eliminate MOV64r0 in favor of a Pat<> pattern. This is only nontrivial because | Chris Lattner |
| 2009-07-11 | fix x86-64 static codegen to materialize the address of a global with movl in... | Chris Lattner |
| 2009-07-11 | fix a bug in my cleanup patch | Chris Lattner |
| 2009-07-11 | comment cleanup, reduce nesting. | Chris Lattner |
| 2009-07-11 | remove some dead patterns, WrapperRIP doesn't exist in -static mode | Chris Lattner |
| 2009-07-11 | Fix PR4533, which is about buggy codegen in x86-64 -static mode. | Chris Lattner |
| 2009-07-11 | assert(0) -> LLVM_UNREACHABLE. | Torok Edwin |
| 2009-07-11 | Don't put IT instruction before conditional branches. | Evan Cheng |
| 2009-07-11 | Smarter isel of ldrsb / ldrsh. Only make use of these when [r,r] address is f... | Evan Cheng |
| 2009-07-11 | Major changes to Thumb (not Thumb2). Many 16-bit instructions either modifies... | Evan Cheng |
| 2009-07-11 | 80 col violation. | Evan Cheng |
| 2009-07-10 | Add superclasses of ARM Neon quad registers. The Q2PR class contains pairs of | Bob Wilson |
| 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 | Avoid compiler warnings when assertions are turned off. | Duncan Sands |
| 2009-07-10 | CMOVxx doesn't swap operands which it's commuted. | Evan Cheng |
| 2009-07-10 | Predicate VFP instructions on HasVFP2 instead of IsARM. This allows VFP instr... | David Goodwin |
| 2009-07-10 | Update for GlobalVariables ctor change. | Owen Anderson |
| 2009-07-10 | t2LDM_RET does not fall-through. | David Goodwin |
| 2009-07-10 | Add Thumb2ITBlockPass.cpp to CMakeLists.txt, fixing | Duncan Sands |
| 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-10 | More info about Thumb1 predication support. | Evan Cheng |
| 2009-07-10 | We don't need separate thumb1 instructions tADDSi3 etc. for addc and subc. Th... | Evan Cheng |
| 2009-07-10 | Add a thumb2 pass to insert IT blocks. | Evan Cheng |
| 2009-07-10 | Move isPredicated from .cpp to .h | Evan Cheng |
| 2009-07-10 | 80 col violation. | Evan Cheng |
| 2009-07-10 | Remove a bogus assertion. | Evan Cheng |
| 2009-07-10 | Replace TM.getRegisterInfo() calls by TRI instance variable. | Bob Wilson |