[llvm] [BPF] Handle unreachable with a unimplemented kfunc call (PR #131731)

via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 19 11:30:51 PDT 2025


================
@@ -521,10 +526,12 @@ SDValue BPFTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
     Callee = DAG.getTargetGlobalAddress(G->getGlobal(), CLI.DL, PtrVT,
                                         G->getOffset(), 0);
   } else if (ExternalSymbolSDNode *E = dyn_cast<ExternalSymbolSDNode>(Callee)) {
-    Callee = DAG.getTargetExternalSymbol(E->getSymbol(), PtrVT, 0);
-    fail(CLI.DL, DAG,
-         Twine("A call to built-in function '" + StringRef(E->getSymbol()) +
-               "' is not supported."));
+    if (strcmp(E->getSymbol(), "__unreachable_helper") != 0) {
----------------
eddyz87 wrote:

I mean something like `static const char *UNREACHABLE_HELPER = "__unreachable_helper";` at the file level, or a `#define ...`.

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


More information about the llvm-commits mailing list