| Commit message (Expand) | Author | Age | Files | Lines |
* | More dead code removal (using -Wunreachable-code) | David Blaikie | 2012-01-20 | 3 | -13/+3 |
* | Ignore register mask operands when lowering instructions to MC. | Jakob Stoklund Olesen | 2012-01-18 | 1 | -0/+3 |
* | Remove VectorExtras. This unused helper was written for a type of API that is... | Benjamin Kramer | 2012-01-07 | 1 | -1/+0 |
* | Fix up the CMake build for the new files added in r146960, they're | Chandler Carruth | 2011-12-20 | 1 | -0/+1 |
* | Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_... | David Blaikie | 2011-12-20 | 6 | -1/+24 |
* | Emit a getMatchingSuperRegClass() implementation for every target. | Jakob Stoklund Olesen | 2011-12-19 | 1 | -7/+0 |
* | Initial CodeGen support for CTTZ/CTLZ where a zero input produces an | Chandler Carruth | 2011-12-13 | 1 | -0/+4 |
* | LLVMBuild: Introduce a common section which currently has a list of the | Daniel Dunbar | 2011-12-12 | 1 | -0/+3 |
* | LLVMBuild: Remove trailing newline, which irked me. | Daniel Dunbar | 2011-12-12 | 4 | -4/+0 |
* | Add bundle aware API for querying instruction properties and switch the code | Evan Cheng | 2011-12-07 | 2 | -6/+5 |
* | Move global variables in TargetMachine into new TargetOptions class. As an API | Nick Lewycky | 2011-12-02 | 3 | -3/+4 |
* | build/CMake: Finish removal of add_llvm_library_dependencies. | Daniel Dunbar | 2011-11-29 | 4 | -32/+0 |
* | Sink codegen optimization level into MCCodeGenInfo along side relocation model | Evan Cheng | 2011-11-16 | 3 | -12/+13 |
* | Make use of MachinePointerInfo::getFixedStack. This removes all mention | Jay Foad | 2011-11-15 | 1 | -5/+2 |
* | Remove some unnecessary includes of PseudoSourceValue.h. | Jay Foad | 2011-11-15 | 1 | -1/+0 |
* | build: Attempt to rectify inconsistencies between CMake and LLVMBuild version... | Daniel Dunbar | 2011-11-12 | 3 | -2/+4 |
* | LLVMBuild: Add explicit information on whether targets define an assembly pri... | Daniel Dunbar | 2011-11-11 | 1 | -0/+1 |
* | llvm-build: Add --native-target and --enable-targets options, and add logic to | Daniel Dunbar | 2011-11-10 | 1 | -1/+0 |
* | llvm-build: Add an explicit component type to represent targets. | Daniel Dunbar | 2011-11-10 | 1 | -1/+1 |
* | Added invariant field to the DAG.getLoad method and changed all calls. | Pete Cooper | 2011-11-08 | 1 | -4/+4 |
* | build/cmake: Use tblgen macro directly instead of llvm_tablegen, which just | Daniel Dunbar | 2011-11-04 | 1 | -6/+6 |
* | build: Add initial cut at LLVMBuild.txt files. | Daniel Dunbar | 2011-11-03 | 4 | -0/+102 |
* | Remove the explicit request for "Latency" scheduling from MSP430, | Dan Gohman | 2011-10-24 | 1 | -1/+0 |
* | Build system infrastructure for multiple tblgens. | Peter Collingbourne | 2011-10-06 | 1 | -6/+6 |
* | These do not need to be conditional on the presence of CommentStream, as they... | Owen Anderson | 2011-09-21 | 1 | -1/+1 |
* | In the disassembler C API, be careful not to confuse the comment streamer tha... | Owen Anderson | 2011-09-21 | 1 | -1/+1 |
* | Don't attach annotations to MCInst's. Instead, have the disassembler return,... | Owen Anderson | 2011-09-15 | 2 | -2/+4 |
* | Refactor instprinter and mcdisassembler to take a SubtargetInfo. Add -mattr= ... | James Molloy | 2011-09-07 | 2 | -2/+3 |
* | Add codegen support for vector select (in the IR this means a select | Duncan Sands | 2011-09-06 | 1 | -0/+1 |
* | Fix typo in MSP430MCTargetDesc.h. | James Molloy | 2011-08-30 | 1 | -2/+2 |
* | Move TargetRegistry and TargetSelect from Target to Support where they belong. | Evan Cheng | 2011-08-24 | 6 | -8/+6 |
* | Some refactoring so TargetRegistry.h no longer has to include any files | Evan Cheng | 2011-08-23 | 1 | -0/+1 |
* | Actually finish switching to the new system for Target sublibrary | Chandler Carruth | 2011-08-01 | 1 | -1/+1 |
* | Rewrite the CMake build to use explicit dependencies between libraries, | Chandler Carruth | 2011-07-29 | 4 | -2/+32 |
* | Explicitly declare a library dependency of LLVM*Desc to | Oscar Fuentes | 2011-07-28 | 1 | -0/+2 |
* | Clean up a pile of hacks in our CMake build relating to TableGen. | Chandler Carruth | 2011-07-26 | 3 | -1/+3 |
* | Separate MCInstPrinter registration from AsmPrinter registration. | Evan Cheng | 2011-07-25 | 2 | -10/+13 |
* | 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 | -20/+16 |
* | - Move CodeModel from a TargetMachine global option to MCCodeGenInfo. | Evan Cheng | 2011-07-20 | 3 | -5/+8 |
* | Introduce MCCodeGenInfo, which keeps information that can affect codegen | Evan Cheng | 2011-07-19 | 3 | -6/+17 |
* | Sink getDwarfRegNum, getLLVMRegNum, getSEHRegNum from TargetRegisterInfo down | Evan Cheng | 2011-07-18 | 3 | -21/+12 |
* | land David Blaikie's patch to de-constify Type, with a few tweaks. | Chris Lattner | 2011-07-18 | 2 | -5/+5 |
* | Move some parts of TargetAsmInfo down to MCAsmInfo. This is not the greatest | Evan Cheng | 2011-07-15 | 1 | -0/+2 |
* | Rename createAsmInfo to createMCAsmInfo and move registration code to MCTarge... | Evan Cheng | 2011-07-14 | 7 | -8/+13 |
* | Next round of MC refactoring. This patch factor MC table instantiations, MC | Evan Cheng | 2011-07-14 | 10 | -38/+111 |
* | - 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/+13 |
* | 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 | -5/+7 |