HomeSort by: relevance | last modified time | path
    Searched refs:MA (Results 1 - 25 of 60) sorted by relevancy

1 2 3

  /src/external/gpl3/binutils/dist/bfd/
cpu-mep.c 18 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
24 #define MA(x, n, def, y) { 32, 32, 8, bfd_arch_mep, x, "mep", n, \
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);
  /src/external/gpl3/binutils.old/dist/bfd/
cpu-mep.c 18 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
24 #define MA(x, n, def, y) { 32, 32, 8, bfd_arch_mep, x, "mep", n, \
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);
  /src/external/gpl3/gdb.old/dist/bfd/
cpu-mep.c 18 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
24 #define MA(x, n, def, y) { 32, 32, 8, bfd_arch_mep, x, "mep", n, \
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);
  /src/external/gpl3/gdb/dist/bfd/
cpu-mep.c 18 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
24 #define MA(x, n, def, y) { 32, 32, 8, bfd_arch_mep, x, "mep", n, \
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);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
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) {
    [all...]
MemorySSAUpdater.h 225 if (MemoryAccess *MA = MSSA->getMemoryAccess(I))
226 removeMemoryAccess(MA, OptimizePhis);
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
MemorySSA.cpp 116 if (MemoryAccess *MA = MSSA->getMemoryAccess(BB))
117 OS << "; " << *MA << "\n";
122 if (MemoryAccess *MA = MSSA->getMemoryAccess(I))
123 OS << "; " << *MA << "\n";
414 for (const auto *MA : def_chain(MAP.first)) {
415 if (MA == ClobberAt) {
416 if (const auto *MD = dyn_cast<MemoryDef>(MA)) {
436 assert(!MSSA.isLiveOnEntryDef(MA) && "Hit liveOnEntry before clobber?");
438 if (const auto *MD = dyn_cast<MemoryDef>(MA)) {
449 if (const auto *MU = dyn_cast<MemoryUse>(MA)) {
    [all...]
MemorySSAUpdater.cpp 144 MemoryAccess *MemorySSAUpdater::getPreviousDef(MemoryAccess *MA) {
145 if (auto *LocalResult = getPreviousDefInBlock(MA))
148 return getPreviousDefRecursive(MA->getBlock(), CachedPreviousDef);
154 MemoryAccess *MemorySSAUpdater::getPreviousDefInBlock(MemoryAccess *MA) {
155 auto *Defs = MSSA->getWritableBlockDefs(MA->getBlock());
160 if (!isa<MemoryUse>(MA)) {
161 auto Iter = MA->getReverseDefsIterator();
167 auto End = MSSA->getWritableBlockAccesses(MA->getBlock())->rend();
168 for (auto &U : make_range(++MA->getReverseIterator(), End))
171 // Note that if MA comes before Defs->begin(), we won't hit a def
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUAnnotateUniformValues.cpp 74 const MemoryAccess *MA = MSSA->getWalker()->getClobberingMemoryAccess(Load);
75 return !MSSA->isLiveOnEntryDef(MA);
  /src/external/gpl2/gmake/dist/
subproc.bat 18 rem Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
configure.bat 18 rem Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
NewGVN.cpp 742 CongruenceClass *createMemoryClass(MemoryAccess *MA) {
744 CC->setMemoryLeader(MA);
748 CongruenceClass *ensureLeaderOfMemoryClass(MemoryAccess *MA) {
749 auto *CC = getMemoryClass(MA);
750 if (CC->getMemoryLeader() != MA)
751 CC = createMemoryClass(MA);
811 CongruenceClass *getMemoryClass(const MemoryAccess *MA) const;
877 unsigned InstrToDFSNum(const MemoryAccess *MA) const {
878 return MemoryToDFSNum(MA);
886 unsigned MemoryToDFSNum(const Value *MA) const
    [all...]
LoopInstSimplify.cpp 139 if (MemoryAccess *MA = MSSA->getMemoryAccess(&I))
141 MA->replaceAllUsesWith(ReplacementMA);
MemCpyOptimizer.cpp 345 for (const MemoryAccess &MA :
347 if (isModOrRefSet(AA.getModRefInfo(cast<MemoryUseOrDef>(MA).getMemoryInst(),
619 if (MemoryUseOrDef *MA = MSSAU->getMemorySSA()->getMemoryAccess(P)) {
620 MemInsertPoint = cast<MemoryUseOrDef>(--MA->getIterator());
625 if (MemoryUseOrDef *MA = MSSAU->getMemorySSA()->getMemoryAccess(&I)) {
626 MemInsertPoint = MA;
639 if (MemoryUseOrDef *MA = MSSAU->getMemorySSA()->getMemoryAccess(I)) {
640 MSSAU->moveAfter(MA, MemInsertPoint);
641 MemInsertPoint = MA;
1404 MemoryUseOrDef *MA = MSSA->getMemoryAccess(M)
    [all...]
  /src/external/gpl3/binutils/dist/include/
libfcollector.h 19 ! MA 02110-1301, USA.
  /src/external/gpl3/binutils.old/dist/include/
libfcollector.h 19 ! MA 02110-1301, USA.
  /src/external/gpl3/gcc/dist/include/
libfcollector.h 19 ! MA 02110-1301, USA.
  /src/external/gpl3/gdb.old/dist/include/
libfcollector.h 19 ! MA 02110-1301, USA.
  /src/external/gpl3/gdb/dist/include/
libfcollector.h 19 ! MA 02110-1301, USA.
  /src/external/lgpl3/mpfr/dist/tools/
get_patches.sh 33 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Alignment.h 354 inline std::string DebugStr(const MaybeAlign &MA) {
355 if (MA)
356 return std::to_string(MA->value());
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Function.h 378 if (const auto MA =
380 return MA->value();
487 if (const auto MA = getParamAlign(ArgNo))
488 return MA->value();
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
RDFGraph.cpp 486 // Add node NA after member node MA in the given code node.
487 void CodeNode::addMemberAfter(NodeAddr<NodeBase*> MA, NodeAddr<NodeBase*> NA,
489 MA.Addr->append(NA);
490 if (Code.LastM == MA.Id)
496 NodeAddr<NodeBase*> MA = getFirstMember(G);
497 assert(MA.Id != 0);
500 if (MA.Id == NA.Id) {
501 if (Code.LastM == MA.Id) {
506 Code.FirstM = MA.Addr->getNext();
511 while (MA.Addr != this)
    [all...]
  /src/usr.bin/deroff/
deroff.c 114 #define MA 3 /* -man */
117 static char *mactab[] = { "-ms", "-mm", "-me", "-ma" };
305 mac = MA;
1598 case MA:
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
AssumeBundleBuilder.cpp 252 MaybeAlign MA) {
263 if (MA.valueOrOne() > 1)
265 {Attribute::Alignment, unsigned(MA.valueOrOne().value()), Pointer});

Completed in 42 milliseconds

1 2 3