Oscar Fuentes | cdc9549 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 1 | set(LLVM_TARGET_DEFINITIONS PPC.td) |
| 2 | |
| 3 | tablegen(PPCGenInstrNames.inc -gen-instr-enums) |
| 4 | tablegen(PPCGenRegisterNames.inc -gen-register-enums) |
| 5 | tablegen(PPCGenAsmWriter.inc -gen-asm-writer) |
| 6 | tablegen(PPCGenCodeEmitter.inc -gen-emitter) |
| 7 | tablegen(PPCGenRegisterInfo.h.inc -gen-register-desc-header) |
| 8 | tablegen(PPCGenRegisterInfo.inc -gen-register-desc) |
| 9 | tablegen(PPCGenInstrInfo.inc -gen-instr-desc) |
| 10 | tablegen(PPCGenDAGISel.inc -gen-dag-isel) |
| 11 | tablegen(PPCGenCallingConv.inc -gen-callingconv) |
| 12 | tablegen(PPCGenSubtarget.inc -gen-subtarget) |
| 13 | |
| 14 | add_llvm_target(PowerPCCodeGen |
| 15 | PPCBranchSelector.cpp |
| 16 | PPCCodeEmitter.cpp |
| 17 | PPCHazardRecognizers.cpp |
| 18 | PPCInstrInfo.cpp |
| 19 | PPCISelDAGToDAG.cpp |
| 20 | PPCISelLowering.cpp |
| 21 | PPCJITInfo.cpp |
| 22 | PPCMachOWriterInfo.cpp |
Benjamin Kramer | 3c62f50 | 2009-08-31 13:05:24 +0000 | [diff] [blame^] | 23 | PPCMCAsmInfo.cpp |
Oscar Fuentes | cdc9549 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 24 | PPCPredicates.cpp |
| 25 | PPCRegisterInfo.cpp |
| 26 | PPCSubtarget.cpp |
Oscar Fuentes | cdc9549 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 27 | PPCTargetMachine.cpp |
| 28 | ) |
Douglas Gregor | 6141511 | 2009-07-02 18:53:52 +0000 | [diff] [blame] | 29 | |
| 30 | target_link_libraries (LLVMPowerPCCodeGen LLVMSelectionDAG) |