mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-06 04:31:08 +00:00
34 lines
1.0 KiB
CMake
34 lines
1.0 KiB
CMake
|
set(LLVM_TARGET_DEFINITIONS Hexagon.td)
|
||
|
|
||
|
tablegen(LLVM HexagonGenRegisterInfo.inc -gen-register-info)
|
||
|
tablegen(LLVM HexagonGenInstrInfo.inc -gen-instr-info)
|
||
|
tablegen(LLVM HexagonGenAsmWriter.inc -gen-asm-writer)
|
||
|
tablegen(LLVM HexagonGenDAGISel.inc -gen-dag-isel)
|
||
|
tablegen(LLVM HexagonGenCallingConv.inc -gen-callingconv)
|
||
|
tablegen(LLVM HexagonGenSubtargetInfo.inc -gen-subtarget)
|
||
|
tablegen(LLVM HexagonGenIntrinsics.inc -gen-tgt-intrinsic)
|
||
|
add_public_tablegen_target(HexagonCommonTableGen)
|
||
|
|
||
|
add_llvm_target(HexagonCodeGen
|
||
|
HexagonAsmPrinter.cpp
|
||
|
HexagonCallingConvLower.cpp
|
||
|
HexagonCFGOptimizer.cpp
|
||
|
HexagonExpandPredSpillCode.cpp
|
||
|
HexagonFrameLowering.cpp
|
||
|
HexagonHardwareLoops.cpp
|
||
|
HexagonInstrInfo.cpp
|
||
|
HexagonISelDAGToDAG.cpp
|
||
|
HexagonISelLowering.cpp
|
||
|
HexagonMCAsmInfo.cpp
|
||
|
HexagonOptimizeSZExtends.cpp
|
||
|
HexagonRegisterInfo.cpp
|
||
|
HexagonRemoveSZExtArgs.cpp
|
||
|
HexagonSelectionDAGInfo.cpp
|
||
|
HexagonSplitTFRCondSets.cpp
|
||
|
HexagonSubtarget.cpp
|
||
|
HexagonTargetMachine.cpp
|
||
|
HexagonTargetObjectFile.cpp
|
||
|
)
|
||
|
|
||
|
add_subdirectory(TargetInfo)
|