Lines Matching refs:WE
58 void setParentException(WebAssemblyException *WE) { ParentException = WE; }
60 bool contains(const WebAssemblyException *WE) const {
61 if (WE == this)
63 if (!WE)
65 return contains(WE->getParentException());
121 raw_ostream &operator<<(raw_ostream &OS, const WebAssemblyException &WE);
128 void discoverAndMapException(WebAssemblyException *WE,
158 WebAssemblyException *WE) {
159 if (!WE) {
163 BBMap[MBB] = WE;
166 void addTopLevelException(std::unique_ptr<WebAssemblyException> WE) {
167 assert(!WE->getParentException() && "Not a top level exception!");
168 TopLevelExceptions.push_back(std::move(WE));