HomeSort by: relevance | last modified time | path
    Searched defs:WE (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblySortRegion.cpp 19 const auto *WE = WEI.getExceptionFor(MBB);
20 if (!ML && !WE)
22 // We determine subregion relationship by domination of their headers, i.e.,
27 // dominated by its header. So here we should use
28 // WE->contains(ML->getHeader()), but not ML->contains(WE->getHeader()).
29 if ((ML && !WE) || (ML && WE && WE->contains(ML->getHeader()))) {
37 if (ExceptionMap.count(WE))
    [all...]
WebAssemblyExceptionInfo.cpp 86 auto WE = std::make_unique<WebAssemblyException>(EHPad);
87 discoverAndMapException(WE.get(), MDT, MDF);
88 Exceptions.push_back(std::move(WE));
107 // We group exceptions in this analysis simply by including all BBs dominated
113 // Here we extract those unwind destinations from their (incorrect) parent
115 // children of the parent exception, so we have to traverse the parent chain.
117 // We should traverse BBs in the preorder of the dominator tree, because
120 // and A's unwind destination is B and B's is C. When we visit B before A, we
152 // subexception of Exception A, and we fix it by taking Exception B out o
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/COFF/
Reader.cpp 138 const coff_aux_weak_external *WE = SymRef.getWeakExternal();
145 } else if (WE) {
147 // until we've added them to the Object, which assigns the final
149 Sym.WeakTargetSymbolId = WE->TagIndex;
205 // Only copying the few fields from the bigobj header that we need
Writer.cpp 79 // Check that we actually have got AuxData to match the weak symbol target
80 // we want to set. Only >= 1 would be required, but only == 1 makes sense.
82 coff_aux_weak_external *WE =
89 WE->TagIndex = Target->RawIndex;
155 // For file symbols, we need to know the output file's symbol size to be
218 // any longer. (We don't calculate a new one.)
352 // opaque auxillary symbol struct and we leave padding at the end of each
  /src/libexec/getty/
gettytab.h 39 const char *defalt; /* value we find by looking in defaults */
40 char *value; /* value that we find there */
45 long defalt; /* number we find in defaults */
46 long value; /* number we find there */
47 int set; /* we actually got this one */
55 char set; /* we found it */
87 #define WE gettystrs[22].value
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
ValueMapper.cpp 307 /// uniqued node we find that isn't yet in \c G. \c I is always advanced to
347 // If we have a materializer and it can materialize a value, use that.
400 // be mapped via mapValue (apart from constants when we have no
408 // If we cannot map the value, set the argument as undef.
417 // If this is a module-level metadata and we know that nothing at the module
460 // Otherwise, we have some other constant to remap. Start by checking to see
483 // Okay, we need to create a new constant. We've already processed some or
528 // dummy basic block for now, and replace it once we've materialized all
671 auto &WE = Worklist.back()
    [all...]

Completed in 25 milliseconds