blob: af8b934718da51899d44576ad1df3aa2d534c91e [file] [log] [blame]
Dan Gohman10e730a2015-06-29 23:51:55 +00001set(LLVM_TARGET_DEFINITIONS WebAssembly.td)
2
JF Bastienb9073fb2015-07-22 21:28:15 +00003tablegen(LLVM WebAssemblyGenAsmWriter.inc -gen-asm-writer)
4tablegen(LLVM WebAssemblyGenDAGISel.inc -gen-dag-isel)
Dan Gohman7b634842015-08-24 18:44:37 +00005tablegen(LLVM WebAssemblyGenFastISel.inc -gen-fast-isel)
JF Bastienb9073fb2015-07-22 21:28:15 +00006tablegen(LLVM WebAssemblyGenInstrInfo.inc -gen-instr-info)
Dan Gohman10e730a2015-06-29 23:51:55 +00007tablegen(LLVM WebAssemblyGenMCCodeEmitter.inc -gen-emitter)
JF Bastien5ca0bac2015-07-10 18:23:10 +00008tablegen(LLVM WebAssemblyGenRegisterInfo.inc -gen-register-info)
Dan Gohman10e730a2015-06-29 23:51:55 +00009tablegen(LLVM WebAssemblyGenSubtargetInfo.inc -gen-subtarget)
10add_public_tablegen_target(WebAssemblyCommonTableGen)
11
12add_llvm_target(WebAssemblyCodeGen
JF Bastiend4698e12015-08-15 01:23:28 +000013 Relooper.cpp
Dan Gohman1cf96c02015-12-09 16:23:59 +000014 WebAssemblyArgumentMove.cpp
JF Bastienb9073fb2015-07-22 21:28:15 +000015 WebAssemblyAsmPrinter.cpp
Dan Gohman950a13c2015-09-16 16:51:30 +000016 WebAssemblyCFGStackify.cpp
Dan Gohman7b634842015-08-24 18:44:37 +000017 WebAssemblyFastISel.cpp
Dan Gohman10e730a2015-06-29 23:51:55 +000018 WebAssemblyFrameLowering.cpp
Dan Gohman10e730a2015-06-29 23:51:55 +000019 WebAssemblyISelDAGToDAG.cpp
20 WebAssemblyISelLowering.cpp
JF Bastienb9073fb2015-07-22 21:28:15 +000021 WebAssemblyInstrInfo.cpp
Dan Gohmanf0b165a2015-12-05 03:03:35 +000022 WebAssemblyLowerBrUnless.cpp
Dan Gohman10e730a2015-06-29 23:51:55 +000023 WebAssemblyMachineFunctionInfo.cpp
Dan Gohmane9361d52015-11-05 19:28:16 +000024 WebAssemblyMCInstLower.cpp
Dan Gohman81719f82015-11-25 16:55:01 +000025 WebAssemblyOptimizeReturned.cpp
26 WebAssemblyPeephole.cpp
Derek Schuff9769deb2015-12-11 23:49:46 +000027 WebAssemblyPEI.cpp
Dan Gohman10e730a2015-06-29 23:51:55 +000028 WebAssemblyRegisterInfo.cpp
Dan Gohman1462faa2015-11-16 16:18:28 +000029 WebAssemblyRegColoring.cpp
Dan Gohmancf4748f2015-11-12 17:04:33 +000030 WebAssemblyRegNumbering.cpp
Dan Gohman1462faa2015-11-16 16:18:28 +000031 WebAssemblyRegStackify.cpp
Dan Gohman10e730a2015-06-29 23:51:55 +000032 WebAssemblySelectionDAGInfo.cpp
Dan Gohman81719f82015-11-25 16:55:01 +000033 WebAssemblyStoreResults.cpp
Dan Gohman10e730a2015-06-29 23:51:55 +000034 WebAssemblySubtarget.cpp
35 WebAssemblyTargetMachine.cpp
Dan Gohman5bf22fc2015-12-17 04:55:44 +000036 WebAssemblyTargetObjectFile.cpp
Dan Gohman10e730a2015-06-29 23:51:55 +000037 WebAssemblyTargetTransformInfo.cpp
38)
39
40add_dependencies(LLVMWebAssemblyCodeGen intrinsics_gen)
41
42add_subdirectory(InstPrinter)
Dan Gohman10e730a2015-06-29 23:51:55 +000043add_subdirectory(MCTargetDesc)
Dan Gohman35e4a282016-01-08 01:06:00 +000044add_subdirectory(TargetInfo)