mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-21 00:32:23 +00:00
c60f9b7523
registeration and creation code into XXXMCDesc libraries. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135184 91177308-0d34-0410-b5e6-96231b3b80d8
26 lines
649 B
CMake
26 lines
649 B
CMake
set(LLVM_TARGET_DEFINITIONS PTX.td)
|
|
|
|
tablegen(PTXGenAsmWriter.inc -gen-asm-writer)
|
|
tablegen(PTXGenCallingConv.inc -gen-callingconv)
|
|
tablegen(PTXGenDAGISel.inc -gen-dag-isel)
|
|
tablegen(PTXGenInstrInfo.inc -gen-instr-info)
|
|
tablegen(PTXGenRegisterInfo.inc -gen-register-info)
|
|
tablegen(PTXGenSubtargetInfo.inc -gen-subtarget)
|
|
|
|
add_llvm_target(PTXCodeGen
|
|
PTXAsmPrinter.cpp
|
|
PTXISelDAGToDAG.cpp
|
|
PTXISelLowering.cpp
|
|
PTXInstrInfo.cpp
|
|
PTXFrameLowering.cpp
|
|
PTXMCAsmInfo.cpp
|
|
PTXMCAsmStreamer.cpp
|
|
PTXMFInfoExtract.cpp
|
|
PTXRegisterInfo.cpp
|
|
PTXSubtarget.cpp
|
|
PTXTargetMachine.cpp
|
|
)
|
|
|
|
add_subdirectory(TargetInfo)
|
|
add_subdirectory(MCTargetDesc)
|