Skip to content

Commit 8a4228f

Browse files
nikictru
authored andcommitted
[WebAssembly] Fix feature coalescing (llvm#110647)
This fixes a problem introduced in llvm#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. (cherry picked from commit 5a7b79c)
1 parent 21ed37e commit 8a4228f

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
@@ -202,8 +202,7 @@ class CoalesceFeaturesAndStripAtomics final : public ModulePass {
202202
bool runOnModule(Module &M) override {
203203
FeatureBitset Features = coalesceFeatures(M);
204204

205-
std::string FeatureStr =
206-
getFeatureString(Features, WasmTM->getTargetFeatureString());
205+
std::string FeatureStr = getFeatureString(Features);
207206
WasmTM->setTargetFeatureString(FeatureStr);
208207
for (auto &F : M)
209208
replaceFeatures(F, FeatureStr);
@@ -241,17 +240,14 @@ class CoalesceFeaturesAndStripAtomics final : public ModulePass {
241240
return Features;
242241
}
243242

244-
static std::string getFeatureString(const FeatureBitset &Features,
245-
StringRef TargetFS) {
243+
static std::string getFeatureString(const FeatureBitset &Features) {
246244
std::string Ret;
247245
for (const SubtargetFeatureKV &KV : WebAssemblyFeatureKV) {
248246
if (Features[KV.Value])
249247
Ret += (StringRef("+") + KV.Key + ",").str();
248+
else
249+
Ret += (StringRef("-") + KV.Key + ",").str();
250250
}
251-
SubtargetFeatures TF{TargetFS};
252-
for (std::string const &F : TF.getFeatures())
253-
if (!SubtargetFeatures::isEnabled(F))
254-
Ret += F + ",";
255251
return Ret;
256252
}
257253

0 commit comments

Comments
 (0)