You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BPF target support
This adds `bpfel-unknown-none` and `bpfeb-unknown-none`, two new no_std targets that generate little and big endian BPF. The approach taken is very similar to the cuda target, where `TargetOptions::obj_is_bitcode` is enabled and code generation is done by the linker.
I added the targets to `dist-various-2`. There are [some tests](https://github.com/alessandrod/bpf-linker/tree/main/tests/assembly) in bpf-linker and I'm planning to add more. Those are currently not ran as part of rust CI.
// see https://github.com/llvm/llvm-project/blob/main/llvm/lib/Target/BPF/BPFCallingConv.td
2
+
usecrate::abi::call::{ArgAbi,FnAbi};
3
+
4
+
fnclassify_ret<Ty>(ret:&mutArgAbi<'_,Ty>){
5
+
if ret.layout.is_aggregate() || ret.layout.size.bits() > 64{
6
+
ret.make_indirect();
7
+
}else{
8
+
ret.extend_integer_width_to(32);
9
+
}
10
+
}
11
+
12
+
fnclassify_arg<Ty>(arg:&mutArgAbi<'_,Ty>){
13
+
if arg.layout.is_aggregate() || arg.layout.size.bits() > 64{
0 commit comments