Oscar Fuentes | cdc9549 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 1 | set(LLVM_TARGET_DEFINITIONS PPC.td) |
| 2 | |
Daniel Dunbar | 4a9c642 | 2011-11-04 19:04:23 +0000 | [diff] [blame] | 3 | tablegen(LLVM PPCGenAsmWriter.inc -gen-asm-writer) |
| 4 | tablegen(LLVM PPCGenCodeEmitter.inc -gen-emitter) |
| 5 | tablegen(LLVM PPCGenMCCodeEmitter.inc -gen-emitter -mc-emitter) |
| 6 | tablegen(LLVM PPCGenRegisterInfo.inc -gen-register-info) |
| 7 | tablegen(LLVM PPCGenInstrInfo.inc -gen-instr-info) |
| 8 | tablegen(LLVM PPCGenDAGISel.inc -gen-dag-isel) |
| 9 | tablegen(LLVM PPCGenCallingConv.inc -gen-callingconv) |
| 10 | tablegen(LLVM PPCGenSubtargetInfo.inc -gen-subtarget) |
Chandler Carruth | 97c069c | 2011-07-26 00:09:08 +0000 | [diff] [blame] | 11 | add_public_tablegen_target(PowerPCCommonTableGen) |
Oscar Fuentes | cdc9549 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 12 | |
| 13 | add_llvm_target(PowerPCCodeGen |
Chris Lattner | 56477d1 | 2010-11-14 18:33:33 +0000 | [diff] [blame] | 14 | PPCAsmPrinter.cpp |
Oscar Fuentes | cdc9549 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 15 | PPCBranchSelector.cpp |
| 16 | PPCCodeEmitter.cpp |
Hal Finkel | 96c2d4d | 2012-06-08 15:38:21 +0000 | [diff] [blame] | 17 | PPCCTRLoops.cpp |
Oscar Fuentes | cdc9549 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 18 | PPCHazardRecognizers.cpp |
| 19 | PPCInstrInfo.cpp |
| 20 | PPCISelDAGToDAG.cpp |
| 21 | PPCISelLowering.cpp |
Anton Korobeynikov | 441ae5b | 2011-01-10 12:39:23 +0000 | [diff] [blame] | 22 | PPCFrameLowering.cpp |
Oscar Fuentes | cdc9549 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 23 | PPCJITInfo.cpp |
Chris Lattner | 686a095 | 2010-11-14 19:53:02 +0000 | [diff] [blame] | 24 | PPCMCInstLower.cpp |
Chandler Carruth | e805b16 | 2011-12-20 08:42:11 +0000 | [diff] [blame] | 25 | PPCMachineFunctionInfo.cpp |
Oscar Fuentes | cdc9549 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 26 | PPCRegisterInfo.cpp |
| 27 | PPCSubtarget.cpp |
Oscar Fuentes | cdc9549 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 28 | PPCTargetMachine.cpp |
Dan Gohman | 9becddd | 2010-04-16 23:04:22 +0000 | [diff] [blame] | 29 | PPCSelectionDAGInfo.cpp |
Oscar Fuentes | cdc9549 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 30 | ) |
Oscar Fuentes | ba1186c | 2011-02-20 02:55:27 +0000 | [diff] [blame] | 31 | |
NAKAMURA Takumi | 704de07 | 2012-06-24 13:32:01 +0000 | [diff] [blame] | 32 | add_dependencies(LLVMPowerPCCodeGen intrinsics_gen) |
| 33 | |
Oscar Fuentes | ba1186c | 2011-02-20 02:55:27 +0000 | [diff] [blame] | 34 | add_subdirectory(InstPrinter) |
| 35 | add_subdirectory(TargetInfo) |
Evan Cheng | bc153d4 | 2011-07-14 20:59:42 +0000 | [diff] [blame] | 36 | add_subdirectory(MCTargetDesc) |