1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
|
/*
* Copyright 2021 WebAssembly Community Group participants
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "parsing.h"
#include "ir/branch-utils.h"
#include "support/small_set.h"
namespace wasm {
void ParseException::dump(std::ostream& o) const {
Colors::magenta(o);
o << "[";
Colors::red(o);
o << "parse exception: ";
Colors::green(o);
o << text;
if (line != size_t(-1)) {
Colors::normal(o);
o << " (at " << line << ":" << col << ")";
}
Colors::magenta(o);
o << "]";
Colors::normal(o);
}
// UniqueNameMapper
Name UniqueNameMapper::getPrefixedName(Name prefix) {
if (reverseLabelMapping.find(prefix) == reverseLabelMapping.end()) {
return prefix;
}
// make sure to return a unique name not already on the stack
while (1) {
Name ret = prefix.toString() + std::to_string(otherIndex++);
if (reverseLabelMapping.find(ret) == reverseLabelMapping.end()) {
return ret;
}
}
}
Name UniqueNameMapper::pushLabelName(Name sName) {
Name name = getPrefixedName(sName);
labelStack.push_back(name);
labelMappings[sName].push_back(name);
reverseLabelMapping[name] = sName;
return name;
}
void UniqueNameMapper::popLabelName(Name name) {
assert(labelStack.back() == name);
labelStack.pop_back();
labelMappings[reverseLabelMapping[name]].pop_back();
}
Name UniqueNameMapper::sourceToUnique(Name sName) {
// DELEGATE_CALLER_TARGET is a fake target used to denote delegating to the
// caller. We do not need to modify it, as it has no definitions, only uses.
if (sName == DELEGATE_CALLER_TARGET) {
return DELEGATE_CALLER_TARGET;
}
if (labelMappings.find(sName) == labelMappings.end()) {
throw ParseException("bad label in sourceToUnique: " + sName.toString());
}
if (labelMappings[sName].empty()) {
throw ParseException("use of popped label in sourceToUnique: " +
sName.toString());
}
return labelMappings[sName].back();
}
Name UniqueNameMapper::uniqueToSource(Name name) {
if (reverseLabelMapping.find(name) == reverseLabelMapping.end()) {
throw ParseException("label mismatch in uniqueToSource");
}
return reverseLabelMapping[name];
}
void UniqueNameMapper::clear() {
labelStack.clear();
labelMappings.clear();
reverseLabelMapping.clear();
}
namespace {
struct DuplicateNameScanner
: public PostWalker<DuplicateNameScanner,
UnifiedExpressionVisitor<DuplicateNameScanner>> {
// Whether things are ok. If not, we need to fix things up.
bool ok = true;
// It is rare to have many nested names in general, so track the seen names
// as we go in an efficient way.
SmallUnorderedSet<Name, 10> seen;
void visitExpression(Expression* curr) {
BranchUtils::operateOnScopeNameDefs(curr, [&](Name& name) {
if (!name.is()) {
return;
}
// TODO: This could be done in a single insert operation that checks
// whether we actually inserted, if we improved
// SmallSetBase::insert to return a value like std::set does.
if (seen.count(name)) {
// A name has been defined more than once; we'll need to fix that.
ok = false;
} else {
seen.insert(name);
}
});
}
};
} // anonymous namespace
void UniqueNameMapper::uniquify(Expression* curr) {
// First, scan the code to see if anything needs to be fixed up, since in the
// common case nothing needs fixing, and we can verify that very quickly.
DuplicateNameScanner scanner;
scanner.walk(curr);
if (scanner.ok) {
return;
}
struct Walker
: public ControlFlowWalker<Walker, UnifiedExpressionVisitor<Walker>> {
UniqueNameMapper mapper;
static void doPreVisitControlFlow(Walker* self, Expression** currp) {
BranchUtils::operateOnScopeNameDefs(*currp, [&](Name& name) {
if (name.is()) {
name = self->mapper.pushLabelName(name);
}
});
}
static void doPostVisitControlFlow(Walker* self, Expression** currp) {
BranchUtils::operateOnScopeNameDefs(*currp, [&](Name& name) {
if (name.is()) {
self->mapper.popLabelName(name);
}
});
}
void visitExpression(Expression* curr) {
BranchUtils::operateOnScopeNameUses(curr, [&](Name& name) {
if (name.is()) {
name = mapper.sourceToUnique(name);
}
});
}
} walker;
walker.walk(curr);
}
} // namespace wasm
|