mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-20 11:23:29 +00:00
261c94d576
Summary: * Similiar to the ARM backend yse the peephole optimizer to generate more conditional ALU operations; * Add predicated type with default always true to RR instructions in LanaiInstrInfo.td; * Move LanaiSetflagAluCombiner into optimizeCompare; * The ASM parser can currently only handle explicitly specified CC, so specify ".t" (true) where needed in the ASM test; * Remove unused MachineOperand flags; Reviewers: eliben Subscribers: aemerson Differential Revision: http://reviews.llvm.org/D22072 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@274807 91177308-0d34-0410-b5e6-96231b3b80d8
36 lines
1.1 KiB
CMake
36 lines
1.1 KiB
CMake
set(LLVM_TARGET_DEFINITIONS Lanai.td)
|
|
|
|
tablegen(LLVM LanaiGenAsmMatcher.inc -gen-asm-matcher)
|
|
tablegen(LLVM LanaiGenAsmWriter.inc -gen-asm-writer)
|
|
tablegen(LLVM LanaiGenCallingConv.inc -gen-callingconv)
|
|
tablegen(LLVM LanaiGenDAGISel.inc -gen-dag-isel)
|
|
tablegen(LLVM LanaiGenDisassemblerTables.inc -gen-disassembler)
|
|
tablegen(LLVM LanaiGenInstrInfo.inc -gen-instr-info)
|
|
tablegen(LLVM LanaiGenMCCodeEmitter.inc -gen-emitter)
|
|
tablegen(LLVM LanaiGenRegisterInfo.inc -gen-register-info)
|
|
tablegen(LLVM LanaiGenSubtargetInfo.inc -gen-subtarget)
|
|
add_public_tablegen_target(LanaiCommonTableGen)
|
|
|
|
add_llvm_target(LanaiCodeGen
|
|
LanaiAsmPrinter.cpp
|
|
LanaiDelaySlotFiller.cpp
|
|
LanaiFrameLowering.cpp
|
|
LanaiInstrInfo.cpp
|
|
LanaiISelDAGToDAG.cpp
|
|
LanaiISelLowering.cpp
|
|
LanaiMachineFunctionInfo.cpp
|
|
LanaiMCInstLower.cpp
|
|
LanaiMemAluCombiner.cpp
|
|
LanaiRegisterInfo.cpp
|
|
LanaiSelectionDAGInfo.cpp
|
|
LanaiSubtarget.cpp
|
|
LanaiTargetMachine.cpp
|
|
LanaiTargetObjectFile.cpp
|
|
)
|
|
|
|
add_subdirectory(AsmParser)
|
|
add_subdirectory(TargetInfo)
|
|
add_subdirectory(MCTargetDesc)
|
|
add_subdirectory(InstPrinter)
|
|
add_subdirectory(Disassembler)
|