mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
9e8f90a020
llvm-svn: 135219
35 lines
921 B
CMake
35 lines
921 B
CMake
set(LLVM_TARGET_DEFINITIONS PPC.td)
|
|
|
|
tablegen(PPCGenAsmWriter.inc -gen-asm-writer)
|
|
tablegen(PPCGenCodeEmitter.inc -gen-emitter)
|
|
tablegen(PPCGenMCCodeEmitter.inc -gen-emitter -mc-emitter)
|
|
tablegen(PPCGenRegisterInfo.inc -gen-register-info)
|
|
tablegen(PPCGenInstrInfo.inc -gen-instr-info)
|
|
tablegen(PPCGenDAGISel.inc -gen-dag-isel)
|
|
tablegen(PPCGenCallingConv.inc -gen-callingconv)
|
|
tablegen(PPCGenSubtargetInfo.inc -gen-subtarget)
|
|
|
|
add_llvm_target(PowerPCCodeGen
|
|
PPCAsmBackend.cpp
|
|
PPCAsmPrinter.cpp
|
|
PPCBranchSelector.cpp
|
|
PPCCodeEmitter.cpp
|
|
PPCHazardRecognizers.cpp
|
|
PPCInstrInfo.cpp
|
|
PPCISelDAGToDAG.cpp
|
|
PPCISelLowering.cpp
|
|
PPCFrameLowering.cpp
|
|
PPCJITInfo.cpp
|
|
PPCMCCodeEmitter.cpp
|
|
PPCMCInstLower.cpp
|
|
PPCPredicates.cpp
|
|
PPCRegisterInfo.cpp
|
|
PPCSubtarget.cpp
|
|
PPCTargetMachine.cpp
|
|
PPCSelectionDAGInfo.cpp
|
|
)
|
|
|
|
add_subdirectory(InstPrinter)
|
|
add_subdirectory(TargetInfo)
|
|
add_subdirectory(MCTargetDesc)
|