mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-30 02:32:08 +00:00
27 lines
772 B
CMake
27 lines
772 B
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(ARMGenSubtarget.inc -gen-subtarget)
|
||
|
|
||
|
add_llvm_target(ARM
|
||
|
ARMCodeEmitter.cpp
|
||
|
ARMConstantIslandPass.cpp
|
||
|
ARMConstantPoolValue.cpp
|
||
|
ARMInstrInfo.cpp
|
||
|
ARMISelDAGToDAG.cpp
|
||
|
ARMISelLowering.cpp
|
||
|
ARMJITInfo.cpp
|
||
|
ARMLoadStoreOptimizer.cpp
|
||
|
ARMRegisterInfo.cpp
|
||
|
ARMSubtarget.cpp
|
||
|
ARMTargetAsmInfo.cpp
|
||
|
ARMTargetMachine.cpp
|
||
|
)
|