mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
8a77999240
mostly based on the ARM AsmParser at this time and is not particularly functional. Changed the MBlaze data layout from: "E-p:32:32-i8:8:8-i16:16:16-i64:32:32-f64:32:32-v64:32:32-v128:32:32-n32" to: "E-p:32:32:32-i8:8:8-i16:16:16" because the MicroBlaze doesn't have i64, f64, v64, or v128 data types. Cleaned up the MBlaze source code: 1. The floating point register class has been removed. The MicroBlaze does not have floating point registers. Floating point values are simply stored in integer registers. 2. Renaming the CPURegs register class to GPR to reflect the standard naming. 3. Removing a lot of stale code from AsmPrinter after the conversion to InstPrinter. 4. Simplified sign extended loads by marking them as expanded in ISelLowering. llvm-svn: 117054
34 lines
1.1 KiB
CMake
34 lines
1.1 KiB
CMake
set(LLVM_TARGET_DEFINITIONS MBlaze.td)
|
|
|
|
tablegen(MBlazeGenRegisterInfo.h.inc -gen-register-desc-header)
|
|
tablegen(MBlazeGenRegisterNames.inc -gen-register-enums)
|
|
tablegen(MBlazeGenRegisterInfo.inc -gen-register-desc)
|
|
tablegen(MBlazeGenInstrNames.inc -gen-instr-enums)
|
|
tablegen(MBlazeGenInstrInfo.inc -gen-instr-desc)
|
|
tablegen(MBlazeGenCodeEmitter.inc -gen-emitter)
|
|
tablegen(MBlazeGenAsmWriter.inc -gen-asm-writer)
|
|
tablegen(MBlazeGenAsmMatcher.inc -gen-asm-matcher)
|
|
tablegen(MBlazeGenDAGISel.inc -gen-dag-isel)
|
|
tablegen(MBlazeGenCallingConv.inc -gen-callingconv)
|
|
tablegen(MBlazeGenSubtarget.inc -gen-subtarget)
|
|
tablegen(MBlazeGenIntrinsics.inc -gen-tgt-intrinsic)
|
|
|
|
add_llvm_target(MBlazeCodeGen
|
|
MBlazeDelaySlotFiller.cpp
|
|
MBlazeInstrInfo.cpp
|
|
MBlazeISelDAGToDAG.cpp
|
|
MBlazeISelLowering.cpp
|
|
MBlazeMCAsmInfo.cpp
|
|
MBlazeRegisterInfo.cpp
|
|
MBlazeSubtarget.cpp
|
|
MBlazeTargetMachine.cpp
|
|
MBlazeTargetObjectFile.cpp
|
|
MBlazeIntrinsicInfo.cpp
|
|
MBlazeSelectionDAGInfo.cpp
|
|
MBlazeAsmPrinter.cpp
|
|
MBlazeAsmBackend.cpp
|
|
MBlazeMCInstLower.cpp
|
|
MBlazeELFWriterInfo.cpp
|
|
MBlazeMCCodeEmitter.cpp
|
|
)
|