Searched refs:MUD (Results 1 - 9 of 9) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | MemorySSA.cpp | 133 MemoryLocOrCall(MemoryUseOrDef *MUD) in MemoryLocOrCall() argument 134 : MemoryLocOrCall(MUD->getMemoryInst()) {} in MemoryLocOrCall() 135 MemoryLocOrCall(const MemoryUseOrDef *MUD) in MemoryLocOrCall() argument 136 : MemoryLocOrCall(MUD->getMemoryInst()) {} in MemoryLocOrCall() 1044 if (auto *MUD = dyn_cast<MemoryUseOrDef>(MA)) 1045 MUD->resetOptimized(); 1080 if (auto *MUD = dyn_cast<MemoryUseOrDef>(MA)) 1081 MUD->resetOptimized(); 1121 if (MemoryUseOrDef *MUD = dyn_cast<MemoryUseOrDef>(&L)) { in renameBlock() 1122 if (MUD in renameBlock() 1528 MemoryUseOrDef *MUD = createNewAccess(&I, &BAA); buildMemorySSA() local [all...] |
H A D | MemorySSAUpdater.cpp | 590 if (const MemoryUseOrDef *MUD = dyn_cast<MemoryUseOrDef>(&MA)) { in cloneUsesAndDefs() 591 Instruction *Insn = MUD->getMemoryInst(); in cloneUsesAndDefs() 597 // simplified, it may be a Use rather than a Def, so we cannot use MUD as in cloneUsesAndDefs() 603 getNewDefiningAccessForClone(MUD->getDefiningAccess(), VMap, in cloneUsesAndDefs() 605 /*Template=*/CloneWasSimplified ? nullptr : MUD, in cloneUsesAndDefs() 1185 auto *MUD = cast<MemoryUseOrDef>(FirstInNew); in moveAllAccesses() local 1187 auto NextIt = ++MUD->getIterator(); in moveAllAccesses() 1191 MSSA->moveTo(MUD, To, MemorySSA::End); in moveAllAccesses() 1192 // Moving MUD from Accs in the moveTo above, may delete Accs, so we need in moveAllAccesses() 1195 MUD in moveAllAccesses() [all...] |
H A D | AliasSetTracker.cpp | 550 if (auto *MUD = dyn_cast<MemoryUseOrDef>(&Access)) in addAllInstructionsInLoopUsingMSSA() 551 add(MUD->getMemoryInst()); in addAllInstructionsInLoopUsingMSSA()
|
H A D | LoopInfo.cpp | 108 if (auto *MUD = MSSAU->getMemorySSA()->getMemoryAccess(I)) 109 MSSAU->moveToPlace(MUD, InsertPt->getParent(),
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
H A D | MemorySSA.h | 430 static Use *op_begin(MemoryUseOrDef *MUD) { in op_begin() 431 if (auto *MU = dyn_cast<MemoryUse>(MUD)) in op_begin() 433 return OperandTraits<MemoryDef>::op_begin(cast<MemoryDef>(MUD)); in op_begin() 436 static Use *op_end(MemoryUseOrDef *MUD) { in op_end() 437 if (auto *MU = dyn_cast<MemoryUse>(MUD)) in op_end() 439 return OperandTraits<MemoryDef>::op_end(cast<MemoryDef>(MUD)); in op_end() 442 static unsigned operands(const MemoryUseOrDef *MUD) { in operands() 443 if (const auto *MU = dyn_cast<MemoryUse>(MUD)) in operands() 445 return OperandTraits<MemoryDef>::operands(cast<MemoryDef>(MUD)); in operands() 1278 if (auto *MUD in operator ++() [all...] |
/third_party/backends/backend/ |
H A D | coolscan.h | 151 int MUD; /* Measurement Unit Divisor (1200 or 2700) */ member
|
H A D | coolscan.c | 483 s->MUD = get_MS_MUD (s->buffer); in coolscan_mode_sense() 484 DBG (10, "\tMode Sensed (MUD is %d)\n", s->MUD); in coolscan_mode_sense() 670 DBG (10, "\twindow width=%d, MUD=%d, brx=%d\n", in coolscan_set_window_param_LS20() 671 s->brx - s->tlx, s->MUD, s->brx); in coolscan_set_window_param_LS20() 802 DBG (10, "\twindow width=%d, MUD=%d, brx=%d\n", in coolscan_set_window_param_LS30() 803 s->brx - s->tlx, s->MUD, s->brx); in coolscan_set_window_param_LS30() 1729 coolscan_mode_sense (s); /* Obtain MUD (Measurement Unit Divisor) */ in coolscan_initialize_values() 2107 /* Get MUD (via mode_sense), internal info (via get_internal_info), and in attach_scanner()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
H A D | BasicBlockUtils.cpp | 280 if (MemoryUseOrDef *MUD = cast_or_null<MemoryUseOrDef>( in MergeBlockIntoPredecessor() 282 MSSAU->moveToPlace(MUD, PredBB, MemorySSA::End); in MergeBlockIntoPredecessor()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
H A D | LICM.cpp | 1074 const auto *MUD = cast<MemoryUseOrDef>(&Acc); in isOnlyMemoryAccess() local 1075 if (MUD->getMemoryInst() != I || NotAPhi++ == 1) in isOnlyMemoryAccess()
|
Completed in 20 milliseconds