[clang] [llvm] [BPF] Add load-acquire and store-release instructions under -mcpu=v4 (PR #108636)

Peilin Ye via cfe-commits cfe-commits at lists.llvm.org
Thu Oct 24 21:53:47 PDT 2024


================
@@ -67,6 +67,8 @@ void BPFTargetInfo::getTargetDefines(const LangOptions &Opts,
     Builder.defineMacro("__BPF_FEATURE_SDIV_SMOD");
     Builder.defineMacro("__BPF_FEATURE_GOTOL");
     Builder.defineMacro("__BPF_FEATURE_ST");
+    Builder.defineMacro("__BPF_FEATURE_LOAD_ACQUIRE");
+    Builder.defineMacro("__BPF_FEATURE_STORE_RELEASE");
----------------
peilin-ye wrote:

> But I don't have a good name for that.

+1, but I just noticed that we need to update `clang/test/Preprocessor/bpf-predefined-macros.c`.  I'll do it in the next push.

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


More information about the cfe-commits mailing list