| Commit message (Expand) | Author | Age | Files | Lines |
* | Tidy up a bit. | Jim Grosbach | 2011-02-03 | 1 | -3/+3 |
* | Fix a comment typo. | Bob Wilson | 2011-01-27 | 1 | -1/+1 |
* | Change all self assignments X=X to (void)X, so that we can turn on a | Jeffrey Yasskin | 2010-12-23 | 1 | -1/+1 |
* | Move <map> include out of .h and into .cpp. | Bill Wendling | 2010-12-13 | 1 | -0/+1 |
* | eliminate the Records global variable, patch by Garrison Venn! | Chris Lattner | 2010-12-13 | 1 | -1/+1 |
* | pull the code to get the operand value out of the loop. | Chris Lattner | 2010-11-15 | 1 | -48/+58 |
* | split the giant encoder loop into two new helper functions. | Chris Lattner | 2010-11-15 | 1 | -112/+122 |
* | reduce nesting and minor cleanups, no functionality change. | Chris Lattner | 2010-11-15 | 1 | -87/+88 |
* | add fields to the .td files unconditionally, simplifying tblgen a bit. | Chris Lattner | 2010-11-15 | 1 | -3/+3 |
* | Add support for specifying a PostEncoderMethod, which can perform post-proces... | Owen Anderson | 2010-11-11 | 1 | -0/+4 |
* | Support generating an MC'ized CodeEmitter directly. Maintain a reference to the | Jim Grosbach | 2010-11-03 | 1 | -5/+18 |
* | Revert r114340 (improvements in Darwin function prologue/epilogue), as it broke | Jim Grosbach | 2010-11-02 | 1 | -0/+6 |
* | Tidy up. | Jim Grosbach | 2010-11-02 | 1 | -3/+0 |
* | factor the operand list (and related fields/operations) out of | Chris Lattner | 2010-11-01 | 1 | -6/+7 |
* | Allow targets to optionally specify custom binary encoder functions for | Jim Grosbach | 2010-10-12 | 1 | -5/+20 |
* | The assert() should reference to machine instr operand number, too. | Jim Grosbach | 2010-10-11 | 1 | -2/+2 |
* | Make sure to use the machine instruction operand number. It doesn't always | Jim Grosbach | 2010-10-11 | 1 | -0/+2 |
* | When figuring out which operands match which encoding fields in an instruction, | Jim Grosbach | 2010-10-11 | 1 | -6/+17 |
* | Make <target>CodeEmitter::getBinaryCodeForInstr() a const method. | Jim Grosbach | 2010-10-08 | 1 | -1/+1 |
* | trailing whitespace | Jim Grosbach | 2010-10-07 | 1 | -17/+17 |
* | Clean up TargetOpcodes.h a bit, and limit the number of places where the full | Jakob Stoklund Olesen | 2010-07-02 | 1 | -40/+5 |
* | Add a pseudo instruction REG_SEQUENCE that takes a list of registers and | Evan Cheng | 2010-05-01 | 1 | -3/+6 |
* | rename llvm::llvm_report_error -> llvm::report_fatal_error | Chris Lattner | 2010-04-07 | 1 | -1/+1 |
* | change Target.getInstructionsByEnumValue to return a reference | Chris Lattner | 2010-03-19 | 1 | -3/+3 |
* | look up instructions by record, not by name. | Chris Lattner | 2010-03-19 | 1 | -1/+1 |
* | move target-independent opcodes out of TargetInstrInfo | Chris Lattner | 2010-02-09 | 1 | -3/+3 |
* | Remove DEBUG_DECLARE, looks like we don't need it. | Dale Johannesen | 2010-01-15 | 1 | -6/+3 |
* | Add DEBUG_DECLARE. Not used yet. | Dale Johannesen | 2010-01-09 | 1 | -3/+6 |
* | Add DEBUG_VALUE. Not used yet. | Dale Johannesen | 2010-01-08 | 1 | -3/+6 |
* | Revert 90628, which was incorrect. | Dan Gohman | 2009-12-15 | 1 | -6/+9 |
* | Minor code simplification. | Dan Gohman | 2009-12-05 | 1 | -9/+6 |
* | Introduce the TargetInstrInfo::KILL machine instruction and get rid of the | Jakob Stoklund Olesen | 2009-09-28 | 1 | -3/+3 |
* | Convert more abort() calls to llvm_report_error(). | Torok Edwin | 2009-07-08 | 1 | -2/+4 |
* | Replace std::iostreams with raw_ostream in TableGen. | Daniel Dunbar | 2009-07-03 | 1 | -1/+1 |
* | Rename COPY_TO_SUBCLASS to COPY_TO_REGCLASS, and generalize | Dan Gohman | 2009-04-13 | 1 | -3/+3 |
* | Add a new TargetInstrInfo MachineInstr opcode, COPY_TO_SUBCLASS. | Dan Gohman | 2009-04-13 | 1 | -5/+8 |
* | Fix shift overflow bug that would occur when a field was a full 32-bits | Chris Lattner | 2008-10-05 | 1 | -1/+1 |
* | Add instruction names as comments to InstBits entries. | Evan Cheng | 2008-09-17 | 1 | -5/+3 |
* | Eliminate a compile time warning. | Evan Cheng | 2008-09-07 | 1 | -1/+1 |
* | Change getBinaryCodeForInstr prototype. First operand MachineInstr& should be... | Evan Cheng | 2008-09-02 | 1 | -1/+2 |
* | Split ISD::LABEL into ISD::DBG_LABEL and ISD::EH_LABEL, eliminating | Dan Gohman | 2008-07-01 | 1 | -3/+9 |
* | Make insert_subreg a two-address instruction, vastly simplifying LowerSubregs... | Christopher Lamb | 2008-03-16 | 1 | -3/+6 |
* | Replace all target specific implicit def instructions with a target independe... | Evan Cheng | 2008-03-15 | 1 | -3/+6 |
* | SDIsel processes llvm.dbg.declare by recording the variable debug information... | Evan Cheng | 2008-02-02 | 1 | -0/+3 |
* | remove attributions from utils. | Chris Lattner | 2007-12-29 | 1 | -2/+2 |
* | Add target independent MachineInstr's to represent subreg insert/extract in M... | Christopher Lamb | 2007-07-26 | 1 | -3/+9 |
* | Files missing from LABEL check in. | Jim Laskey | 2007-01-26 | 1 | -3/+9 |
* | What should be the last unnecessary <iostream>s in the library. | Bill Wendling | 2006-12-07 | 1 | -1/+1 |
* | Remove the isTwoAddress property from the CodeGenInstruction class. It should | Chris Lattner | 2006-11-15 | 1 | -9/+9 |
* | Remove an unused variable. | Reid Spencer | 2006-11-03 | 1 | -3/+1 |