| Commit message (Expand) | Author | Age | Files | Lines |
| * | Revert 95130. | Evan Cheng | 2010-02-02 | 25 | -30/+34 |
| * | Accept floating point immediates in DEBUG_VALUE. | Dale Johannesen | 2010-02-02 | 1 | -1/+11 |
| * | AsmParser/X86: Add temporary hack to allow parsing "sal". Eventually we need | Daniel Dunbar | 2010-02-02 | 1 | -2/+8 |
| * | use OwningPtr and factor code better. | Chris Lattner | 2010-02-02 | 1 | -19/+21 |
| * | refactor code so that LLVMTargetMachine creates the asmstreamer and | Chris Lattner | 2010-02-02 | 16 | -46/+76 |
| * | Hopefully temporarily revert this. | Eric Christopher | 2010-02-02 | 2 | -100/+70 |
| * | simplify getVerboseAsm | Chris Lattner | 2010-02-02 | 1 | -6/+6 |
| * | move handling of asm-verbose out of AsmPrinter.cpp into LLVMTargetMachine.cpp... | Chris Lattner | 2010-02-02 | 2 | -17/+16 |
| * | remove dead #include, stupid symlinks. | Chris Lattner | 2010-02-02 | 1 | -1/+0 |
| * | Remove a bunch of stuff around the edges of the ELF writer. | Chris Lattner | 2010-02-02 | 2 | -11/+1 |
| * | Reformat my last patch slightly. | Eric Christopher | 2010-02-02 | 1 | -4/+4 |
| * | tidy some targets. | Chris Lattner | 2010-02-02 | 3 | -6/+0 |
| * | Re-add strcmp and known size object size checking optimization. | Eric Christopher | 2010-02-02 | 2 | -12/+41 |
| * | remove dead code. | Chris Lattner | 2010-02-02 | 4 | -43/+0 |
| * | detemplatize the ppc code emitter. | Chris Lattner | 2010-02-02 | 1 | -37/+21 |
| * | remove dead code. | Chris Lattner | 2010-02-02 | 4 | -73/+0 |
| * | add a definition for ID. | Chris Lattner | 2010-02-02 | 1 | -0/+3 |
| * | detemplatize ARM code emitter. | Chris Lattner | 2010-02-02 | 1 | -111/+57 |
| * | MCAsmParser/X86: Represent absolute memory operands as CodeGen does, with scale | Daniel Dunbar | 2010-02-02 | 1 | -2/+2 |
| * | MCCodeEmitter/X86: Handle tied registers better when converting MCInst -> | Daniel Dunbar | 2010-02-02 | 1 | -6/+18 |
| * | MC/Mach-O: Set SOME_INSTRUCTIONS bit for sections. | Daniel Dunbar | 2010-02-02 | 2 | -4/+9 |
| * | remove dead code. | Chris Lattner | 2010-02-02 | 4 | -43/+2 |
| * | detemplatize alpha code emission, it is now JIT specific. | Chris Lattner | 2010-02-02 | 1 | -32/+13 |
| * | eliminate all the dead addSimpleCodeEmitter implementations. | Chris Lattner | 2010-02-02 | 10 | -155/+0 |
| * | Pass callsite return type to TargetLowering::LowerCall and use that to check ... | Evan Cheng | 2010-02-02 | 25 | -34/+30 |
| * | eliminate FileModel::Model, just use CodeGenFileType. The client | Chris Lattner | 2010-02-02 | 4 | -13/+10 |
| * | remove the remnants of TargetMachOWriterInfo. | Chris Lattner | 2010-02-02 | 2 | -26/+0 |
| * | Add a new top-level MachO.h file for manifest constants, fixing | Chris Lattner | 2010-02-02 | 1 | -3/+3 |
| * | Added t2BFI (Bitfield Insert) entry for disassembler, with blank pattern field. | Johnny Chen | 2010-02-02 | 1 | -1/+10 |
| * | remove PPCMachOWriterInfo. | Chris Lattner | 2010-02-02 | 5 | -214/+1 |
| * | eliminate all forms of addPassesToEmitMachineCode except | Chris Lattner | 2010-02-02 | 1 | -72/+8 |
| * | Test revert 95050; there's a good chance it's causing | Dale Johannesen | 2010-02-02 | 1 | -14/+0 |
| * | Inline addAssemblyEmitter into its one real caller and delete | Chris Lattner | 2010-02-02 | 1 | -31/+7 |
| * | Adding missing methods for creating Add, Mul, Neg and Sub with NUW. | Duncan Sands | 2010-02-02 | 2 | -2/+30 |
| * | Apparently gdb is not amused by empty lines in pubtypes section. | Devang Patel | 2010-02-02 | 1 | -2/+4 |
| * | NULL terminate name in pubtypes sections. | Devang Patel | 2010-02-02 | 1 | -1/+1 |
| * | don't turn (A & (C0?-1:0)) | (B & ~(C0?-1:0)) -> C0 ? A : B | Chris Lattner | 2010-02-02 | 1 | -9/+13 |
| * | fix a crash in loop unswitch on a loop invariant vector condition. | Chris Lattner | 2010-02-02 | 1 | -1/+5 |
| * | Perform sibcall in some cases when arguments are passes memory. Look for cases | Evan Cheng | 2010-02-02 | 1 | -6/+49 |
| * | Make local RA smarter about reusing input register of a copy | Dale Johannesen | 2010-02-02 | 1 | -0/+14 |
| * | LangRef.html says that inttoptr and ptrtoint always use zero-extension | Dan Gohman | 2010-02-02 | 1 | -21/+32 |
| * | Factor out alignof expression folding into a separate function and | Dan Gohman | 2010-02-02 | 1 | -26/+69 |
| * | Various code simplifications. | Dan Gohman | 2010-02-02 | 1 | -31/+28 |
| * | Update CMake. | Daniel Dunbar | 2010-02-02 | 1 | -1/+0 |
| * | Don't need to check the last argument since it'll always be bool. We also | Eric Christopher | 2010-02-02 | 1 | -5/+1 |
| * | More indentation/tabification fixes. | Eric Christopher | 2010-02-02 | 1 | -13/+13 |
| * | Untabify previous commit. | Eric Christopher | 2010-02-02 | 1 | -3/+3 |
| * | Kill the Mach-O writer, and temporarily make filetype=obj an error. | Nate Begeman | 2010-02-01 | 3 | -230/+1 |
| * | Formatting. | Eric Christopher | 2010-02-01 | 1 | -3/+3 |
| * | MOVi16 should also be marked as a UnaryDP instruction, i.e., it doesn't have a | Johnny Chen | 2010-02-01 | 1 | -1/+1 |