| /openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/ |
| H A D | MemorySSA.h | 237 static void deleteNode(MemoryAccess *MA) { MA->deleteValue(); } 240 inline raw_ostream &operator<<(raw_ostream &OS, const MemoryAccess &MA) { 241 MA.print(OS); 264 static bool classof(const Value *MA) { 265 return MA->getValueID() == MemoryUseVal || MA->getValueID() == MemoryDefVal; 324 static bool classof(const Value *MA) { 325 return MA->getValueID() == MemoryUseVal; 388 static bool classof(const Value *MA) { 389 return MA->getValueID() == MemoryDefVal; 392 void setOptimized(MemoryAccess *MA) { [all …]
|
| H A D | MemorySSAUpdater.h | 223 if (MemoryAccess *MA = MSSA->getMemoryAccess(I)) variable 224 removeMemoryAccess(MA, OptimizePhis);
|
| /openbsd-src/gnu/llvm/llvm/lib/Analysis/ |
| H A D | MemorySSA.cpp | 110 if (MemoryAccess *MA = MSSA->getMemoryAccess(BB)) in emitBasicBlockStartAnnot() local 111 OS << "; " << *MA << "\n"; in emitBasicBlockStartAnnot() 116 if (MemoryAccess *MA = MSSA->getMemoryAccess(I)) in emitInstructionAnnot() local 117 OS << "; " << *MA << "\n"; in emitInstructionAnnot() 134 if (MemoryAccess *MA = MSSA->getMemoryAccess(BB)) in emitBasicBlockStartAnnot() local 135 OS << "; " << *MA << "\n"; in emitBasicBlockStartAnnot() 140 if (MemoryAccess *MA = MSSA->getMemoryAccess(I)) { in emitInstructionAnnot() local 141 MemoryAccess *Clobber = Walker->getClobberingMemoryAccess(MA, BAA); in emitInstructionAnnot() 142 OS << "; " << *MA; in emitInstructionAnnot() 425 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 …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/Utils/ |
| H A D | AMDGPUMemoryUtils.cpp | 167 MemoryAccess *MA = WorkList.pop_back_val(); in isClobberedInFunction() local 168 if (!Visited.insert(MA).second) in isClobberedInFunction() 171 if (MSSA->isLiveOnEntryDef(MA)) in isClobberedInFunction() 174 if (MemoryDef *Def = dyn_cast<MemoryDef>(MA)) { in isClobberedInFunction() 187 const MemoryPhi *Phi = cast<MemoryPhi>(MA); in isClobberedInFunction()
|
| /openbsd-src/share/misc/ |
| H A D | zipcodes | 176 01001:Agawam, MA 177 01002:Amherst, MA 178 01003:Amherst, MA 179 01004:Amherst, MA 180 01005:Barre, MA 181 01007:Belchertown, MA 182 01008:Blandford, MA 183 01009:Bondsville, MA 184 01010:Brimfield, MA 185 01011:Chester, MA [all …]
|
| H A D | na.phone | 284 413:Greenfield:Massachusetts:MA 285 413:Pitsfield:Massachusetts:MA 286 413:Springfield:Massachusetts:MA 404 508:Fall River:Massachusetts:MA 405 508:New Bedford:Massachusetts:MA 406 508:Worcester:Massachusetts:MA 616 617:Boston:Massachusetts:MA 617 617:Cambridge:Massachusetts:MA 618 617:Dorchester:Massachusetts:MA 619 617:Newton:Massachusetts:MA [all...] |
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/ |
| H A D | NewGVN.cpp | 742 CongruenceClass *createMemoryClass(MemoryAccess *MA) { in createMemoryClass() argument 744 CC->setMemoryLeader(MA); in createMemoryClass() 748 CongruenceClass *ensureLeaderOfMemoryClass(MemoryAccess *MA) { in ensureLeaderOfMemoryClass() argument 749 auto *CC = getMemoryClass(MA); in ensureLeaderOfMemoryClass() 750 if (CC->getMemoryLeader() != MA) in ensureLeaderOfMemoryClass() 751 CC = createMemoryClass(MA); in ensureLeaderOfMemoryClass() 808 CongruenceClass *getMemoryClass(const MemoryAccess *MA) const; 876 unsigned InstrToDFSNum(const MemoryAccess *MA) const { in InstrToDFSNum() 877 return MemoryToDFSNum(MA); in InstrToDFSNum() 885 unsigned MemoryToDFSNum(const Value *MA) const { in MemoryToDFSNum() [all …]
|
| H A D | MemCpyOptimizer.cpp | 342 for (const MemoryAccess &MA : in accessedBetween() local 344 Instruction *I = cast<MemoryUseOrDef>(MA).getMemoryInst(); in accessedBetween() 650 if (MemoryUseOrDef *MA = MSSAU->getMemorySSA()->getMemoryAccess(P)) { in moveUp() local 651 MemInsertPoint = cast<MemoryUseOrDef>(--MA->getIterator()); in moveUp() 656 if (MemoryUseOrDef *MA = MSSAU->getMemorySSA()->getMemoryAccess(&I)) { in moveUp() local 657 MemInsertPoint = MA; in moveUp() 668 if (MemoryUseOrDef *MA = MSSAU->getMemorySSA()->getMemoryAccess(I)) { in moveUp() local 669 MSSAU->moveAfter(MA, MemInsertPoint); in moveUp() 670 MemInsertPoint = MA; in moveUp() 1479 MemoryUseOrDef *MA = MSSA->getMemoryAccess(M); in processMemCpy() local [all …]
|
| H A D | LoopInstSimplify.cpp | 137 if (MemoryAccess *MA = MSSA->getMemoryAccess(&I)) in simplifyLoopInst() local 139 MA->replaceAllUsesWith(ReplacementMA); in simplifyLoopInst()
|
| /openbsd-src/usr.bin/less/ |
| H A D | more.hlp | 2 SSUUMMMMAARRYY OOFF CCOOMMMMAANNDDSS 60 MMIISSCCEELLLLAANNEEOOUUSS CCOOMMMMAANNDDSS
|
| /openbsd-src/regress/bin/pax/ |
| H A D | t1.sh | 9 M9&EG:6MA;6EM86=E<&QU9VEN<RTP+C<N,B]D:6=I:V%M:6UA9V5P;'5G:6YS
|
| /openbsd-src/gnu/llvm/llvm/docs/ |
| H A D | MemorySSA.rst | 238 - ``MemoryAccess *getClobberingMemoryAccess(MemoryAccess *MA);`` return the 239 clobbering memory access for ``MA``, caching all intermediate results 242 - ``MemoryAccess *getClobberingMemoryAccess(MemoryAccess *MA, const MemoryLocation &Loc);`` 243 returns the access clobbering memory location ``Loc``, starting at ``MA``. 286 walker's ``getClobberingMemoryAccess(MA)``. This API will cache information 287 as part of ``MA``. 299 MemoryAccess *MA = cast<MemoryAccess>(Use.getUser()); 300 if (auto *DefUser = cast_of_null<MemoryDef>MA) 316 MemoryAccess *MA = cast<MemoryAccess>(Use.getUser()); 317 if (auto *MU = cast_of_null<MemoryUse>MA) { [all …]
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/usr.bin/binutils/gas/ |
| H A D | aclocal.m4 | 30 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 61 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 125 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 169 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 336 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 420 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 448 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 570 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 593 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 627 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/ |
| H A D | RDFGraph.cpp | 485 void CodeNode::addMemberAfter(NodeAddr<NodeBase*> MA, NodeAddr<NodeBase*> NA, in addMemberAfter() argument 487 MA.Addr->append(NA); in addMemberAfter() 488 if (Code.LastM == MA.Id) in addMemberAfter() 494 NodeAddr<NodeBase*> MA = getFirstMember(G); in removeMember() local 495 assert(MA.Id != 0); in removeMember() 498 if (MA.Id == NA.Id) { in removeMember() 499 if (Code.LastM == MA.Id) { in removeMember() 504 Code.FirstM = MA.Addr->getNext(); in removeMember() 509 while (MA.Addr != this) { in removeMember() 510 NodeId MX = MA.Addr->getNext(); in removeMember() [all …]
|
| /openbsd-src/regress/lib/libcrypto/x509/bettertls/certificates/ |
| H A D | 3423.key | 20 MA+B3NDaOlHmSfBy9C8kipJZ+5fu/zsJPrJwjdBpokOFAv9a+sbWPtN7AO4mevzm
|
| H A D | 3385.key | 5 MA/k/5c800Muy1KjPybPIvZZPERpC1upU0uOoIB8USjSQGmCLkEpLS0mQHWpuG9u
|
| /openbsd-src/gnu/usr.bin/texinfo/ |
| H A D | aclocal.m4 | 30 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 61 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 125 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 169 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 337 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 419 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 542 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 565 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 601 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 639 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/ |
| 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()
|
| /openbsd-src/gnu/gcc/gcc/config/cris/ |
| H A D | elf.opt | 19 ; Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
|
| /openbsd-src/gnu/gcc/gcc/config/i386/ |
| H A D | sco5.opt | 19 ; Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
|
| /openbsd-src/gnu/gcc/gcc/config/pa/ |
| H A D | pa-hpux1111.opt | 19 ; Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
|
| H A D | pa-hpux1010.opt | 19 ; Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
|
| /openbsd-src/gnu/gcc/gcc/config/stormy16/ |
| H A D | stormy16.opt | 19 ; Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
|