blob: 631d1ef5c7b09d306ee4b34a561fabd5a19b2f5c [file] [log] [blame]
import("//llvm/utils/TableGen/tablegen.gni")
tablegen("AMDGPUGenSearchableTables") {
visibility = [ ":Utils" ]
args = [ "-gen-searchable-tables" ]
td_file = "../AMDGPU.td"
}
static_library("Utils") {
output_name = "LLVMAMDGPUUtils"
public_deps = [ ":AMDGPUGenSearchableTables" ]
deps = [
# AMDGPUBaseInfo.cpp includes GCNSubtarget.h which after 490e348e679
# includes the generated AMDGPUGenRegisterBank.inc file :/
"../:AMDGPUGenRegisterBank",
"//llvm/lib/BinaryFormat",
"//llvm/lib/CodeGen",
"//llvm/lib/IR",
"//llvm/lib/MC",
"//llvm/lib/Support",
"//llvm/lib/TargetParser",
# MCTargetDesc depends on Utils, so we can't depend on the full
# MCTargetDesc target here: it would form a cycle.
"//llvm/lib/Target/AMDGPU/MCTargetDesc:tablegen",
]
# AMDGPUBaseInfo.h includes a header from MCTargetDesc :-/
include_dirs = [ ".." ]
sources = [
"AMDGPUAsmUtils.cpp",
"AMDGPUBaseInfo.cpp",
"AMDGPUMemoryUtils.cpp",
"AMDGPUPALMetadata.cpp",
"AMDKernelCodeTUtils.cpp",
]
}