mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-17 18:31:04 +00:00
1abf2cb59b
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135219 91177308-0d34-0410-b5e6-96231b3b80d8
27 lines
705 B
CMake
27 lines
705 B
CMake
set(LLVM_TARGET_DEFINITIONS SPU.td)
|
|
|
|
tablegen(SPUGenAsmWriter.inc -gen-asm-writer)
|
|
tablegen(SPUGenCodeEmitter.inc -gen-emitter)
|
|
tablegen(SPUGenRegisterInfo.inc -gen-register-info)
|
|
tablegen(SPUGenInstrInfo.inc -gen-instr-info)
|
|
tablegen(SPUGenDAGISel.inc -gen-dag-isel)
|
|
tablegen(SPUGenSubtargetInfo.inc -gen-subtarget)
|
|
tablegen(SPUGenCallingConv.inc -gen-callingconv)
|
|
|
|
add_llvm_target(CellSPUCodeGen
|
|
SPUAsmPrinter.cpp
|
|
SPUHazardRecognizers.cpp
|
|
SPUInstrInfo.cpp
|
|
SPUISelDAGToDAG.cpp
|
|
SPUISelLowering.cpp
|
|
SPUFrameLowering.cpp
|
|
SPURegisterInfo.cpp
|
|
SPUSubtarget.cpp
|
|
SPUTargetMachine.cpp
|
|
SPUSelectionDAGInfo.cpp
|
|
SPUNopFiller.cpp
|
|
)
|
|
|
|
add_subdirectory(TargetInfo)
|
|
add_subdirectory(MCTargetDesc)
|