blob: 3a51a5f5e1034f946a9e8b4f5bb2d6414c6c6e16 [file] [log] [blame]
Tom Stellard45bb48e2015-06-13 03:28:10 +00001set(LLVM_TARGET_DEFINITIONS AMDGPU.td)
2
3tablegen(LLVM AMDGPUGenRegisterInfo.inc -gen-register-info)
4tablegen(LLVM AMDGPUGenInstrInfo.inc -gen-instr-info)
5tablegen(LLVM AMDGPUGenDAGISel.inc -gen-dag-isel)
6tablegen(LLVM AMDGPUGenCallingConv.inc -gen-callingconv)
7tablegen(LLVM AMDGPUGenSubtargetInfo.inc -gen-subtarget)
8tablegen(LLVM AMDGPUGenIntrinsics.inc -gen-tgt-intrinsic)
9tablegen(LLVM AMDGPUGenMCCodeEmitter.inc -gen-emitter)
10tablegen(LLVM AMDGPUGenDFAPacketizer.inc -gen-dfa-packetizer)
11tablegen(LLVM AMDGPUGenAsmWriter.inc -gen-asm-writer)
12tablegen(LLVM AMDGPUGenAsmMatcher.inc -gen-asm-matcher)
13add_public_tablegen_target(AMDGPUCommonTableGen)
14
15add_llvm_target(AMDGPUCodeGen
16 AMDILCFGStructurizer.cpp
17 AMDGPUAlwaysInlinePass.cpp
Matt Arsenault39319482015-11-06 18:01:57 +000018 AMDGPUAnnotateKernelFeatures.cpp
Tom Stellard45bb48e2015-06-13 03:28:10 +000019 AMDGPUAsmPrinter.cpp
Matt Arsenaultb6fd98c2015-10-21 22:37:46 +000020 AMDGPUDiagnosticInfoUnsupported.cpp
Tom Stellard45bb48e2015-06-13 03:28:10 +000021 AMDGPUFrameLowering.cpp
Tom Stellardc93fc112015-12-10 02:13:01 +000022 AMDGPUTargetObjectFile.cpp
Tom Stellard45bb48e2015-06-13 03:28:10 +000023 AMDGPUIntrinsicInfo.cpp
24 AMDGPUISelDAGToDAG.cpp
25 AMDGPUMCInstLower.cpp
26 AMDGPUMachineFunction.cpp
Tom Stellardfd253952015-08-07 23:19:30 +000027 AMDGPUOpenCLImageTypeLoweringPass.cpp
Tom Stellard45bb48e2015-06-13 03:28:10 +000028 AMDGPUSubtarget.cpp
29 AMDGPUTargetMachine.cpp
30 AMDGPUTargetTransformInfo.cpp
31 AMDGPUISelLowering.cpp
32 AMDGPUInstrInfo.cpp
33 AMDGPUPromoteAlloca.cpp
34 AMDGPURegisterInfo.cpp
35 R600ClauseMergePass.cpp
36 R600ControlFlowFinalizer.cpp
37 R600EmitClauseMarkers.cpp
38 R600ExpandSpecialInstrs.cpp
39 R600InstrInfo.cpp
40 R600ISelLowering.cpp
41 R600MachineFunctionInfo.cpp
42 R600MachineScheduler.cpp
43 R600OptimizeVectorRegisters.cpp
44 R600Packetizer.cpp
45 R600RegisterInfo.cpp
46 R600TextureIntrinsicsReplacer.cpp
47 SIAnnotateControlFlow.cpp
48 SIFixControlFlowLiveIntervals.cpp
49 SIFixSGPRCopies.cpp
50 SIFixSGPRLiveRanges.cpp
51 SIFoldOperands.cpp
Matt Arsenault0c90e952015-11-06 18:17:45 +000052 SIFrameLowering.cpp
Tom Stellard45bb48e2015-06-13 03:28:10 +000053 SIInsertWaits.cpp
54 SIInstrInfo.cpp
55 SIISelLowering.cpp
56 SILoadStoreOptimizer.cpp
57 SILowerControlFlow.cpp
58 SILowerI1Copies.cpp
59 SIMachineFunctionInfo.cpp
Tom Stellard45bb48e2015-06-13 03:28:10 +000060 SIRegisterInfo.cpp
61 SIShrinkInstructions.cpp
62 SITypeRewriter.cpp
63 )
64
65add_subdirectory(AsmParser)
66add_subdirectory(InstPrinter)
67add_subdirectory(TargetInfo)
68add_subdirectory(MCTargetDesc)
Tom Stellard347ac792015-06-26 21:15:07 +000069add_subdirectory(Utils)