/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | MemorySSA.h | 238 static void deleteNode(MemoryAccess *MA) { MA->deleteValue(); } 241 inline raw_ostream &operator<<(raw_ostream &OS, const MemoryAccess &MA) { 242 MA.print(OS); 265 static bool classof(const Value *MA) { 266 return MA->getValueID() == MemoryUseVal || MA->getValueID() == MemoryDefVal; 325 static bool classof(const Value *MA) { 326 return MA->getValueID() == MemoryUseVal; 389 static bool classof(const Value *MA) { 390 return MA->getValueID() == MemoryDefVal; 393 void setOptimized(MemoryAccess *MA) { [all …]
|
H A D | MemorySSAUpdater.h | 225 if (MemoryAccess *MA = MSSA->getMemoryAccess(I)) variable 226 removeMemoryAccess(MA, OptimizePhis);
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | MemorySSA.cpp | 105 if (MemoryAccess *MA = MSSA->getMemoryAccess(BB)) in emitBasicBlockStartAnnot() local 106 OS << "; " << *MA << "\n"; in emitBasicBlockStartAnnot() 111 if (MemoryAccess *MA = MSSA->getMemoryAccess(I)) in emitInstructionAnnot() local 112 OS << "; " << *MA << "\n"; in emitInstructionAnnot() 129 if (MemoryAccess *MA = MSSA->getMemoryAccess(BB)) in emitBasicBlockStartAnnot() local 130 OS << "; " << *MA << "\n"; in emitBasicBlockStartAnnot() 135 if (MemoryAccess *MA = MSSA->getMemoryAccess(I)) { in emitInstructionAnnot() local 136 MemoryAccess *Clobber = Walker->getClobberingMemoryAccess(MA, BAA); in emitInstructionAnnot() 137 OS << "; " << *MA; in emitInstructionAnnot() 422 for (const auto *MA : def_chain(MAP.first)) { in checkClobberSanity() local [all …]
|
H A D | MemorySSAUpdater.cpp | 137 MemoryAccess *MemorySSAUpdater::getPreviousDef(MemoryAccess *MA) { in getPreviousDef() argument 138 if (auto *LocalResult = getPreviousDefInBlock(MA)) in getPreviousDef() 141 return getPreviousDefRecursive(MA->getBlock(), CachedPreviousDef); in getPreviousDef() 147 MemoryAccess *MemorySSAUpdater::getPreviousDefInBlock(MemoryAccess *MA) { in getPreviousDefInBlock() argument 148 auto *Defs = MSSA->getWritableBlockDefs(MA->getBlock()); in getPreviousDefInBlock() 153 if (!isa<MemoryUse>(MA)) { in getPreviousDefInBlock() 154 auto Iter = MA->getReverseDefsIterator(); in getPreviousDefInBlock() 160 auto End = MSSA->getWritableBlockAccesses(MA->getBlock())->rend(); in getPreviousDefInBlock() 161 for (auto &U : make_range(++MA->getReverseIterator(), End)) in getPreviousDefInBlock() 557 MemoryAccess *MA = nullptr; in onlySingleValue() local [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | MoveAutoInit.cpp | 75 MemoryAccess *MA = WorkList.pop_back_val(); in usersDominator() 76 if (!Visited.insert(MA).second) in usersDominator() local 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/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/ |
H A D | AMDGPUMemoryUtils.cpp | 343 MemoryAccess *MA = WorkList.pop_back_val(); in isClobberedInFunction() local 344 if (!Visited.insert(MA).second) in isClobberedInFunction() 347 if (MSSA->isLiveOnEntryDef(MA)) in isClobberedInFunction() 350 if (MemoryDef *Def = dyn_cast<MemoryDef>(MA)) { in isClobberedInFunction() 363 const MemoryPhi *Phi = cast<MemoryPhi>(MA); in isClobberedInFunction()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | NewGVN.cpp | 743 CongruenceClass *createMemoryClass(MemoryAccess *MA) { in createMemoryClass() argument 745 CC->setMemoryLeader(MA); in createMemoryClass() 749 CongruenceClass *ensureLeaderOfMemoryClass(MemoryAccess *MA) { in ensureLeaderOfMemoryClass() argument 750 auto *CC = getMemoryClass(MA); in ensureLeaderOfMemoryClass() 751 if (CC->getMemoryLeader() != MA) in ensureLeaderOfMemoryClass() 752 CC = createMemoryClass(MA); in ensureLeaderOfMemoryClass() 809 CongruenceClass *getMemoryClass(const MemoryAccess *MA) const; 877 unsigned InstrToDFSNum(const MemoryAccess *MA) const { in InstrToDFSNum() 878 return MemoryToDFSNum(MA); in InstrToDFSNum() 886 unsigned MemoryToDFSNum(const Value *MA) const { in MemoryToDFSNum() [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 | 299 for (const MemoryAccess &MA : in accessedBetween() local 301 Instruction *I = cast<MemoryUseOrDef>(MA).getMemoryInst(); in accessedBetween() 608 if (MemoryUseOrDef *MA = MSSAU->getMemorySSA()->getMemoryAccess(P)) { in moveUp() local 609 MemInsertPoint = cast<MemoryUseOrDef>(--MA->getIterator()); in moveUp() 614 if (MemoryUseOrDef *MA = MSSAU->getMemorySSA()->getMemoryAccess(&I)) { in moveUp() local 615 MemInsertPoint = MA; in moveUp() 626 if (MemoryUseOrDef *MA = MSSAU->getMemorySSA()->getMemoryAccess(I)) { in moveUp() local 627 MSSAU->moveAfter(MA, MemInsertPoint); in moveUp() 628 MemInsertPoint = MA; in moveUp() 1744 MemoryUseOrDef *MA = MSSA->getMemoryAccess(M); in processMemCpy() local [all …]
|
H A D | DeadStoreElimination.cpp | 880 MemoryAccess *MA = MSSA.getMemoryAccess(&I); in DSEState() local 881 if (I.mayThrow() && !MA) in DSEState() 884 auto *MD = dyn_cast_or_null<MemoryDef>(MA); in DSEState() 909 auto *MA = cast<MemoryAccess>(U.getUser()); in pushMemUses() local 910 if (Visited.insert(MA).second) in pushMemUses() 911 WorkList.push_back(MA); in pushMemUses() 1714 MemoryAccess *MA = MSSA.getMemoryAccess(DeadInst); in deleteDeadInstruction() local 1715 bool IsMemDef = MA && isa<MemoryDef>(MA); in deleteDeadInstruction() 1716 if (MA) { in deleteDeadInstruction() 1718 auto *MD = cast<MemoryDef>(MA); in deleteDeadInstruction() [all …]
|
H A D | LICM.cpp | 395 for (const auto &MA : *Accesses) { in SinkAndHoistLICMFlags() 396 (void)MA; in SinkAndHoistLICMFlags() 1149 MemoryUseOrDef *MA) { in getClobberingMemoryAccess() argument 1152 return MA->getDefiningAccess(); in getClobberingMemoryAccess() 1155 MSSA.getSkipSelfWalker()->getClobberingMemoryAccess(MA, BAA); in getClobberingMemoryAccess() 1300 for (const auto &MA : *Accesses) in canSinkOrHoistInst() 1301 if (const auto *MU = dyn_cast<MemoryUse>(&MA)) { in canSinkOrHoistInst() 1313 } else if (const auto *MD = dyn_cast<MemoryDef>(&MA)) { in canSinkOrHoistInst() 2402 for (const auto &MA : *Accesses) in pointerInvalidatedByBlock() 2403 if (const auto *MD = dyn_cast<MemoryDef>(&MA)) in pointerInvalidatedByBlock()
|
H A D | ScalarizeMaskedMemIntrin.cpp | 1026 MaybeAlign MA = in optimizeCallInst() local 1029 Align Alignment = DL.getValueOrABITypeAlignment(MA, in optimizeCallInst() 1038 MaybeAlign MA = in optimizeCallInst() local 1041 Align Alignment = DL.getValueOrABITypeAlignment(MA, in optimizeCallInst()
|
/freebsd/sys/contrib/device-tree/src/arm64/qcom/ |
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 */
|
H A D | sa8155p-adp.dts | 504 drive-strength = <16>; /* 16 MA */ 510 drive-strength = <16>; /* 16 MA */ 516 drive-strength = <16>; /* 16 MA */ 524 drive-strength = <2>; /* 2 MA */ 530 drive-strength = <2>; /* 2 MA */ 536 drive-strength = <2>; /* 2 MA */
|
/freebsd/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/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | RDFGraph.cpp | 481 void CodeNode::addMemberAfter(Node MA, Node NA, const DataFlowGraph &G) { in addMemberAfter() argument 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() [all …]
|
/freebsd/share/doc/papers/relengr/ |
H A D | ref.bib | 25 %C Reading, MA
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVGatherScatterLowering.cpp | 492 MaybeAlign MA = cast<ConstantInt>(AlignOp)->getMaybeAlignValue(); in tryCreateStridedLoadStore() local 494 if (!MA || !TLI->isLegalStridedLoadStore(DataTypeVT, *MA)) in tryCreateStridedLoadStore()
|
/freebsd/sys/dev/vmware/pvscsi/ |
H A D | LICENSE | 48 Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
|
/freebsd/sys/dev/vmware/vmci/ |
H A D | LICENSE | 48 Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
|
/freebsd/crypto/libecc/ |
H A D | LICENSE | 23 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
/freebsd/sys/contrib/device-tree/src/arm64/cavium/ |
H A D | thunder-88xx.dts | 24 * MA 02110-1301 USA
|
/freebsd/libexec/bootpd/ |
H A D | Announce | 64 508-256-1300 Chelmsford, MA 01824-2820
|