2008-09-26 12:40:32 +08:00
|
|
|
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)
|
2010-08-11 13:09:20 +08:00
|
|
|
tablegen(ARMGenAsmMatcher.inc -gen-asm-matcher)
|
2008-09-26 12:40:32 +08:00
|
|
|
tablegen(ARMGenDAGISel.inc -gen-dag-isel)
|
2010-08-11 13:09:20 +08:00
|
|
|
tablegen(ARMGenFastISel.inc -gen-fast-isel)
|
2009-04-18 03:07:39 +08:00
|
|
|
tablegen(ARMGenCallingConv.inc -gen-callingconv)
|
2008-09-26 12:40:32 +08:00
|
|
|
tablegen(ARMGenSubtarget.inc -gen-subtarget)
|
2010-04-14 06:47:43 +08:00
|
|
|
tablegen(ARMGenEDInfo.inc -gen-enhanced-disassembly-info)
|
2008-09-26 12:40:32 +08:00
|
|
|
|
2008-10-22 10:51:53 +08:00
|
|
|
add_llvm_target(ARMCodeGen
|
2010-07-20 08:08:13 +08:00
|
|
|
ARMAsmPrinter.cpp
|
2009-07-09 00:09:28 +08:00
|
|
|
ARMBaseInstrInfo.cpp
|
2009-07-09 04:13:41 +08:00
|
|
|
ARMBaseRegisterInfo.cpp
|
2008-09-26 12:40:32 +08:00
|
|
|
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
|
2008-09-26 12:40:32 +08:00
|
|
|
ARMISelDAGToDAG.cpp
|
|
|
|
ARMISelLowering.cpp
|
2009-11-03 12:14:12 +08:00
|
|
|
ARMInstrInfo.cpp
|
2008-09-26 12:40:32 +08:00
|
|
|
ARMJITInfo.cpp
|
|
|
|
ARMLoadStoreOptimizer.cpp
|
2009-08-31 21:05:24 +08:00
|
|
|
ARMMCAsmInfo.cpp
|
2010-07-20 08:08:13 +08:00
|
|
|
ARMMCInstLower.cpp
|
2008-09-26 12:40:32 +08:00
|
|
|
ARMRegisterInfo.cpp
|
2010-07-20 08:08:13 +08:00
|
|
|
ARMSelectionDAGInfo.cpp
|
2008-09-26 12:40:32 +08:00
|
|
|
ARMSubtarget.cpp
|
|
|
|
ARMTargetMachine.cpp
|
2010-03-10 02:31:07 +08:00
|
|
|
ARMTargetObjectFile.cpp
|
2009-11-03 12:14:12 +08:00
|
|
|
NEONMoveFix.cpp
|
2009-07-03 06:18:33 +08:00
|
|
|
Thumb1InstrInfo.cpp
|
|
|
|
Thumb1RegisterInfo.cpp
|
2010-06-19 07:12:10 +08:00
|
|
|
Thumb2HazardRecognizer.cpp
|
2009-07-10 16:31:50 +08:00
|
|
|
Thumb2ITBlockPass.cpp
|
2009-07-03 06:18:33 +08:00
|
|
|
Thumb2InstrInfo.cpp
|
|
|
|
Thumb2RegisterInfo.cpp
|
2009-08-09 01:03:13 +08:00
|
|
|
Thumb2SizeReduction.cpp
|
2008-09-26 12:40:32 +08:00
|
|
|
)
|
2009-07-03 02:53:52 +08:00
|
|
|
|
2010-09-11 05:14:25 +08:00
|
|
|
target_link_libraries (LLVMARMCodeGen
|
|
|
|
LLVMARMInfo
|
|
|
|
LLVMAnalysis
|
|
|
|
LLVMAsmPrinter
|
|
|
|
LLVMCodeGen
|
|
|
|
LLVMCore
|
|
|
|
LLVMMC
|
|
|
|
LLVMSelectionDAG
|
|
|
|
LLVMTarget
|
|
|
|
)
|