diff options
Diffstat (limited to 'lib/Target/BPF/CMakeLists.txt')
-rw-r--r-- | lib/Target/BPF/CMakeLists.txt | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/lib/Target/BPF/CMakeLists.txt b/lib/Target/BPF/CMakeLists.txt new file mode 100644 index 0000000..3eac6e9 --- /dev/null +++ b/lib/Target/BPF/CMakeLists.txt @@ -0,0 +1,27 @@ +set(LLVM_TARGET_DEFINITIONS BPF.td) + +tablegen(LLVM BPFGenRegisterInfo.inc -gen-register-info) +tablegen(LLVM BPFGenInstrInfo.inc -gen-instr-info) +tablegen(LLVM BPFGenAsmWriter.inc -gen-asm-writer) +tablegen(LLVM X86GenAsmMatcher.inc -gen-asm-matcher) +tablegen(LLVM BPFGenDAGISel.inc -gen-dag-isel) +tablegen(LLVM BPFGenMCCodeEmitter.inc -gen-emitter) +tablegen(LLVM BPFGenCallingConv.inc -gen-callingconv) +tablegen(LLVM BPFGenSubtargetInfo.inc -gen-subtarget) +add_public_tablegen_target(BPFCommonTableGen) + +add_llvm_target(BPFCodeGen + BPFAsmPrinter.cpp + BPFFrameLowering.cpp + BPFInstrInfo.cpp + BPFISelDAGToDAG.cpp + BPFISelLowering.cpp + BPFMCInstLower.cpp + BPFRegisterInfo.cpp + BPFSubtarget.cpp + BPFTargetMachine.cpp + ) + +add_subdirectory(InstPrinter) +add_subdirectory(TargetInfo) +add_subdirectory(MCTargetDesc) |