[llvm] Implement areInlineCompatible for SystemZ using feature bitset (PR #132976)
Ulrich Weigand via llvm-commits
llvm-commits at lists.llvm.org
Thu Apr 3 01:40:52 PDT 2025
================
@@ -422,6 +422,20 @@ bool SystemZTTIImpl::isLSRCostLess(const TargetTransformInfo::LSRCost &C1,
C2.ScaleCost, C2.SetupCost);
}
+bool SystemZTTIImpl::areInlineCompatible(const Function *Caller,
+ const Function *Callee) const {
+ const TargetMachine &TM = getTLI()->getTargetMachine();
+
+ const FeatureBitset &CallerBits =
+ TM.getSubtargetImpl(*Caller)->getFeatureBits();
+ const FeatureBitset &CalleeBits =
+ TM.getSubtargetImpl(*Callee)->getFeatureBits();
+
+ // Check that target features from the callee are subset or
+ // equal to the caller's features.
+ return (CalleeBits == CallerBits) || (CalleeBits < CallerBits);
----------------
uweigand wrote:
Sure. I guess that would be fine with me, thanks.
https://github.com/llvm/llvm-project/pull/132976
More information about the llvm-commits
mailing list