RegAllocGreedy comment.
[oota-llvm.git] / lib / Target / MBlaze / CMakeLists.txt
1 set(LLVM_TARGET_DEFINITIONS MBlaze.td)
2
3 tablegen(LLVM MBlazeGenRegisterInfo.inc -gen-register-info)
4 tablegen(LLVM MBlazeGenInstrInfo.inc -gen-instr-info)
5 tablegen(LLVM MBlazeGenCodeEmitter.inc -gen-emitter)
6 tablegen(LLVM MBlazeGenAsmWriter.inc -gen-asm-writer)
7 tablegen(LLVM MBlazeGenAsmMatcher.inc -gen-asm-matcher)
8 tablegen(LLVM MBlazeGenDAGISel.inc -gen-dag-isel)
9 tablegen(LLVM MBlazeGenCallingConv.inc -gen-callingconv)
10 tablegen(LLVM MBlazeGenSubtargetInfo.inc -gen-subtarget)
11 tablegen(LLVM MBlazeGenIntrinsics.inc -gen-tgt-intrinsic)
12 add_public_tablegen_target(MBlazeCommonTableGen)
13
14 add_llvm_target(MBlazeCodeGen
15   MBlazeDelaySlotFiller.cpp
16   MBlazeInstrInfo.cpp
17   MBlazeISelDAGToDAG.cpp
18   MBlazeISelLowering.cpp
19   MBlazeFrameLowering.cpp
20   MBlazeMachineFunction.cpp
21   MBlazeRegisterInfo.cpp
22   MBlazeSubtarget.cpp
23   MBlazeTargetMachine.cpp
24   MBlazeTargetObjectFile.cpp
25   MBlazeIntrinsicInfo.cpp
26   MBlazeSelectionDAGInfo.cpp
27   MBlazeAsmPrinter.cpp
28   MBlazeMCInstLower.cpp
29   )
30
31 add_dependencies(LLVMMBlazeCodeGen intrinsics_gen)
32
33 add_subdirectory(AsmParser)
34 add_subdirectory(Disassembler)
35 add_subdirectory(InstPrinter)
36 add_subdirectory(TargetInfo)
37 add_subdirectory(MCTargetDesc)