mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-11 23:05:31 +00:00
bdc38e5aa2
Place the LSDA into the TEXT section for ARM platforms. This involves making the encoding indirect, pcrel, and sdata4 instead of an absolute pointer. The references to the type infos are then non-lazy pointers. Revision 98019 changed the encoding of non-lazy pointers to add the symbol to the non-lazy pointer definition if it's a local symbol (otherwise, it's external and set to '0' so that the loader can adjust it to the real value). This paved the way for this change to work on ARM. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98068 91177308-0d34-0410-b5e6-96231b3b80d8
42 lines
1.1 KiB
CMake
42 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
|
|
ARMTargetObjectFile.cpp
|
|
NEONMoveFix.cpp
|
|
NEONPreAllocPass.cpp
|
|
Thumb1InstrInfo.cpp
|
|
Thumb1RegisterInfo.cpp
|
|
Thumb2ITBlockPass.cpp
|
|
Thumb2InstrInfo.cpp
|
|
Thumb2RegisterInfo.cpp
|
|
Thumb2SizeReduction.cpp
|
|
)
|
|
|
|
target_link_libraries (LLVMARMCodeGen LLVMSelectionDAG)
|