[llvm] Use Module level target-abi to assign target features for codegenerated functions. (PR #100833)

Peter Collingbourne via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 6 17:43:54 PST 2025


================
@@ -387,6 +388,25 @@ Function *Function::Create(FunctionType *Ty, LinkageTypes Linkage,
   return Create(Ty, Linkage, M.getDataLayout().getProgramAddressSpace(), N, &M);
 }
 
+StringRef Function::getDefaultTargetFeatures(const StringRef TargetABI) {
+  Triple T(getParent()->getTargetTriple());
+  StringRef attr = "";
+  if (T.isRISCV64()) {
+    if (TargetABI.equals_insensitive("lp64d"))
+      attr = "+d";
+    else if (TargetABI.equals_insensitive("lp64f"))
+      attr = "+f";
+    else if (TargetABI.equals_insensitive("lp64q"))
+      attr = "+q";
+  } else if (T.isRISCV32() && TargetABI.contains("ilp32f")) {
+    attr = "+f";
+  } else if (T.isARM() || T.isThumb()) {
+    attr = "+thumb-mode";
----------------
pcc wrote:

`__cfi_check` is normally called by the CFI runtime library so there isn't really a known caller per se. For `__cfi_check` I think the attributes should be generated by Clang based on what it would normally add to a function without target attributes, i.e. what #78253 is doing aside from the noted change for Thumb which could be implemented in a target-specific class e.g. as part of `clang::TargetInfo`.

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


More information about the llvm-commits mailing list