mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
59c8ae34f7
of testing for its presence at cmake time. This way the build automatically regenerates the makefiles when a svn update brings in a new sublibrary. llvm-svn: 126068
41 lines
1.3 KiB
CMake
41 lines
1.3 KiB
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(MBlazeGenCodeEmitter.inc -gen-emitter)
|
|
tablegen(MBlazeGenAsmWriter.inc -gen-asm-writer)
|
|
tablegen(MBlazeGenAsmMatcher.inc -gen-asm-matcher)
|
|
tablegen(MBlazeGenDAGISel.inc -gen-dag-isel)
|
|
tablegen(MBlazeGenCallingConv.inc -gen-callingconv)
|
|
tablegen(MBlazeGenSubtarget.inc -gen-subtarget)
|
|
tablegen(MBlazeGenIntrinsics.inc -gen-tgt-intrinsic)
|
|
tablegen(MBlazeGenEDInfo.inc -gen-enhanced-disassembly-info)
|
|
|
|
add_llvm_target(MBlazeCodeGen
|
|
MBlazeDelaySlotFiller.cpp
|
|
MBlazeInstrInfo.cpp
|
|
MBlazeISelDAGToDAG.cpp
|
|
MBlazeISelLowering.cpp
|
|
MBlazeFrameLowering.cpp
|
|
MBlazeMCAsmInfo.cpp
|
|
MBlazeRegisterInfo.cpp
|
|
MBlazeSubtarget.cpp
|
|
MBlazeTargetMachine.cpp
|
|
MBlazeTargetObjectFile.cpp
|
|
MBlazeIntrinsicInfo.cpp
|
|
MBlazeSelectionDAGInfo.cpp
|
|
MBlazeAsmPrinter.cpp
|
|
MBlazeAsmBackend.cpp
|
|
MBlazeMCInstLower.cpp
|
|
MBlazeELFWriterInfo.cpp
|
|
MBlazeMCCodeEmitter.cpp
|
|
)
|
|
|
|
add_subdirectory(AsmParser)
|
|
add_subdirectory(Disassembler)
|
|
add_subdirectory(InstPrinter)
|
|
add_subdirectory(TargetInfo)
|