/third_party/pcre2/pcre2/src/ |
H A D | pcre2_jit_test.c | 126 #define MU (PCRE2_MULTILINE | PCRE2_UTF) macro 161 { MU, A, 0, 0, "AbC", "AbAbC" }, 162 { MU, A, 0, 0, "ACCEPT", "AACACCACCEACCEPACCEPTACCEPTT" }, 169 { MU, A, 0, 0, "[^a]", "aaa\xc3\xa1#Ab" }, 171 { MU, A, 0, 0, "\\W(\\W)?\\w", "\r\n+bc" }, 172 { MU, A, 0, 0, "\\W(\\W)?\\w", "\n\r+bc" }, 173 { MU, A, 0, 0, "\\W(\\W)?\\w", "\r\r+bc" }, 174 { MU, A, 0, 0, "\\W(\\W)?\\w", "\n\n+bc" }, 175 { MU, A, 0, 0, "[axd]", "sAXd" }, 178 { MU, [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/ |
H A D | Core.h | 341 raw_ostream &operator<<(raw_ostream &OS, const MaterializationUnit &MU); 517 void replace(std::unique_ptr<MaterializationUnit> MU); 874 Error define(std::unique_ptr<MaterializationUnitType> &&MU); 884 Error define(std::unique_ptr<MaterializationUnitType> &MU); 924 UnmaterializedInfo(std::unique_ptr<MaterializationUnit> MU) in UnmaterializedInfo() 925 : MU(std::move(MU)) {} in UnmaterializedInfo() 927 std::unique_ptr<MaterializationUnit> MU; member 1004 Error defineImpl(MaterializationUnit &MU); 1033 void replace(std::unique_ptr<MaterializationUnit> MU); 1196 dispatchMaterialization(JITDylib &JD, std::unique_ptr<MaterializationUnit> MU) dispatchMaterialization() argument 1215 materializeOnCurrentThread(JITDylib &JD, std::unique_ptr<MaterializationUnit> MU) materializeOnCurrentThread() argument 1253 define(std::unique_ptr<MaterializationUnitType> &&MU) define() argument 1269 define(std::unique_ptr<MaterializationUnitType> &MU) define() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/ |
H A D | Core.cpp | 216 raw_ostream &operator<<(raw_ostream &OS, const MaterializationUnit &MU) { in operator <<() argument 217 OS << "MU@" << &MU << " (\"" << MU.getName() << "\""; in operator <<() 219 OS << ", " << MU.getSymbols(); in operator <<() 503 std::unique_ptr<MaterializationUnit> MU) { in replace() 504 for (auto &KV : MU->getSymbols()) in replace() 508 dbgs() << "In " << JD.getName() << " replacing symbols with " << *MU in replace() 512 JD.replace(std::move(MU)); in replace() 569 assert(Symbols.count(Name) && "Symbol is not part of this MU"); in discard() 502 replace( std::unique_ptr<MaterializationUnit> MU) replace() argument 865 replace(std::unique_ptr<MaterializationUnit> MU) replace() argument [all...] |
H A D | LLJIT.cpp | 160 [this](JITDylib &JD, std::unique_ptr<MaterializationUnit> MU) { in LLJIT() 162 auto SharedMU = std::shared_ptr<MaterializationUnit>(std::move(MU)); in LLJIT()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | MemorySSA.cpp | 316 const MemoryUseOrDef *MU, in instructionClobbersQuery() 322 return instructionClobbersQuery(MD, MemoryLocation(), MU->getMemoryInst(), in instructionClobbersQuery() 324 return instructionClobbersQuery(MD, UseMLOC.getLoc(), MU->getMemoryInst(), in instructionClobbersQuery() 328 // Return true when MD may alias MU, return false otherwise. 329 bool MemorySSAUtil::defClobbersUseOrDef(MemoryDef *MD, const MemoryUseOrDef *MU, in defClobbersUseOrDef() argument 331 return instructionClobbersQuery(MD, MU, MemoryLocOrCall(MU), AA).IsClobber; in defClobbersUseOrDef() 460 if (const auto *MU = dyn_cast<MemoryUse>(MA)) { in checkClobberSanity() 461 (void)MU; in checkClobberSanity() 462 assert (MU in checkClobberSanity() 315 instructionClobbersQuery(MemoryDef *MD, const MemoryUseOrDef *MU, const MemoryLocOrCall &UseMLOC, AliasAnalysisType &AA) instructionClobbersQuery() argument 1351 auto *MU = dyn_cast<MemoryUse>(&MA); optimizeUsesInBlock() local [all...] |
H A D | MemorySSAUpdater.cpp | 243 void MemorySSAUpdater::insertUse(MemoryUse *MU, bool RenameUses) { in insertUse() argument 245 MU->setDefiningAccess(getPreviousDef(MU)); in insertUse() 261 auto *Defs = MSSA->getBlockDefs(MU->getBlock()); in insertUse() 269 BasicBlock *StartBlock = MU->getBlock(); in insertUse() 278 MSSA->renamePass(MU->getBlock(), FirstDef, Visited); in insertUse()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
H A D | MemorySSA.h | 431 if (auto *MU = dyn_cast<MemoryUse>(MUD)) in op_begin() 432 return OperandTraits<MemoryUse>::op_begin(MU); in op_begin() 437 if (auto *MU = dyn_cast<MemoryUse>(MUD)) in op_end() 438 return OperandTraits<MemoryUse>::op_end(MU); in op_end() 443 if (const auto *MU = dyn_cast<MemoryUse>(MUD)) in operands() 444 return OperandTraits<MemoryUse>::operands(MU); in operands() 907 static bool defClobbersUseOrDef(MemoryDef *MD, const MemoryUseOrDef *MU,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
H A D | LICM.cpp | 155 static bool pointerInvalidatedByLoopWithMSSA(MemorySSA *MSSA, MemoryUse *MU, 1247 if (const auto *MU = dyn_cast<MemoryUse>(&MA)) { in canSinkOrHoistInst() 1248 auto *MD = MU->getDefiningAccess(); in canSinkOrHoistInst() 1256 if (!Flags->IsSink && !MSSA->dominates(SIMD, MU)) in canSinkOrHoistInst() 2297 static bool pointerInvalidatedByLoopWithMSSA(MemorySSA *MSSA, MemoryUse *MU, in pointerInvalidatedByLoopWithMSSA() argument 2305 Source = MU->getDefiningAccess(); in pointerInvalidatedByLoopWithMSSA() 2307 Source = MSSA->getSkipSelfWalker()->getClobberingMemoryAccess(MU); in pointerInvalidatedByLoopWithMSSA() 2337 if (MU->getBlock() != MD->getBlock() || in pointerInvalidatedByLoopWithMSSA() 2338 !MSSA->locallyDominates(MD, MU)) in pointerInvalidatedByLoopWithMSSA()
|
H A D | GVNHoist.cpp | 397 if (const MemoryUse *MU = dyn_cast<MemoryUse>(&MA)) { in hasMemoryUse() 398 Instruction *Insn = MU->getMemoryInst(); in hasMemoryUse() 400 // Do not check whether MU aliases Def when MU occurs after OldPt. in hasMemoryUse() 404 // Do not check whether MU aliases Def when MU occurs before NewPt. in hasMemoryUse() 412 if (MemorySSAUtil::defClobbersUseOrDef(Def, MU, *AA)) in hasMemoryUse()
|
/third_party/node/lib/internal/debugger/ |
H A D | inspect_repl.js | 455 const MU = StringFromCharCode(956); 456 return stylize(`[Profile ${endTime - startTime}${MU}s]`, 'special');
|
/third_party/libphonenumber/javascript/i18n/phonenumbers/ |
H A D | demo-compiled.js | 57 86:["CN"],90:["TR"],91:["IN"],92:["PK"],93:["AF"],94:["LK"],95:["MM"],98:["IR"],211:["SS"],212:["MA","EH"],213:["DZ"],216:["TN"],218:["LY"],220:["GM"],221:["SN"],222:["MR"],223:["ML"],224:["GN"],225:["CI"],226:["BF"],227:["NE"],228:["TG"],229:["BJ"],230:["MU"],231:["LR"],232:["SL"],233:["GH"],234:["NG"],235:["TD"],236:["CF"],237:["CM"],238:["CV"],239:["ST"],240:["GQ"],241:["GA"],242:["CG"],243:["CD"],244:["AO"],245:["GW"],246:["IO"],247:["AC"],248:["SC"],249:["SD"],250:["RW"],251:["ET"],252:["SO"], 325 "50037123"],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],[,,"3550\\d{4}",,,,"35501234"],"MT",356,"00",,,,,,,,[[,"(\\d{4})(\\d{4})","$1 $2",["[2357-9]"]]],,[,,"7117\\d{4}",,,,"71171234"],,,[,,,,,,,,,[-1]],[,,"501\\d{5}",,,,"50112345"],,,[,,,,,,,,,[-1]]],MU:[,[,,"(?:[57]|8\\d\\d)\\d{7}|[2-468]\\d{6}",,,,,,,[7,8,10]],[,,"(?:2(?:[0346-8]\\d|1[0-7])|4(?:[013568]\\d|2[4-8])|54(?:[3-5]\\d|71)|6\\d\\d|8(?:14|3[129]))\\d{4}",,,,"54480123",,,[7,8]],[,,"5(?:4(?:2[1-389]|7[1-9])|87[15-8])\\d{4}|(?:5(?:2[5-9]|4[3-689]|[57]\\d|8[0-689]|9[0-8])|7(?:0[0-3]|3[013]))\\d{5}", 326 ,,,"52512345",,,[8]],[,,"802\\d{7}|80[0-2]\\d{4}",,,,"8001234",,,[7,10]],[,,"30\\d{5}",,,,"3012345",,,[7]],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],[,,"3(?:20|9\\d)\\d{4}",,,,"3201234",,,[7]],"MU",230,"0(?:0|[24-7]0|3[03])",,,,,,"020",,[[,"(\\d{3})(\\d{4})","$1 $2",["[2-46]|8[013]"]],[,"(\\d{4})(\\d{4})","$1 $2",["[57]"]],[,"(\\d{5})(\\d{5})","$1 $2",["8"]]],,[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]]],MV:[,[,,"(?:800|9[0-57-9]\\d)\\d{7}|[34679]\\d{6}",,,,,,,[7,10]],[,,"(?:3(?:0[0-3]|3[0-59])|6(?:[58][024689]|6[024-68]|7[02468]))\\d{4}", 609 ,,,,,,[3,6]],,,[,,"11(?:2|6\\d{3})",,,,"112"],[,,,,,,,,,[-1]],,,,"MT",,,,,,,,,,,,,,,,,,[,,"112",,,,"112",,,[3]],,[,,"11(?:2|6(?:000|1(?:11|23)))",,,,"112"],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],,[,,,,,,,,,[-1]]],MU:[,[,,"[189]\\d{2,4}",,,,,,,[3,4,5]],,,[,,"11[45]|99[59]",,,,"114",,,[3]],[,,,,,,,,,[-1]],,,,"MU",,,,,,,,,,,,,,,,,,[,,"11[45]|99[59]",,,,"114",,,[3]],,[,,"1\\d{2,4}|(?:8\\d\\d|99)\\d",,,,"100"],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],,[,,,,,,,,,[-1]]],MV:[,[,,"[14]\\d{2,3}",,,,,,,[3,4]],,,[,,"1(?:02|1[89])",
|