[AArch64] Add support for TargetTransformInfo Analysis.
[oota-llvm.git] / lib / Target / AArch64 / CMakeLists.txt
1 set(LLVM_TARGET_DEFINITIONS AArch64.td)
2
3 tablegen(LLVM AArch64GenAsmMatcher.inc -gen-asm-matcher)
4 tablegen(LLVM AArch64GenAsmWriter.inc -gen-asm-writer)
5 tablegen(LLVM AArch64GenCallingConv.inc -gen-callingconv)
6 tablegen(LLVM AArch64GenDisassemblerTables.inc -gen-disassembler)
7 tablegen(LLVM AArch64GenInstrInfo.inc -gen-instr-info)
8 tablegen(LLVM AArch64GenMCCodeEmitter.inc -gen-emitter -mc-emitter)
9 tablegen(LLVM AArch64GenMCPseudoLowering.inc -gen-pseudo-lowering)
10 tablegen(LLVM AArch64GenRegisterInfo.inc -gen-register-info)
11 tablegen(LLVM AArch64GenDAGISel.inc -gen-dag-isel)
12 tablegen(LLVM AArch64GenSubtargetInfo.inc -gen-subtarget)
13 add_public_tablegen_target(AArch64CommonTableGen)
14
15 add_llvm_target(AArch64CodeGen
16   AArch64AsmPrinter.cpp
17   AArch64BranchFixupPass.cpp
18   AArch64FrameLowering.cpp
19   AArch64ISelDAGToDAG.cpp
20   AArch64ISelLowering.cpp
21   AArch64InstrInfo.cpp
22   AArch64MachineFunctionInfo.cpp
23   AArch64MCInstLower.cpp
24   AArch64RegisterInfo.cpp
25   AArch64SelectionDAGInfo.cpp
26   AArch64Subtarget.cpp
27   AArch64TargetMachine.cpp
28   AArch64TargetObjectFile.cpp
29   AArch64TargetTransformInfo.cpp
30   )
31
32 add_subdirectory(AsmParser)
33 add_subdirectory(Disassembler)
34 add_subdirectory(InstPrinter)
35 add_subdirectory(MCTargetDesc)
36 add_subdirectory(TargetInfo)
37 add_subdirectory(Utils)