[llvm] [RFC][BPF] Support Jump Table (PR #133856)

Anton Protopopov via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 31 23:27:38 PDT 2025


================
@@ -281,6 +302,10 @@ defm JSLT : J<BPF_JSLT, "s<", BPF_CC_LT, BPF_CC_LT_32>;
 defm JSLE : J<BPF_JSLE, "s<=", BPF_CC_LE, BPF_CC_LE_32>;
 defm JSET : J<BPF_JSET, "&", NoCond, NoCond>;
 def JCOND : JMP_JCOND<BPF_JCOND, "may_goto", []>;
+
+let isIndirectBranch = 1 in {
+  def JX : JMP_IND<BPF_JA, "gotox", [(brind i64:$dst)]>;
+}
----------------
aspsk wrote:

nice to see how it should be done, I just had hardcoded it in my test branch: https://github.com/aspsk/llvm-project/commit/98773c6a1ade43733c07627fc3b249c94e673a12

https://github.com/llvm/llvm-project/pull/133856


More information about the llvm-commits mailing list