mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-19 17:33:29 +00:00
45e11c7cc7
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135698 91177308-0d34-0410-b5e6-96231b3b80d8
33 lines
845 B
CMake
33 lines
845 B
CMake
set(LLVM_TARGET_DEFINITIONS Mips.td)
|
|
|
|
tablegen(MipsGenRegisterInfo.inc -gen-register-info)
|
|
tablegen(MipsGenInstrInfo.inc -gen-instr-info)
|
|
tablegen(MipsGenAsmWriter.inc -gen-asm-writer)
|
|
tablegen(MipsGenDAGISel.inc -gen-dag-isel)
|
|
tablegen(MipsGenCallingConv.inc -gen-callingconv)
|
|
tablegen(MipsGenSubtargetInfo.inc -gen-subtarget)
|
|
|
|
add_llvm_target(MipsCodeGen
|
|
MipsAsmPrinter.cpp
|
|
MipsCodeEmitter.cpp
|
|
MipsDelaySlotFiller.cpp
|
|
MipsEmitGPRestore.cpp
|
|
MipsExpandPseudo.cpp
|
|
MipsJITInfo.cpp
|
|
MipsInstrInfo.cpp
|
|
MipsISelDAGToDAG.cpp
|
|
MipsISelLowering.cpp
|
|
MipsFrameLowering.cpp
|
|
MipsMCInstLower.cpp
|
|
MipsMCSymbolRefExpr.cpp
|
|
MipsRegisterInfo.cpp
|
|
MipsSubtarget.cpp
|
|
MipsTargetMachine.cpp
|
|
MipsTargetObjectFile.cpp
|
|
MipsSelectionDAGInfo.cpp
|
|
)
|
|
|
|
add_subdirectory(InstPrinter)
|
|
add_subdirectory(TargetInfo)
|
|
add_subdirectory(MCTargetDesc)
|