Skip to content

Commit 5a7b79c

Browse files
authored
[WebAssembly] Fix feature coalescing (#110647)
This fixes a problem introduced in #80094. That PR copied negative features from the TargetMachine to the end of the feature string. This is not correct, because even if we have a baseline TM of say `-simd128`, but a function with `+simd128`, the coalesced feature string should have `+simd128`, not `-simd128`. To address the original motivation of that PR, we should instead explicitly materialize the negative features in the target feature string, so that explicitly disabled default features are honored. Unfortunately, there doesn't seem to be any way to actually test this using llc, because `-mattr` appends the specified features to the end of the `"target-features"` attribute. I've tested this locally by making it prepend the features instead.
1 parent c180da9 commit 5a7b79c

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.cpp

+4-8
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,7 @@ class CoalesceFeaturesAndStripAtomics final : public ModulePass {
205205
bool runOnModule(Module &M) override {
206206
FeatureBitset Features = coalesceFeatures(M);
207207

208-
std::string FeatureStr =
209-
getFeatureString(Features, WasmTM->getTargetFeatureString());
208+
std::string FeatureStr = getFeatureString(Features);
210209
WasmTM->setTargetFeatureString(FeatureStr);
211210
for (auto &F : M)
212211
replaceFeatures(F, FeatureStr);
@@ -244,17 +243,14 @@ class CoalesceFeaturesAndStripAtomics final : public ModulePass {
244243
return Features;
245244
}
246245

247-
static std::string getFeatureString(const FeatureBitset &Features,
248-
StringRef TargetFS) {
246+
static std::string getFeatureString(const FeatureBitset &Features) {
249247
std::string Ret;
250248
for (const SubtargetFeatureKV &KV : WebAssemblyFeatureKV) {
251249
if (Features[KV.Value])
252250
Ret += (StringRef("+") + KV.Key + ",").str();
251+
else
252+
Ret += (StringRef("-") + KV.Key + ",").str();
253253
}
254-
SubtargetFeatures TF{TargetFS};
255-
for (std::string const &F : TF.getFeatures())
256-
if (!SubtargetFeatures::isEnabled(F))
257-
Ret += F + ",";
258254
return Ret;
259255
}
260256

0 commit comments

Comments
 (0)