blob: 949b3b2147405c3a0558c5c574adffbb4f06621d [file] [log] [blame]
import("//llvm/utils/TableGen/tablegen.gni")
tablegen("WebAssemblyGenDAGISel") {
visibility = [ ":LLVMWebAssemblyCodeGen" ]
args = [ "-gen-dag-isel" ]
td_file = "WebAssembly.td"
}
tablegen("WebAssemblyGenFastISel") {
visibility = [ ":LLVMWebAssemblyCodeGen" ]
args = [ "-gen-fast-isel" ]
td_file = "WebAssembly.td"
}
static_library("LLVMWebAssemblyCodeGen") {
deps = [
":WebAssemblyGenDAGISel",
":WebAssemblyGenFastISel",
"MCTargetDesc",
"TargetInfo",
"//llvm/include/llvm/Config:llvm-config",
"//llvm/lib/Analysis",
"//llvm/lib/CodeGen",
"//llvm/lib/CodeGen/AsmPrinter",
"//llvm/lib/CodeGen/GlobalISel",
"//llvm/lib/CodeGen/SelectionDAG",
"//llvm/lib/IR",
"//llvm/lib/MC",
"//llvm/lib/Support",
"//llvm/lib/Target",
"//llvm/lib/TargetParser",
]
include_dirs = [ "." ]
sources = [
"WebAssemblyAddMissingPrototypes.cpp",
"WebAssemblyArgumentMove.cpp",
"WebAssemblyAsmPrinter.cpp",
"WebAssemblyCFGSort.cpp",
"WebAssemblyCFGStackify.cpp",
"WebAssemblyDebugFixup.cpp",
"WebAssemblyDebugValueManager.cpp",
"WebAssemblyExceptionInfo.cpp",
"WebAssemblyExplicitLocals.cpp",
"WebAssemblyFastISel.cpp",
"WebAssemblyFixBrTableDefaults.cpp",
"WebAssemblyFixFunctionBitcasts.cpp",
"WebAssemblyFixIrreducibleControlFlow.cpp",
"WebAssemblyFrameLowering.cpp",
"WebAssemblyISelDAGToDAG.cpp",
"WebAssemblyISelLowering.cpp",
"WebAssemblyInstrInfo.cpp",
"WebAssemblyLateEHPrepare.cpp",
"WebAssemblyLowerBrUnless.cpp",
"WebAssemblyLowerEmscriptenEHSjLj.cpp",
"WebAssemblyLowerRefTypesIntPtrConv.cpp",
"WebAssemblyMCInstLower.cpp",
"WebAssemblyMCLowerPrePass.cpp",
"WebAssemblyMachineFunctionInfo.cpp",
"WebAssemblyMemIntrinsicResults.cpp",
"WebAssemblyNullifyDebugValueLists.cpp",
"WebAssemblyOptimizeLiveIntervals.cpp",
"WebAssemblyOptimizeReturned.cpp",
"WebAssemblyPeephole.cpp",
"WebAssemblyRegColoring.cpp",
"WebAssemblyRegNumbering.cpp",
"WebAssemblyRegStackify.cpp",
"WebAssemblyRegisterInfo.cpp",
"WebAssemblyReplacePhysRegs.cpp",
"WebAssemblyRuntimeLibcallSignatures.cpp",
"WebAssemblySelectionDAGInfo.cpp",
"WebAssemblySetP2AlignOperands.cpp",
"WebAssemblySortRegion.cpp",
"WebAssemblySubtarget.cpp",
"WebAssemblyTargetMachine.cpp",
"WebAssemblyTargetObjectFile.cpp",
"WebAssemblyTargetTransformInfo.cpp",
"WebAssemblyUtilities.cpp",
]
}
# This is a bit different from most build files: Due to this group
# having the directory's name, "//llvm/lib/Target/AArch64" will refer to this
# target, which pulls in the code in this directory *and all subdirectories*.
# For most other directories, "//llvm/lib/Foo" only pulls in the code directly
# in "llvm/lib/Foo". The forwarding targets in //llvm/lib/Target expect this
# different behavior.
group("WebAssembly") {
deps = [
":LLVMWebAssemblyCodeGen",
"AsmParser",
"Disassembler",
"MCTargetDesc",
"TargetInfo",
]
}