mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-02 00:42:52 +01:00
f8905e9718
llvm-svn: 86325
41 lines
1.1 KiB
CMake
41 lines
1.1 KiB
CMake
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(ARMGenDAGISel.inc -gen-dag-isel)
|
|
tablegen(ARMGenCallingConv.inc -gen-callingconv)
|
|
tablegen(ARMGenSubtarget.inc -gen-subtarget)
|
|
|
|
add_llvm_target(ARMCodeGen
|
|
ARMBaseInstrInfo.cpp
|
|
ARMBaseRegisterInfo.cpp
|
|
ARMCodeEmitter.cpp
|
|
ARMConstantIslandPass.cpp
|
|
ARMConstantPoolValue.cpp
|
|
ARMExpandPseudoInsts.cpp
|
|
ARMISelDAGToDAG.cpp
|
|
ARMISelLowering.cpp
|
|
ARMInstrInfo.cpp
|
|
ARMJITInfo.cpp
|
|
ARMLoadStoreOptimizer.cpp
|
|
ARMMCAsmInfo.cpp
|
|
ARMRegisterInfo.cpp
|
|
ARMSubtarget.cpp
|
|
ARMTargetMachine.cpp
|
|
NEONMoveFix.cpp
|
|
NEONPreAllocPass.cpp
|
|
Thumb1InstrInfo.cpp
|
|
Thumb1RegisterInfo.cpp
|
|
Thumb2ITBlockPass.cpp
|
|
Thumb2InstrInfo.cpp
|
|
Thumb2RegisterInfo.cpp
|
|
Thumb2SizeReduction.cpp
|
|
)
|
|
|
|
target_link_libraries (LLVMARMCodeGen LLVMSelectionDAG)
|