/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
H A D | MemorySSA.h | 235 static void deleteNode(MemoryAccess *MA) { MA->deleteValue(); } 238 inline raw_ostream &operator<<(raw_ostream &OS, const MemoryAccess &MA) { 239 MA.print(OS); 262 static bool classof(const Value *MA) { 263 return MA->getValueID() == MemoryUseVal || MA->getValueID() == MemoryDefVal; 334 static bool classof(const Value *MA) { 335 return MA->getValueID() == MemoryUseVal; 394 static bool classof(const Value *MA) { 395 return MA->getValueID() == MemoryDefVal; 398 void setOptimized(MemoryAccess *MA) { [all …]
|
H A D | MemorySSAUpdater.h | 225 if (MemoryAccess *MA = MSSA->getMemoryAccess(I)) variable 226 removeMemoryAccess(MA, OptimizePhis);
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
H A D | MemorySSA.cpp | 116 if (MemoryAccess *MA = MSSA->getMemoryAccess(BB)) in emitBasicBlockStartAnnot() local 117 OS << "; " << *MA << "\n"; in emitBasicBlockStartAnnot() 122 if (MemoryAccess *MA = MSSA->getMemoryAccess(I)) in emitInstructionAnnot() local 123 OS << "; " << *MA << "\n"; in emitInstructionAnnot() 414 for (const auto *MA : def_chain(MAP.first)) { in checkClobberSanity() local 415 if (MA == ClobberAt) { in checkClobberSanity() 416 if (const auto *MD = dyn_cast<MemoryDef>(MA)) { in checkClobberSanity() 436 assert(!MSSA.isLiveOnEntryDef(MA) && "Hit liveOnEntry before clobber?"); in checkClobberSanity() 438 if (const auto *MD = dyn_cast<MemoryDef>(MA)) { in checkClobberSanity() 449 if (const auto *MU = dyn_cast<MemoryUse>(MA)) { in checkClobberSanity() [all …]
|
H A D | MemorySSAUpdater.cpp | 144 MemoryAccess *MemorySSAUpdater::getPreviousDef(MemoryAccess *MA) { in getPreviousDef() argument 145 if (auto *LocalResult = getPreviousDefInBlock(MA)) in getPreviousDef() 148 return getPreviousDefRecursive(MA->getBlock(), CachedPreviousDef); in getPreviousDef() 154 MemoryAccess *MemorySSAUpdater::getPreviousDefInBlock(MemoryAccess *MA) { in getPreviousDefInBlock() argument 155 auto *Defs = MSSA->getWritableBlockDefs(MA->getBlock()); in getPreviousDefInBlock() 160 if (!isa<MemoryUse>(MA)) { in getPreviousDefInBlock() 161 auto Iter = MA->getReverseDefsIterator(); in getPreviousDefInBlock() 167 auto End = MSSA->getWritableBlockAccesses(MA->getBlock())->rend(); in getPreviousDefInBlock() 168 for (auto &U : make_range(++MA->getReverseIterator(), End)) in getPreviousDefInBlock() 558 MemoryAccess *MA = nullptr; in onlySingleValue() local [all …]
|
/netbsd-src/external/gpl3/binutils/dist/bfd/ |
H A D | cpu-mep.c | 24 #define MA(x, n, def, y) { 32, 32, 8, bfd_arch_mep, x, "mep", n, \ macro 28 static const bfd_arch_info_type bfd_c5_arch = MA (bfd_mach_mep_c5, "c5", false, NULL); 29 static const bfd_arch_info_type bfd_h1_arch = MA (bfd_mach_mep_h1, "h1", false, & bfd_c5_arch); 30 const bfd_arch_info_type bfd_mep_arch = MA (bfd_mach_mep, "mep", true, & bfd_h1_arch);
|
/netbsd-src/external/gpl3/binutils.old/dist/bfd/ |
H A D | cpu-mep.c | 24 #define MA(x, n, def, y) { 32, 32, 8, bfd_arch_mep, x, "mep", n, \ macro 28 static const bfd_arch_info_type bfd_c5_arch = MA (bfd_mach_mep_c5, "c5", false, NULL); 29 static const bfd_arch_info_type bfd_h1_arch = MA (bfd_mach_mep_h1, "h1", false, & bfd_c5_arch); 30 const bfd_arch_info_type bfd_mep_arch = MA (bfd_mach_mep, "mep", true, & bfd_h1_arch);
|
/netbsd-src/share/misc/ |
H A D | zipcodes | 175 01001:Agawam, MA 176 01002:Amherst, MA 177 01003:Amherst, MA 178 01004:Amherst, MA 179 01005:Barre, MA 180 01007:Belchertown, MA 181 01008:Blandford, MA 182 01009:Bondsville, MA 183 01010:Brimfield, MA 184 01011:Chester, MA [all …]
|
H A D | na.phone.add | 77 339:Massachusetts (USA):Burlington, Reading, Waltham:MA 81 351:Massachusetts (USA):Acton, Lowell, North Reading:MA 97 413:Massachusetts (USA):Springfield:MA 124 508:Massachusetts (USA):Framingham, New Bedford, Plymouth:MA 163 617:Massachusetts (USA):Boston:MA 217 774:Massachusetts (USA):Framingham, New Bedford, Plymouth:MA 220 781:Massachusetts (USA):Burlington, Reading, Waltham:MA 254 857:Massachusetts (USA):Boston:MA 302 978:Massachusetts (USA):Acton, Lowell, North Reading:MA
|
H A D | na.phone | 100 339:Massachusetts (USA):Burlington, Reading, Waltham:MA 108 351:Massachusetts (USA):Acton, Lowell, North Reading:MA 135 413:Massachusetts (USA):Springfield:MA 184 508:Massachusetts (USA):Framingham, New Bedford, Plymouth:MA 255 617:Massachusetts (USA):Boston:MA 348 774:Massachusetts (USA):Framingham, New Bedford, Plymouth:MA 353 781:Massachusetts (USA):Burlington, Reading, Waltham:MA 402 857:Massachusetts (USA):Boston:MA 470 978:Massachusetts (USA):Acton, Lowell, North Reading:MA
|
/netbsd-src/external/apache2/llvm/dist/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() 811 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 | MemCpyOptimizer.cpp | 345 for (const MemoryAccess &MA : in accessedBetween() local 347 if (isModOrRefSet(AA.getModRefInfo(cast<MemoryUseOrDef>(MA).getMemoryInst(), in accessedBetween() 619 if (MemoryUseOrDef *MA = MSSAU->getMemorySSA()->getMemoryAccess(P)) { in moveUp() local 620 MemInsertPoint = cast<MemoryUseOrDef>(--MA->getIterator()); in moveUp() 625 if (MemoryUseOrDef *MA = MSSAU->getMemorySSA()->getMemoryAccess(&I)) { in moveUp() local 626 MemInsertPoint = MA; in moveUp() 639 if (MemoryUseOrDef *MA = MSSAU->getMemorySSA()->getMemoryAccess(I)) { in moveUp() local 640 MSSAU->moveAfter(MA, MemInsertPoint); in moveUp() 641 MemInsertPoint = MA; in moveUp() 1404 MemoryUseOrDef *MA = MSSA->getMemoryAccess(M); in processMemCpy() local [all …]
|
H A D | LoopInstSimplify.cpp | 139 if (MemoryAccess *MA = MSSA->getMemoryAccess(&I)) in simplifyLoopInst() local 141 MA->replaceAllUsesWith(ReplacementMA); in simplifyLoopInst()
|
/netbsd-src/external/gpl2/gettext/dist/gnulib-local/lib/ |
H A D | exitfail.h.diff | 6 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ 11 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUAnnotateUniformValues.cpp | 74 const MemoryAccess *MA = MSSA->getWalker()->getClobberingMemoryAccess(Load); in isClobberedInFunction() local 75 return !MSSA->isLiveOnEntryDef(MA); in isClobberedInFunction()
|
/netbsd-src/external/bsd/unbound/dist/testdata/ |
H A D | val_nsec3_b4_wild_wr.rpl | 105 …1021000000 ( 40430 example. PVOgtMK1HHeSTau+HwDWC8Ts+6C8qtqd4pQJ qOtdEVgg+MA+ai4fWDEhu3qHJyLcQ9tb… 135 …1021000000 ( 40430 example. PVOgtMK1HHeSTau+HwDWC8Ts+6C8qtqd4pQJ qOtdEVgg+MA+ai4fWDEhu3qHJyLcQ9tb… 149 …1021000000 ( 40430 example. PVOgtMK1HHeSTau+HwDWC8Ts+6C8qtqd4pQJ qOtdEVgg+MA+ai4fWDEhu3qHJyLcQ9tb…
|
H A D | val_nsec3_b4_wild.rpl | 88 …1021000000 ( 40430 example. PVOgtMK1HHeSTau+HwDWC8Ts+6C8qtqd4pQJ qOtdEVgg+MA+ai4fWDEhu3qHJyLcQ9tb… 146 …1021000000 ( 40430 example. PVOgtMK1HHeSTau+HwDWC8Ts+6C8qtqd4pQJ qOtdEVgg+MA+ai4fWDEhu3qHJyLcQ9tb…
|
/netbsd-src/games/quiz/datfiles/ |
H A D | state | 21 Mass{achusetts}|MA:Boston:MA:{trailing }arbutus
|
H A D | areas | 43 413:western massachusetts|MA:springfield 80 617:eastern massachusetts|MA:boston
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
H A D | RDFGraph.cpp | 487 void CodeNode::addMemberAfter(NodeAddr<NodeBase*> MA, NodeAddr<NodeBase*> NA, in addMemberAfter() argument 489 MA.Addr->append(NA); in addMemberAfter() 490 if (Code.LastM == MA.Id) in addMemberAfter() 496 NodeAddr<NodeBase*> MA = getFirstMember(G); in removeMember() local 497 assert(MA.Id != 0); in removeMember() 500 if (MA.Id == NA.Id) { in removeMember() 501 if (Code.LastM == MA.Id) { in removeMember() 506 Code.FirstM = MA.Addr->getNext(); in removeMember() 511 while (MA.Addr != this) { in removeMember() 512 NodeId MX = MA.Addr->getNext(); in removeMember() [all …]
|
/netbsd-src/games/larn/ |
H A D | OWNER | 3 GenRad Inc. Bolton, MA
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
H A D | Function.h | 378 if (const auto MA = in getFnStackAlignment() local 380 return MA->value(); in getFnStackAlignment() 487 if (const auto MA = getParamAlign(ArgNo)) in getParamAlignment() local 488 return MA->value(); in getParamAlignment()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
H A D | Alignment.h | 354 inline std::string DebugStr(const MaybeAlign &MA) { in DebugStr() argument 355 if (MA) in DebugStr() 356 return std::to_string(MA->value()); in DebugStr()
|
/netbsd-src/external/gpl2/texinfo/dist/ |
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 …]
|
/netbsd-src/external/mpl/dhcp/dist/keama/ |
H A D | doc.txt | 338 - a reservation can have no fixed address. In this case the MA puts 404 Temporary (aka IA_TA) is commented ny the MA. 422 the MA for fixed-address. Resolution is considered as painful 468 Kea is far more strict and IMHO it is a good thing. Now the MA does 476 Details are very different so the MA maps only basic parameters 494 both the MA and dhcpd (BTW the role of the MA is not to fix ISC DHCP
|
/netbsd-src/external/gpl2/lvm2/dist/lib/misc/ |
H A D | lvm-version.h.in | 13 * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|