blob: 09e750be789c4851311428cc1af302daed6c0166 [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 Stellarde135ffd2015-09-25 21:41:28 +000022 AMDGPUHSATargetObjectFile.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
52 SIInsertWaits.cpp
53 SIInstrInfo.cpp
54 SIISelLowering.cpp
55 SILoadStoreOptimizer.cpp
56 SILowerControlFlow.cpp
57 SILowerI1Copies.cpp
58 SIMachineFunctionInfo.cpp
59 SIPrepareScratchRegs.cpp
60 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)