| Commit message (Expand) | Author | Age | Files | Lines |
* | createXXXMCCodeGenInfo should be static. | Evan Cheng | 2011-07-23 | 1 | -2/+2 |
* | Combine all MC initialization routines into one. e.g. InitializeX86MCAsmInfo, | Evan Cheng | 2011-07-22 | 1 | -18/+16 |
* | - Move CodeModel from a TargetMachine global option to MCCodeGenInfo. | Evan Cheng | 2011-07-20 | 3 | -6/+8 |
* | Add intrinsics for the zext / sext instructions. | Richard Osborne | 2011-07-19 | 1 | -7/+13 |
* | Add intrinsics for the testct, testwct instructions. | Richard Osborne | 2011-07-19 | 1 | -1/+9 |
* | Add intrinsics for the peek and endin instructions. | Richard Osborne | 2011-07-19 | 1 | -1/+8 |
* | Introduce MCCodeGenInfo, which keeps information that can affect codegen | Evan Cheng | 2011-07-19 | 3 | -6/+17 |
* | Move getInitialFrameState from TargetFrameInfo to MCAsmInfo (suggestions for | Evan Cheng | 2011-07-18 | 5 | -13/+12 |
* | Sink getDwarfRegNum, getLLVMRegNum, getSEHRegNum from TargetRegisterInfo down | Evan Cheng | 2011-07-18 | 3 | -18/+11 |
* | land David Blaikie's patch to de-constify Type, with a few tweaks. | Chris Lattner | 2011-07-18 | 3 | -8/+8 |
* | Major update to CMake build to reflect changes in r135219 in the | Chandler Carruth | 2011-07-15 | 2 | -2/+7 |
* | Rename createAsmInfo to createMCAsmInfo and move registration code to MCTarge... | Evan Cheng | 2011-07-14 | 5 | -6/+9 |
* | Next round of MC refactoring. This patch factor MC table instantiations, MC | Evan Cheng | 2011-07-14 | 10 | -41/+111 |
* | Update XCoreRegisterInfo::eliminateFrameIndex() to handle DBG_VALUE | Richard Osborne | 2011-07-14 | 1 | -9/+17 |
* | - Eliminate MCCodeEmitter's dependency on TargetMachine. It now uses MCInstrInfo | Evan Cheng | 2011-07-11 | 2 | -1/+12 |
* | Change createAsmParser to take a MCSubtargetInfo instead of triple, | Evan Cheng | 2011-07-09 | 1 | -0/+14 |
* | Eliminate asm parser's dependency on TargetMachine: | Evan Cheng | 2011-07-08 | 2 | -2/+3 |
* | Compute feature bits at time of MCSubtargetInfo initialization. | Evan Cheng | 2011-07-07 | 2 | -2/+3 |
* | Rename XXXGenSubtarget.inc to XXXGenSubtargetInfo.inc for consistency. | Evan Cheng | 2011-07-01 | 4 | -4/+4 |
* | Rename TargetSubtarget to TargetSubtargetInfo for consistency. | Evan Cheng | 2011-07-01 | 2 | -3/+3 |
* | - Added MCSubtargetInfo to capture subtarget features and scheduling | Evan Cheng | 2011-07-01 | 2 | -2/+11 |
* | Hide the call to InitMCInstrInfo into tblgen generated ctor. | Evan Cheng | 2011-07-01 | 2 | -3/+6 |
* | Fix the ridiculous SubtargetFeatures API where it implicitly expects CPU name to | Evan Cheng | 2011-06-30 | 4 | -6/+8 |
* | Move XCore from getRegClassForInlineAsmConstraint to | Eric Christopher | 2011-06-29 | 2 | -17/+14 |
* | Move CallFrameSetupOpcode and CallFrameDestroyOpcode to TargetInstrInfo. | Evan Cheng | 2011-06-28 | 2 | -3/+3 |
* | Hide more details in tablegen generated MCRegisterInfo ctor function. | Evan Cheng | 2011-06-28 | 1 | -2/+1 |
* | Merge XXXGenRegisterNames.inc into XXXGenRegisterInfo.inc | Evan Cheng | 2011-06-28 | 4 | -6/+8 |
* | Merge XXXGenRegisterDesc.inc XXXGenRegisterNames.inc XXXGenRegisterInfo.h.inc | Evan Cheng | 2011-06-27 | 5 | -9/+10 |
* | Fix cmake build. | Rafael Espindola | 2011-06-24 | 1 | -0/+1 |
* | Starting to refactor Target to separate out code that's needed to fully describe | Evan Cheng | 2011-06-24 | 3 | -9/+9 |
* | Fix a FIXME by making GlobalVariable::getInitializer() return a | Jay Foad | 2011-06-19 | 1 | -1/+1 |
* | Use set operations instead of plain lists to enumerate register classes. | Jakob Stoklund Olesen | 2011-06-15 | 1 | -3/+3 |
* | Remove custom allocation order boilerplate that is no longer needed. | Jakob Stoklund Olesen | 2011-06-09 | 1 | -21/+1 |
* | Add a parameter to CCState so that it can access the MachineFunction. | Eric Christopher | 2011-06-08 | 2 | -13/+14 |
* | Flag unallocatable register classes instead of giving them empty | Jakob Stoklund Olesen | 2011-06-02 | 1 | -18/+3 |
* | Fix 80 column violations. | Richard Osborne | 2011-05-31 | 1 | -2/+5 |
* | Add XCore intrinsic for crc8. | Richard Osborne | 2011-05-31 | 2 | -0/+16 |
* | Add XCore intrinsic for crc32. | Richard Osborne | 2011-05-31 | 1 | -1/+7 |
* | Use the dwarf->llvm mapping to print register names in the cfi | Rafael Espindola | 2011-05-30 | 2 | -0/+5 |
* | Replace the -unwind-tables option with a per function flag. This is more | Rafael Espindola | 2011-05-25 | 1 | -2/+2 |
* | Remove dead code. | Devang Patel | 2011-05-24 | 1 | -3/+0 |
* | Make the logic for determining function alignment more explicit. No function... | Eli Friedman | 2011-05-06 | 2 | -9/+2 |
* | Remove unused STL header includes. | Jay Foad | 2011-04-23 | 2 | -4/+0 |
* | Fix a ton of comment typos found by codespell. Patch by | Chris Lattner | 2011-04-15 | 1 | -1/+1 |
* | Add XCore intrinsics for initializing / starting / synchronizing threads. | Richard Osborne | 2011-03-31 | 1 | -6/+39 |
* | Add XCore intrinsic for setpsc. | Richard Osborne | 2011-03-17 | 1 | -1/+5 |
* | Add XCore intrinsics for setclk, setrdy. | Richard Osborne | 2011-03-16 | 1 | -1/+9 |
* | Add checkevent intrinsic to check if any resources owned by the current thread | Richard Osborne | 2011-03-16 | 2 | -55/+134 |
* | Don't indent cases in a switch, no functionality change. | Richard Osborne | 2011-03-15 | 1 | -50/+50 |
* | On the XCore the scavenging slot should be closest to the SP. | Richard Osborne | 2011-03-15 | 2 | -0/+7 |