| OLD | NEW |
| 1 set(LLVM_TARGET_DEFINITIONS ARM.td) | 1 set(LLVM_TARGET_DEFINITIONS ARM.td) |
| 2 | 2 |
| 3 tablegen(LLVM ARMGenRegisterInfo.inc -gen-register-info) | 3 tablegen(LLVM ARMGenRegisterInfo.inc -gen-register-info) |
| 4 tablegen(LLVM ARMGenInstrInfo.inc -gen-instr-info) | 4 tablegen(LLVM ARMGenInstrInfo.inc -gen-instr-info) |
| 5 tablegen(LLVM ARMGenCodeEmitter.inc -gen-emitter) | 5 tablegen(LLVM ARMGenCodeEmitter.inc -gen-emitter) |
| 6 tablegen(LLVM ARMGenMCCodeEmitter.inc -gen-emitter -mc-emitter) | 6 tablegen(LLVM ARMGenMCCodeEmitter.inc -gen-emitter -mc-emitter) |
| 7 tablegen(LLVM ARMGenMCPseudoLowering.inc -gen-pseudo-lowering) | 7 tablegen(LLVM ARMGenMCPseudoLowering.inc -gen-pseudo-lowering) |
| 8 tablegen(LLVM ARMGenAsmWriter.inc -gen-asm-writer) | 8 tablegen(LLVM ARMGenAsmWriter.inc -gen-asm-writer) |
| 9 tablegen(LLVM ARMGenAsmMatcher.inc -gen-asm-matcher) | 9 tablegen(LLVM ARMGenAsmMatcher.inc -gen-asm-matcher) |
| 10 tablegen(LLVM ARMGenDAGISel.inc -gen-dag-isel) | 10 tablegen(LLVM ARMGenDAGISel.inc -gen-dag-isel) |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 ARMFrameLowering.cpp | 26 ARMFrameLowering.cpp |
| 27 ARMHazardRecognizer.cpp | 27 ARMHazardRecognizer.cpp |
| 28 ARMISelDAGToDAG.cpp | 28 ARMISelDAGToDAG.cpp |
| 29 ARMISelLowering.cpp | 29 ARMISelLowering.cpp |
| 30 ARMInstrInfo.cpp | 30 ARMInstrInfo.cpp |
| 31 ARMJITInfo.cpp | 31 ARMJITInfo.cpp |
| 32 ARMLoadStoreOptimizer.cpp | 32 ARMLoadStoreOptimizer.cpp |
| 33 ARMMCInstLower.cpp | 33 ARMMCInstLower.cpp |
| 34 ARMMachineFunctionInfo.cpp | 34 ARMMachineFunctionInfo.cpp |
| 35 ARMNaClHeaders.cpp | 35 ARMNaClHeaders.cpp |
| 36 ARMNaClDivideCheckPass.cpp |
| 36 ARMNaClRewritePass.cpp | 37 ARMNaClRewritePass.cpp |
| 37 ARMRegisterInfo.cpp | 38 ARMRegisterInfo.cpp |
| 38 ARMSelectionDAGInfo.cpp | 39 ARMSelectionDAGInfo.cpp |
| 39 ARMSubtarget.cpp | 40 ARMSubtarget.cpp |
| 40 ARMTargetMachine.cpp | 41 ARMTargetMachine.cpp |
| 41 ARMTargetObjectFile.cpp | 42 ARMTargetObjectFile.cpp |
| 42 ARMTargetTransformInfo.cpp | 43 ARMTargetTransformInfo.cpp |
| 43 MLxExpansionPass.cpp | 44 MLxExpansionPass.cpp |
| 44 Thumb1FrameLowering.cpp | 45 Thumb1FrameLowering.cpp |
| 45 Thumb1InstrInfo.cpp | 46 Thumb1InstrInfo.cpp |
| (...skipping 12 matching lines...) Expand all Loading... |
| 58 SOURCE ARMISelLowering.cpp | 59 SOURCE ARMISelLowering.cpp |
| 59 PROPERTY COMPILE_FLAGS "/Od" | 60 PROPERTY COMPILE_FLAGS "/Od" |
| 60 ) | 61 ) |
| 61 endif() | 62 endif() |
| 62 | 63 |
| 63 add_subdirectory(TargetInfo) | 64 add_subdirectory(TargetInfo) |
| 64 add_subdirectory(AsmParser) | 65 add_subdirectory(AsmParser) |
| 65 add_subdirectory(Disassembler) | 66 add_subdirectory(Disassembler) |
| 66 add_subdirectory(InstPrinter) | 67 add_subdirectory(InstPrinter) |
| 67 add_subdirectory(MCTargetDesc) | 68 add_subdirectory(MCTargetDesc) |
| OLD | NEW |