BPF backend
authorAlexei Starovoitov <alexei.starovoitov@gmail.com>
Sat, 24 Jan 2015 17:51:26 +0000 (17:51 +0000)
committerAlexei Starovoitov <alexei.starovoitov@gmail.com>
Sat, 24 Jan 2015 17:51:26 +0000 (17:51 +0000)
commit4fe85c75482f9d11c5a1f92a1863ce30afad8d0d
tree349d15906d176861b2aca12aab29a09ca82d4c7d
parent211422d4c3bbb7c84c4702ed87509d9b9f822165
BPF backend

Summary:
V8->V9:
- cleanup tests

V7->V8:
- addressed feedback from David:
- switched to range-based 'for' loops
- fixed formatting of tests

V6->V7:
- rebased and adjusted AsmPrinter args
- CamelCased .td, fixed formatting, cleaned up names, removed unused patterns
- diffstat: 3 files changed, 203 insertions(+), 227 deletions(-)

V5->V6:
- addressed feedback from Chandler:
- reinstated full verbose standard banner in all files
- fixed variables that were not in CamelCase
- fixed names of #ifdef in header files
- removed redundant braces in if/else chains with single statements
- fixed comments
- removed trailing empty line
- dropped debug annotations from tests
- diffstat of these changes:
  46 files changed, 456 insertions(+), 469 deletions(-)

V4->V5:
- fix setLoadExtAction() interface
- clang-formated all where it made sense

V3->V4:
- added CODE_OWNERS entry for BPF backend

V2->V3:
- fix metadata in tests

V1->V2:
- addressed feedback from Tom and Matt
- removed top level change to configure (now everything via 'experimental-backend')
- reworked error reporting via DiagnosticInfo (similar to R600)
- added few more tests
- added cmake build
- added Triple::bpf
- tested on linux and darwin

V1 cover letter:
---------------------
recently linux gained "universal in-kernel virtual machine" which is called
eBPF or extended BPF. The name comes from "Berkeley Packet Filter", since
new instruction set is based on it.
This patch adds a new backend that emits extended BPF instruction set.

The concept and development are covered by the following articles:
http://lwn.net/Articles/599755/
http://lwn.net/Articles/575531/
http://lwn.net/Articles/603983/
http://lwn.net/Articles/606089/
http://lwn.net/Articles/612878/

One of use cases: dtrace/systemtap alternative.

bpf syscall manpage:
https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=b4fc1a460f3017e958e6a8ea560ea0afd91bf6fe

instruction set description and differences vs classic BPF:
http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/Documentation/networking/filter.txt

Short summary of instruction set:
- 64-bit registers
  R0      - return value from in-kernel function, and exit value for BPF program
  R1 - R5 - arguments from BPF program to in-kernel function
  R6 - R9 - callee saved registers that in-kernel function will preserve
  R10     - read-only frame pointer to access stack
- two-operand instructions like +, -, *, mov, load/store
- implicit prologue/epilogue (invisible stack pointer)
- no floating point, no simd

Short history of extended BPF in kernel:
interpreter in 3.15, x64 JIT in 3.16, arm64 JIT, verifier, bpf syscall in 3.18, more to come in the future.

It's a very small and simple backend.
There is no support for global variables, arbitrary function calls, floating point, varargs,
exceptions, indirect jumps, arbitrary pointer arithmetic, alloca, etc.
From C front-end point of view it's very restricted. It's done on purpose, since kernel
rejects all programs that it cannot prove safe. It rejects programs with loops
and with memory accesses via arbitrary pointers. When kernel accepts the program it is
guaranteed that program will terminate and will not crash the kernel.

This patch implements all 'must have' bits. There are several things on TODO list,
so this is not the end of development.
Most of the code is a boiler plate code, copy-pasted from other backends.
Only odd things are lack or < and <= instructions, specialized load_byte intrinsics
and 'compare and goto' as single instruction.
Current instruction set is fixed, but more instructions can be added in the future.

Signed-off-by: Alexei Starovoitov <alexei.starovoitov@gmail.com>
Subscribers: majnemer, chandlerc, echristo, joerg, pete, rengolin, kristof.beyls, arsenm, t.p.northover, tstellarAMD, aemerson, llvm-commits

Differential Revision: http://reviews.llvm.org/D6494

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@227008 91177308-0d34-0410-b5e6-96231b3b80d8
69 files changed:
CODE_OWNERS.TXT
include/llvm/ADT/Triple.h
include/llvm/IR/Intrinsics.td
include/llvm/IR/IntrinsicsBPF.td [new file with mode: 0644]
lib/Support/Triple.cpp
lib/Target/BPF/BPF.h [new file with mode: 0644]
lib/Target/BPF/BPF.td [new file with mode: 0644]
lib/Target/BPF/BPFAsmPrinter.cpp [new file with mode: 0644]
lib/Target/BPF/BPFCallingConv.td [new file with mode: 0644]
lib/Target/BPF/BPFFrameLowering.cpp [new file with mode: 0644]
lib/Target/BPF/BPFFrameLowering.h [new file with mode: 0644]
lib/Target/BPF/BPFISelDAGToDAG.cpp [new file with mode: 0644]
lib/Target/BPF/BPFISelLowering.cpp [new file with mode: 0644]
lib/Target/BPF/BPFISelLowering.h [new file with mode: 0644]
lib/Target/BPF/BPFInstrFormats.td [new file with mode: 0644]
lib/Target/BPF/BPFInstrInfo.cpp [new file with mode: 0644]
lib/Target/BPF/BPFInstrInfo.h [new file with mode: 0644]
lib/Target/BPF/BPFInstrInfo.td [new file with mode: 0644]
lib/Target/BPF/BPFMCInstLower.cpp [new file with mode: 0644]
lib/Target/BPF/BPFMCInstLower.h [new file with mode: 0644]
lib/Target/BPF/BPFRegisterInfo.cpp [new file with mode: 0644]
lib/Target/BPF/BPFRegisterInfo.h [new file with mode: 0644]
lib/Target/BPF/BPFRegisterInfo.td [new file with mode: 0644]
lib/Target/BPF/BPFSubtarget.cpp [new file with mode: 0644]
lib/Target/BPF/BPFSubtarget.h [new file with mode: 0644]
lib/Target/BPF/BPFTargetMachine.cpp [new file with mode: 0644]
lib/Target/BPF/BPFTargetMachine.h [new file with mode: 0644]
lib/Target/BPF/CMakeLists.txt [new file with mode: 0644]
lib/Target/BPF/InstPrinter/BPFInstPrinter.cpp [new file with mode: 0644]
lib/Target/BPF/InstPrinter/BPFInstPrinter.h [new file with mode: 0644]
lib/Target/BPF/InstPrinter/CMakeLists.txt [new file with mode: 0644]
lib/Target/BPF/InstPrinter/LLVMBuild.txt [new file with mode: 0644]
lib/Target/BPF/InstPrinter/Makefile [new file with mode: 0644]
lib/Target/BPF/LLVMBuild.txt [new file with mode: 0644]
lib/Target/BPF/MCTargetDesc/BPFAsmBackend.cpp [new file with mode: 0644]
lib/Target/BPF/MCTargetDesc/BPFELFObjectWriter.cpp [new file with mode: 0644]
lib/Target/BPF/MCTargetDesc/BPFMCAsmInfo.h [new file with mode: 0644]
lib/Target/BPF/MCTargetDesc/BPFMCCodeEmitter.cpp [new file with mode: 0644]
lib/Target/BPF/MCTargetDesc/BPFMCTargetDesc.cpp [new file with mode: 0644]
lib/Target/BPF/MCTargetDesc/BPFMCTargetDesc.h [new file with mode: 0644]
lib/Target/BPF/MCTargetDesc/CMakeLists.txt [new file with mode: 0644]
lib/Target/BPF/MCTargetDesc/LLVMBuild.txt [new file with mode: 0644]
lib/Target/BPF/MCTargetDesc/Makefile [new file with mode: 0644]
lib/Target/BPF/Makefile [new file with mode: 0644]
lib/Target/BPF/TargetInfo/BPFTargetInfo.cpp [new file with mode: 0644]
lib/Target/BPF/TargetInfo/CMakeLists.txt [new file with mode: 0644]
lib/Target/BPF/TargetInfo/LLVMBuild.txt [new file with mode: 0644]
lib/Target/BPF/TargetInfo/Makefile [new file with mode: 0644]
lib/Target/LLVMBuild.txt
test/CodeGen/BPF/alu8.ll [new file with mode: 0644]
test/CodeGen/BPF/atomics.ll [new file with mode: 0644]
test/CodeGen/BPF/basictest.ll [new file with mode: 0644]
test/CodeGen/BPF/byval.ll [new file with mode: 0644]
test/CodeGen/BPF/cc_args.ll [new file with mode: 0644]
test/CodeGen/BPF/cc_ret.ll [new file with mode: 0644]
test/CodeGen/BPF/cmp.ll [new file with mode: 0644]
test/CodeGen/BPF/ex1.ll [new file with mode: 0644]
test/CodeGen/BPF/intrinsics.ll [new file with mode: 0644]
test/CodeGen/BPF/load.ll [new file with mode: 0644]
test/CodeGen/BPF/loops.ll [new file with mode: 0644]
test/CodeGen/BPF/many_args1.ll [new file with mode: 0644]
test/CodeGen/BPF/many_args2.ll [new file with mode: 0644]
test/CodeGen/BPF/sanity.ll [new file with mode: 0644]
test/CodeGen/BPF/setcc.ll [new file with mode: 0644]
test/CodeGen/BPF/shifts.ll [new file with mode: 0644]
test/CodeGen/BPF/sockex2.ll [new file with mode: 0644]
test/CodeGen/BPF/struct_ret1.ll [new file with mode: 0644]
test/CodeGen/BPF/struct_ret2.ll [new file with mode: 0644]
test/CodeGen/BPF/vararg1.ll [new file with mode: 0644]