mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 06:09:05 +00:00
d5c407d2d0
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159112 91177308-0d34-0410-b5e6-96231b3b80d8
40 lines
1.2 KiB
CMake
40 lines
1.2 KiB
CMake
set(LLVM_TARGET_DEFINITIONS MBlaze.td)
|
|
|
|
tablegen(LLVM MBlazeGenRegisterInfo.inc -gen-register-info)
|
|
tablegen(LLVM MBlazeGenInstrInfo.inc -gen-instr-info)
|
|
tablegen(LLVM MBlazeGenCodeEmitter.inc -gen-emitter)
|
|
tablegen(LLVM MBlazeGenAsmWriter.inc -gen-asm-writer)
|
|
tablegen(LLVM MBlazeGenAsmMatcher.inc -gen-asm-matcher)
|
|
tablegen(LLVM MBlazeGenDAGISel.inc -gen-dag-isel)
|
|
tablegen(LLVM MBlazeGenCallingConv.inc -gen-callingconv)
|
|
tablegen(LLVM MBlazeGenSubtargetInfo.inc -gen-subtarget)
|
|
tablegen(LLVM MBlazeGenIntrinsics.inc -gen-tgt-intrinsic)
|
|
tablegen(LLVM MBlazeGenEDInfo.inc -gen-enhanced-disassembly-info)
|
|
add_public_tablegen_target(MBlazeCommonTableGen)
|
|
|
|
add_llvm_target(MBlazeCodeGen
|
|
MBlazeDelaySlotFiller.cpp
|
|
MBlazeInstrInfo.cpp
|
|
MBlazeISelDAGToDAG.cpp
|
|
MBlazeISelLowering.cpp
|
|
MBlazeFrameLowering.cpp
|
|
MBlazeMachineFunction.cpp
|
|
MBlazeRegisterInfo.cpp
|
|
MBlazeSubtarget.cpp
|
|
MBlazeTargetMachine.cpp
|
|
MBlazeTargetObjectFile.cpp
|
|
MBlazeIntrinsicInfo.cpp
|
|
MBlazeSelectionDAGInfo.cpp
|
|
MBlazeAsmPrinter.cpp
|
|
MBlazeMCInstLower.cpp
|
|
MBlazeELFWriterInfo.cpp
|
|
)
|
|
|
|
add_dependencies(LLVMMBlazeCodeGen intrinsics_gen)
|
|
|
|
add_subdirectory(AsmParser)
|
|
add_subdirectory(Disassembler)
|
|
add_subdirectory(InstPrinter)
|
|
add_subdirectory(TargetInfo)
|
|
add_subdirectory(MCTargetDesc)
|