]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
bpf: allow exceeding max num of args in BPF when always_inline
authorJose E. Marchesi <jose.marchesi@oracle.com>
Thu, 10 Aug 2023 08:53:16 +0000 (10:53 +0200)
committerJose E. Marchesi <jose.marchesi@oracle.com>
Fri, 11 Aug 2023 18:34:56 +0000 (20:34 +0200)
BPF currently limits the number of registers used to pass arguments to
functions to five registers.  There is a check for this at function
expansion time.  However, if a function is guaranteed to be always
inlined (and its body never generated) by virtue of the always_inline
attribute, it can "receive" any number of arguments.

Tested in host x86_64-linux-gnu and target bpf-unknown-none.

gcc/ChangeLog

* config/bpf/bpf.cc (bpf_function_arg_advance): Do not complain
about too many arguments if function is always inlined.

gcc/testsuite/ChangeLog

* gcc.target/bpf/diag-funargs-inline-1.c: New test.
* gcc.target/bpf/diag-funargs.c: Adapt test.

gcc/config/bpf/bpf.cc
gcc/testsuite/gcc.target/bpf/diag-funargs-inline-1.c [new file with mode: 0644]
gcc/testsuite/gcc.target/bpf/diag-funargs.c

index 33218b3a818ac837f9b55c2670b19c6948dd65ec..d27a971d0af55860d1f91bfe5a03494c1eaa69c4 100644 (file)
@@ -732,7 +732,14 @@ bpf_function_arg_advance (cumulative_args_t ca,
   unsigned num_words = CEIL (num_bytes, UNITS_PER_WORD);
 
   if (*cum <= 5 && *cum + num_words > 5)
-    error ("too many function arguments for eBPF");
+    {
+      /* Too many arguments for BPF.  However, if the function is
+         gonna be inline for sure, we let it pass.  Otherwise, issue
+         an error.  */
+      if (!lookup_attribute ("always_inline",
+                             DECL_ATTRIBUTES (cfun->decl)))
+        error ("too many function arguments for eBPF");
+    }
 
   *cum += num_words;
 }
diff --git a/gcc/testsuite/gcc.target/bpf/diag-funargs-inline-1.c b/gcc/testsuite/gcc.target/bpf/diag-funargs-inline-1.c
new file mode 100644 (file)
index 0000000..e917ef1
--- /dev/null
@@ -0,0 +1,21 @@
+/* { dg-do compile } */
+/* { dg-options "" } */
+
+inline int __attribute__ ((always_inline))
+foo (int a1,
+     int a2,
+     int a3,
+     int a4,
+     int a5,
+     int a6)
+{
+  return a1 + a2 + a3 + a4 + a5 + a6;
+}
+
+int
+bar (int i1, int i2, int i3, int i4, int i5)
+{
+  return foo (i1, i2, i3, i4, i5, 10);
+}
+
+/* { dg-final { scan-assembler-not "call\t.*" } } */
index d4e9c0683f26691f555aad5beaf556943c1bf46b..42b5f05b67c3d8d0956036cae02f627817c56070 100644 (file)
@@ -11,5 +11,11 @@ foo (int a1,  /* { dg-error "too many function arguments" } */
      int a5,
      int a6)
 {
-  return a6;
+  return a1 + a2 + a3 + a4 + a5 + a6;
+}
+
+int
+bar (int i1, int i2, int i3, int i4, int i5)
+{
+  return foo (i1, i2, i3, i4, i5, 10);
 }