freebsd-dev/lib/Target/Alpha/CMakeLists.txt

30 lines
912 B
CMake
Raw Normal View History

2009-06-02 17:52:33 +00:00
set(LLVM_TARGET_DEFINITIONS Alpha.td)
tablegen(AlphaGenRegisterInfo.h.inc -gen-register-desc-header)
tablegen(AlphaGenRegisterNames.inc -gen-register-enums)
tablegen(AlphaGenRegisterInfo.inc -gen-register-desc)
tablegen(AlphaGenInstrNames.inc -gen-instr-enums)
tablegen(AlphaGenInstrInfo.inc -gen-instr-desc)
tablegen(AlphaGenCodeEmitter.inc -gen-emitter)
tablegen(AlphaGenAsmWriter.inc -gen-asm-writer)
tablegen(AlphaGenDAGISel.inc -gen-dag-isel)
2009-10-14 17:57:32 +00:00
tablegen(AlphaGenCallingConv.inc -gen-callingconv)
2009-06-02 17:52:33 +00:00
tablegen(AlphaGenSubtarget.inc -gen-subtarget)
add_llvm_target(AlphaCodeGen
AlphaBranchSelector.cpp
AlphaCodeEmitter.cpp
AlphaInstrInfo.cpp
AlphaISelDAGToDAG.cpp
AlphaISelLowering.cpp
AlphaJITInfo.cpp
AlphaLLRP.cpp
2009-10-14 17:57:32 +00:00
AlphaMCAsmInfo.cpp
2009-06-02 17:52:33 +00:00
AlphaRegisterInfo.cpp
AlphaSubtarget.cpp
AlphaTargetMachine.cpp
2010-05-04 16:11:02 +00:00
AlphaSelectionDAGInfo.cpp
2009-06-02 17:52:33 +00:00
)
2009-07-04 13:58:26 +00:00
target_link_libraries (LLVMAlphaCodeGen LLVMSelectionDAG)