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 ARMGenMCCodeEmitter.inc -gen-emitter) | 5 tablegen(LLVM ARMGenMCCodeEmitter.inc -gen-emitter) |
6 tablegen(LLVM ARMGenMCPseudoLowering.inc -gen-pseudo-lowering) | 6 tablegen(LLVM ARMGenMCPseudoLowering.inc -gen-pseudo-lowering) |
7 tablegen(LLVM ARMGenAsmWriter.inc -gen-asm-writer) | 7 tablegen(LLVM ARMGenAsmWriter.inc -gen-asm-writer) |
8 tablegen(LLVM ARMGenAsmMatcher.inc -gen-asm-matcher) | 8 tablegen(LLVM ARMGenAsmMatcher.inc -gen-asm-matcher) |
9 tablegen(LLVM ARMGenDAGISel.inc -gen-dag-isel) | 9 tablegen(LLVM ARMGenDAGISel.inc -gen-dag-isel) |
10 tablegen(LLVM ARMGenFastISel.inc -gen-fast-isel) | 10 tablegen(LLVM ARMGenFastISel.inc -gen-fast-isel) |
(...skipping 12 matching lines...) Expand all Loading... |
23 ARMExpandPseudoInsts.cpp | 23 ARMExpandPseudoInsts.cpp |
24 ARMFastISel.cpp | 24 ARMFastISel.cpp |
25 ARMFrameLowering.cpp | 25 ARMFrameLowering.cpp |
26 ARMHazardRecognizer.cpp | 26 ARMHazardRecognizer.cpp |
27 ARMISelDAGToDAG.cpp | 27 ARMISelDAGToDAG.cpp |
28 ARMISelLowering.cpp | 28 ARMISelLowering.cpp |
29 ARMInstrInfo.cpp | 29 ARMInstrInfo.cpp |
30 ARMLoadStoreOptimizer.cpp | 30 ARMLoadStoreOptimizer.cpp |
31 ARMMCInstLower.cpp | 31 ARMMCInstLower.cpp |
32 ARMMachineFunctionInfo.cpp | 32 ARMMachineFunctionInfo.cpp |
| 33 ARMNaClHeaders.cpp |
| 34 ARMNaClRewritePass.cpp |
33 ARMRegisterInfo.cpp | 35 ARMRegisterInfo.cpp |
34 ARMOptimizeBarriersPass.cpp | 36 ARMOptimizeBarriersPass.cpp |
35 ARMSelectionDAGInfo.cpp | 37 ARMSelectionDAGInfo.cpp |
36 ARMSubtarget.cpp | 38 ARMSubtarget.cpp |
37 ARMTargetMachine.cpp | 39 ARMTargetMachine.cpp |
38 ARMTargetObjectFile.cpp | 40 ARMTargetObjectFile.cpp |
39 ARMTargetTransformInfo.cpp | 41 ARMTargetTransformInfo.cpp |
40 MLxExpansionPass.cpp | 42 MLxExpansionPass.cpp |
41 Thumb1FrameLowering.cpp | 43 Thumb1FrameLowering.cpp |
42 Thumb1InstrInfo.cpp | 44 Thumb1InstrInfo.cpp |
43 Thumb1RegisterInfo.cpp | 45 Thumb1RegisterInfo.cpp |
44 Thumb2ITBlockPass.cpp | 46 Thumb2ITBlockPass.cpp |
45 Thumb2InstrInfo.cpp | 47 Thumb2InstrInfo.cpp |
46 Thumb2RegisterInfo.cpp | 48 Thumb2RegisterInfo.cpp |
47 Thumb2SizeReduction.cpp | 49 Thumb2SizeReduction.cpp |
48 ) | 50 ) |
49 | 51 |
50 add_subdirectory(TargetInfo) | 52 add_subdirectory(TargetInfo) |
51 add_subdirectory(AsmParser) | 53 add_subdirectory(AsmParser) |
52 add_subdirectory(Disassembler) | 54 add_subdirectory(Disassembler) |
53 add_subdirectory(InstPrinter) | 55 add_subdirectory(InstPrinter) |
54 add_subdirectory(MCTargetDesc) | 56 add_subdirectory(MCTargetDesc) |
OLD | NEW |