llvm-project/llvm/lib/Target/ARM/CMakeLists.txt

51 lines
1.4 KiB
CMake
Raw Normal View History

set(LLVM_TARGET_DEFINITIONS ARM.td)
tablegen(ARMGenRegisterInfo.h.inc -gen-register-desc-header)
tablegen(ARMGenRegisterNames.inc -gen-register-enums)
tablegen(ARMGenRegisterInfo.inc -gen-register-desc)
tablegen(ARMGenInstrNames.inc -gen-instr-enums)
tablegen(ARMGenInstrInfo.inc -gen-instr-desc)
tablegen(ARMGenCodeEmitter.inc -gen-emitter)
tablegen(ARMGenAsmWriter.inc -gen-asm-writer)
tablegen(ARMGenAsmMatcher.inc -gen-asm-matcher)
tablegen(ARMGenDAGISel.inc -gen-dag-isel)
tablegen(ARMGenFastISel.inc -gen-fast-isel)
tablegen(ARMGenCallingConv.inc -gen-callingconv)
tablegen(ARMGenSubtarget.inc -gen-subtarget)
tablegen(ARMGenEDInfo.inc -gen-enhanced-disassembly-info)
add_llvm_target(ARMCodeGen
2010-07-20 08:08:13 +08:00
ARMAsmPrinter.cpp
ARMBaseInstrInfo.cpp
ARMBaseRegisterInfo.cpp
ARMCodeEmitter.cpp
ARMConstantIslandPass.cpp
ARMConstantPoolValue.cpp
2009-11-07 11:26:59 +08:00
ARMExpandPseudoInsts.cpp
2010-07-22 14:00:01 +08:00
ARMFastISel.cpp
2010-07-26 01:10:14 +08:00
ARMGlobalMerge.cpp
ARMISelDAGToDAG.cpp
ARMISelLowering.cpp
2009-11-03 12:14:12 +08:00
ARMInstrInfo.cpp
ARMJITInfo.cpp
ARMMCCodeEmitter.cpp
ARMLoadStoreOptimizer.cpp
ARMMCAsmInfo.cpp
2010-07-20 08:08:13 +08:00
ARMMCInstLower.cpp
ARMRegisterInfo.cpp
2010-07-20 08:08:13 +08:00
ARMSelectionDAGInfo.cpp
ARMSubtarget.cpp
ARMTargetMachine.cpp
ARMTargetObjectFile.cpp
2009-11-03 12:14:12 +08:00
NEONMoveFix.cpp
Thumb1InstrInfo.cpp
Thumb1RegisterInfo.cpp
2010-06-19 07:12:10 +08:00
Thumb2HazardRecognizer.cpp
Thumb2ITBlockPass.cpp
Thumb2InstrInfo.cpp
Thumb2RegisterInfo.cpp
2009-08-09 01:03:13 +08:00
Thumb2SizeReduction.cpp
)
target_link_libraries (LLVMARMCodeGen LLVMARMAsmPrinter LLVMSelectionDAG)