| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | MemorySSA.h | 237 static void deleteNode(MemoryAccess *MA) { MA->deleteValue(); } 241 MA.print(OS); 265 return MA->getValueID() == MemoryUseVal || MA->getValueID() == MemoryDefVal; 393 setOperand(1, MA); 394 OptimizedID = MA->getID(); 683 MD->setOptimized(MA); 1324 def_chain_iterator(T MA) : MA(MA) {} 1332 MA = MUD->getOptimized(); 1336 MA = nullptr; 1342 bool operator==(const def_chain_iterator &O) const { return MA == O.MA; } [all …]
|
| H A D | MemorySSAUpdater.h | 220 if (MemoryAccess *MA = MSSA->getMemoryAccess(I)) variable 221 removeMemoryAccess(MA, OptimizePhis);
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | MemorySSA.cpp | 136 OS << "; " << *MA; in emitInstructionAnnot() 1588 *Accesses, [](const MemoryAccess &MA) { return isa<MemoryPhi>(MA); }); in insertIntoListsForBlock() argument 1593 *Defs, [](const MemoryAccess &MA) { return isa<MemoryPhi>(MA); }); in insertIntoListsForBlock() argument 1811 if (VMA->second == MA) in removeFromLookups() 1828 Defs->remove(*MA); in removeFromLists() 1838 Accesses->erase(MA); in removeFromLists() 1992 assert((!MA || (AL && (isa<MemoryUse>(MA) || DL))) && in verifyOrderingDominationAndDefUses() 1996 if (MA) { in verifyOrderingDominationAndDefUses() 2011 verifyUseInDefs(MA->getDefiningAccess(), MA); in verifyOrderingDominationAndDefUses() 2495 return MA; in getClobberingMemoryAccessBase() [all …]
|
| H A D | MemorySSAUpdater.cpp | 153 if (!isa<MemoryUse>(MA)) { in getPreviousDefInBlock() 557 MemoryAccess *MA = nullptr; in onlySingleValue() local 560 if (!MA) in onlySingleValue() 562 else if (MA != Arg) in onlySingleValue() 565 return MA; in onlySingleValue() 1302 if (!isa<MemoryUse>(MA) && !MA->use_empty()) { in removeMemoryAccess() 1311 if (MA->hasValueHandle()) in removeMemoryAccess() 1317 while (!MA->use_empty()) { in removeMemoryAccess() 1330 MSSA->removeFromLookups(MA); in removeMemoryAccess() 1331 MSSA->removeFromLists(MA); in removeMemoryAccess() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/ |
| H A D | AMDGPUMemoryUtils.cpp | 127 MemoryAccess *MA = WorkList.pop_back_val(); in isClobberedInFunction() local 128 if (!Visited.insert(MA).second) in isClobberedInFunction() 131 if (MSSA->isLiveOnEntryDef(MA)) in isClobberedInFunction() 134 if (MemoryDef *Def = dyn_cast<MemoryDef>(MA)) { in isClobberedInFunction() 147 const MemoryPhi *Phi = cast<MemoryPhi>(MA); in isClobberedInFunction()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | MoveAutoInit.cpp | 75 MemoryAccess *MA = WorkList.pop_back_val(); in usersDominator() local 76 if (!Visited.insert(MA).second) in usersDominator() 83 if (auto *M = dyn_cast<MemoryUseOrDef>(MA)) { in usersDominator() 99 auto UsersAsMemoryAccesses = map_range(MA->users(), AsMemoryAccess); in usersDominator()
|
| H A D | Evaluator.cpp | 159 MutableAggregate *MA = new MutableAggregate(Ty); in makeMutable() local 160 MA->Elements.reserve(NumElements); in makeMutable() 162 MA->Elements.push_back(C->getAggregateElement(I)); in makeMutable() 163 Val = MA; in makeMutable()
|
| H A D | AssumeBundleBuilder.cpp | 252 MaybeAlign MA) { in addAccessedPtr() 263 if (MA.valueOrOne() > 1) in addAccessedPtr() 264 addKnowledge({Attribute::Alignment, MA.valueOrOne().value(), Pointer}); in addAccessedPtr()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | NewGVN.cpp | 741 CC->setMemoryLeader(MA); in createMemoryClass() 746 auto *CC = getMemoryClass(MA); in ensureLeaderOfMemoryClass() 748 CC = createMemoryClass(MA); in ensureLeaderOfMemoryClass() 874 return MemoryToDFSNum(MA); in InstrToDFSNum() 883 assert(isa<MemoryAccess>(MA) && in MemoryToDFSNum() 885 return isa<MemoryUseOrDef>(MA) in MemoryToDFSNum() 1343 auto *CC = getMemoryClass(MA); in lookupMemoryLeader() 2101 if (isa<MemoryUse>(MA)) in markMemoryUsersTouched() 2405 markMemoryUsersTouched(MA); in performCongruenceFinding() 2545 if (MA && !isa<MemoryUse>(MA)) { in processOutgoingEdges() [all …]
|
| H A D | LoopInstSimplify.cpp | 135 if (MemoryAccess *MA = MSSA->getMemoryAccess(&I)) in simplifyLoopInst() local 137 MA->replaceAllUsesWith(ReplacementMA); in simplifyLoopInst()
|
| H A D | MemCpyOptimizer.cpp | 295 for (const MemoryAccess &MA : in accessedBetween() local 297 Instruction *I = cast<MemoryUseOrDef>(MA).getMemoryInst(); in accessedBetween() 603 if (MemoryUseOrDef *MA = MSSAU->getMemorySSA()->getMemoryAccess(P)) { in moveUp() local 604 MemInsertPoint = cast<MemoryUseOrDef>(--MA->getIterator()); in moveUp() 610 MemInsertPoint = MA; in moveUp() 622 MSSAU->moveAfter(MA, MemInsertPoint); in moveUp() 623 MemInsertPoint = MA; in moveUp() 1675 MemoryUseOrDef *MA = MSSA->getMemoryAccess(M); in processMemCpy() local 1676 if (!MA) in processMemCpy() 1688 auto *LastDef = cast<MemoryDef>(MA); in processMemCpy() [all …]
|
| H A D | DeadStoreElimination.cpp | 878 MemoryAccess *MA = MSSA.getMemoryAccess(&I); in DSEState() local 879 if (I.mayThrow() && !MA) in DSEState() 882 auto *MD = dyn_cast_or_null<MemoryDef>(MA); in DSEState() 1717 MemoryAccess *MA = MSSA.getMemoryAccess(DeadInst); in deleteDeadInstruction() local 1718 bool IsMemDef = MA && isa<MemoryDef>(MA); in deleteDeadInstruction() 1719 if (MA) { in deleteDeadInstruction() 1721 auto *MD = cast<MemoryDef>(MA); in deleteDeadInstruction() 1735 Updater.removeMemoryAccess(MA); in deleteDeadInstruction()
|
| H A D | ScalarizeMaskedMemIntrin.cpp | 947 MaybeAlign MA = in optimizeCallInst() local 950 Align Alignment = DL.getValueOrABITypeAlignment(MA, in optimizeCallInst() 959 MaybeAlign MA = in optimizeCallInst() local 962 Align Alignment = DL.getValueOrABITypeAlignment(MA, in optimizeCallInst()
|
| H A D | LICM.cpp | 386 for (const auto &MA : *Accesses) { in SinkAndHoistLICMFlags() 387 (void)MA; in SinkAndHoistLICMFlags() 1138 MemoryUseOrDef *MA) { in getClobberingMemoryAccess() argument 1141 return MA->getDefiningAccess(); in getClobberingMemoryAccess() 1144 MSSA.getSkipSelfWalker()->getClobberingMemoryAccess(MA, BAA); in getClobberingMemoryAccess() 1289 for (const auto &MA : *Accesses) in canSinkOrHoistInst() 1290 if (const auto *MU = dyn_cast<MemoryUse>(&MA)) { in canSinkOrHoistInst() 1302 } else if (const auto *MD = dyn_cast<MemoryDef>(&MA)) { in canSinkOrHoistInst() 2387 for (const auto &MA : *Accesses) in pointerInvalidatedByBlock() 2388 if (const auto *MD = dyn_cast<MemoryDef>(&MA)) in pointerInvalidatedByBlock()
|
| /freebsd-14.2/sys/contrib/device-tree/src/arm64/qcom/ |
| H A D | sa8155p-adp.dts | 496 drive-strength = <16>; /* 16 MA */ 502 drive-strength = <16>; /* 16 MA */ 508 drive-strength = <16>; /* 16 MA */ 515 drive-strength = <2>; /* 2 MA */ 523 drive-strength = <2>; /* 2 MA */ 529 drive-strength = <2>; /* 2 MA */ 535 drive-strength = <2>; /* 2 MA */ 542 drive-strength = <2>; /* 2 MA */
|
| H A D | msm8996-pins.dtsi | 295 drive-strength = <16>; /* 16 MA */ 303 drive-strength = <2>; /* 2 MA */ 311 drive-strength = <10>; /* 10 MA */ 319 drive-strength = <2>; /* 2 MA */ 327 drive-strength = <10>; /* 10 MA */ 335 drive-strength = <2>; /* 2 MA */
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | Alignment.h | 316 inline std::string DebugStr(const MaybeAlign &MA) { in DebugStr() argument 317 if (MA) in DebugStr() 318 return std::to_string(MA->value()); in DebugStr()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | RDFGraph.cpp | 482 MA.Addr->append(NA); in addMemberAfter() 483 if (CodeData.LastM == MA.Id) in addMemberAfter() 489 Node MA = getFirstMember(G); in removeMember() local 490 assert(MA.Id != 0); in removeMember() 493 if (MA.Id == NA.Id) { in removeMember() 494 if (CodeData.LastM == MA.Id) { in removeMember() 499 CodeData.FirstM = MA.Addr->getNext(); in removeMember() 504 while (MA.Addr != this) { in removeMember() 505 NodeId MX = MA.Addr->getNext(); in removeMember() 511 CodeData.LastM = MA.Id; in removeMember() [all …]
|
| /freebsd-14.2/share/doc/papers/relengr/ |
| H A D | ref.bib | 25 %C Reading, MA
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVGatherScatterLowering.cpp | 473 MaybeAlign MA = cast<ConstantInt>(AlignOp)->getMaybeAlignValue(); in tryCreateStridedLoadStore() local 475 if (!MA || !TLI->isLegalStridedLoadStore(DataTypeVT, *MA)) in tryCreateStridedLoadStore()
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/usb/ |
| H A D | renesas,rzv2m-usb3drd.yaml | 13 The RZ/V2{M, MA} USB3.1 DRD module supports the following functions
|
| /freebsd-14.2/sys/dev/vmware/pvscsi/ |
| H A D | LICENSE | 48 Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
|
| /freebsd-14.2/sys/dev/vmware/vmci/ |
| H A D | LICENSE | 48 Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
|
| /freebsd-14.2/sys/contrib/device-tree/src/arm64/cavium/ |
| H A D | thunder-88xx.dts | 24 * MA 02110-1301 USA
|
| /freebsd-14.2/libexec/bootpd/ |
| H A D | Announce | 64 508-256-1300 Chelmsford, MA 01824-2820
|