mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-05 13:09:10 +00:00
a70f28ce7d
The MicroBlaze is a highly configurable 32-bit soft-microprocessor for use on Xilinx FPGAs. For more information see: http://www.xilinx.com/tools/microblaze.htm http://en.wikipedia.org/wiki/MicroBlaze The current LLVM MicroBlaze backend generates assembly which can be compiled using the an appropriate binutils assembler. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96969 91177308-0d34-0410-b5e6-96231b3b80d8
28 lines
908 B
CMake
28 lines
908 B
CMake
set(LLVM_TARGET_DEFINITIONS MBlaze.td)
|
|
|
|
tablegen(MBlazeGenRegisterInfo.h.inc -gen-register-desc-header)
|
|
tablegen(MBlazeGenRegisterNames.inc -gen-register-enums)
|
|
tablegen(MBlazeGenRegisterInfo.inc -gen-register-desc)
|
|
tablegen(MBlazeGenInstrNames.inc -gen-instr-enums)
|
|
tablegen(MBlazeGenInstrInfo.inc -gen-instr-desc)
|
|
tablegen(MBlazeGenAsmWriter.inc -gen-asm-writer)
|
|
tablegen(MBlazeGenDAGISel.inc -gen-dag-isel)
|
|
tablegen(MBlazeGenCallingConv.inc -gen-callingconv)
|
|
tablegen(MBlazeGenSubtarget.inc -gen-subtarget)
|
|
tablegen(MBlazeGenIntrinsics.inc -gen-tgt-intrinsic)
|
|
|
|
add_llvm_target(MBlazeCodeGen
|
|
MBlazeDelaySlotFiller.cpp
|
|
MBlazeInstrInfo.cpp
|
|
MBlazeISelDAGToDAG.cpp
|
|
MBlazeISelLowering.cpp
|
|
MBlazeMCAsmInfo.cpp
|
|
MBlazeRegisterInfo.cpp
|
|
MBlazeSubtarget.cpp
|
|
MBlazeTargetMachine.cpp
|
|
MBlazeTargetObjectFile.cpp
|
|
MBlazeIntrinsicInfo.cpp
|
|
)
|
|
|
|
target_link_libraries (LLVMMBlazeCodeGen LLVMSelectionDAG)
|