1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00
llvm-mirror/lib/Target/ARM/CMakeLists.txt

56 lines
1.7 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)
tablegen(ARMGenDecoderTables.inc -gen-arm-decoder)
add_llvm_target(ARMCodeGen
2010-07-20 02:08:13 +02:00
ARMAsmPrinter.cpp
ARMBaseInstrInfo.cpp
ARMBaseRegisterInfo.cpp
ARMCodeEmitter.cpp
ARMConstantIslandPass.cpp
ARMConstantPoolValue.cpp
ARMELFWriterInfo.cpp
2009-11-07 04:26:59 +01:00
ARMExpandPseudoInsts.cpp
2010-07-22 08:00:01 +02:00
ARMFastISel.cpp
2010-07-25 19:10:14 +02:00
ARMGlobalMerge.cpp
ARMISelDAGToDAG.cpp
ARMISelLowering.cpp
2009-11-03 05:14:12 +01:00
ARMInstrInfo.cpp
ARMJITInfo.cpp
ARMMCCodeEmitter.cpp
ARMLoadStoreOptimizer.cpp
ARMMCAsmInfo.cpp
2010-07-20 02:08:13 +02:00
ARMMCInstLower.cpp
ARMRegisterInfo.cpp
2010-07-20 02:08:13 +02:00
ARMSelectionDAGInfo.cpp
ARMSubtarget.cpp
ARMTargetMachine.cpp
ARMTargetObjectFile.cpp
2009-11-03 05:14:12 +01:00
NEONMoveFix.cpp
Thumb1InstrInfo.cpp
Thumb1RegisterInfo.cpp
2010-06-19 01:12:10 +02:00
Thumb2HazardRecognizer.cpp
Thumb2ITBlockPass.cpp
Thumb2InstrInfo.cpp
Thumb2RegisterInfo.cpp
2009-08-08 19:03:13 +02:00
Thumb2SizeReduction.cpp
)
# The ARM CodeGen library depends on the AsmPrinter for just an
# vtable, but GenLibDeps.pl is unable to detect it. So without this
# the build fails with "undefined reference to `vtable for ..."
target_link_libraries(LLVMARMCodeGen LLVMARMAsmPrinter)