mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-02 07:32:52 +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
27 lines
802 B
CMake
27 lines
802 B
CMake
set(LLVM_TARGET_DEFINITIONS Blackfin.td)
|
|
|
|
tablegen(BlackfinGenRegisterInfo.inc -gen-register-info)
|
|
tablegen(BlackfinGenInstrInfo.inc -gen-instr-info)
|
|
tablegen(BlackfinGenAsmWriter.inc -gen-asm-writer)
|
|
tablegen(BlackfinGenDAGISel.inc -gen-dag-isel)
|
|
tablegen(BlackfinGenSubtargetInfo.inc -gen-subtarget)
|
|
tablegen(BlackfinGenCallingConv.inc -gen-callingconv)
|
|
tablegen(BlackfinGenIntrinsics.inc -gen-tgt-intrinsic)
|
|
|
|
add_llvm_target(BlackfinCodeGen
|
|
BlackfinAsmPrinter.cpp
|
|
BlackfinInstrInfo.cpp
|
|
BlackfinIntrinsicInfo.cpp
|
|
BlackfinISelDAGToDAG.cpp
|
|
BlackfinISelLowering.cpp
|
|
BlackfinFrameLowering.cpp
|
|
BlackfinMCAsmInfo.cpp
|
|
BlackfinRegisterInfo.cpp
|
|
BlackfinSubtarget.cpp
|
|
BlackfinTargetMachine.cpp
|
|
BlackfinSelectionDAGInfo.cpp
|
|
)
|
|
|
|
add_subdirectory(TargetInfo)
|
|
add_subdirectory(MCTargetDesc)
|