mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-11 10:31:40 +00:00
34 lines
858 B
CMake
34 lines
858 B
CMake
|
set(LLVM_TARGET_DEFINITIONS NVPTX.td)
|
||
|
|
||
|
|
||
|
tablegen(LLVM NVPTXGenRegisterInfo.inc -gen-register-info)
|
||
|
tablegen(LLVM NVPTXGenInstrInfo.inc -gen-instr-info)
|
||
|
tablegen(LLVM NVPTXGenAsmWriter.inc -gen-asm-writer)
|
||
|
tablegen(LLVM NVPTXGenDAGISel.inc -gen-dag-isel)
|
||
|
tablegen(LLVM NVPTXGenSubtargetInfo.inc -gen-subtarget)
|
||
|
add_public_tablegen_target(NVPTXCommonTableGen)
|
||
|
|
||
|
set(NVPTXCodeGen_sources
|
||
|
NVPTXFrameLowering.cpp
|
||
|
NVPTXInstrInfo.cpp
|
||
|
NVPTXISelDAGToDAG.cpp
|
||
|
NVPTXISelLowering.cpp
|
||
|
NVPTXRegisterInfo.cpp
|
||
|
NVPTXSubtarget.cpp
|
||
|
NVPTXTargetMachine.cpp
|
||
|
NVPTXSplitBBatBar.cpp
|
||
|
NVPTXLowerAggrCopies.cpp
|
||
|
NVPTXutil.cpp
|
||
|
NVPTXAllocaHoisting.cpp
|
||
|
NVPTXAsmPrinter.cpp
|
||
|
NVPTXUtilities.cpp
|
||
|
VectorElementize.cpp
|
||
|
)
|
||
|
|
||
|
add_llvm_target(NVPTXCodeGen ${NVPTXCodeGen_sources})
|
||
|
|
||
|
|
||
|
add_subdirectory(TargetInfo)
|
||
|
add_subdirectory(InstPrinter)
|
||
|
add_subdirectory(MCTargetDesc)
|