HomeSort by: relevance | last modified time | path
    Searched refs:getMemoryAccess (Results 1 - 23 of 23) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
MemorySSAUpdater.cpp 96 MemoryPhi *Phi = dyn_cast_or_null<MemoryPhi>(MSSA->getMemoryAccess(BB));
380 auto *MPhi = MSSA->getMemoryAccess(BBIDF);
487 if (auto *MP = MSSA->getMemoryAccess(S))
518 if (auto *MP = MSSA->getMemoryAccess(S))
533 if (MemoryPhi *MPhi = MSSA->getMemoryAccess(To)) {
541 if (MemoryPhi *MPhi = MSSA->getMemoryAccess(To)) {
581 InsnDefining = MSSA->getMemoryAccess(NewDefMUDI);
640 auto *MPhi = MSSA->getMemoryAccess(Header);
711 IncMUD = MSSA->getMemoryAccess(NewIncI);
740 if (MemoryPhi *MPhi = MSSA->getMemoryAccess(BB))
    [all...]
MemorySSA.cpp 116 if (MemoryAccess *MA = MSSA->getMemoryAccess(BB))
122 if (MemoryAccess *MA = MSSA->getMemoryAccess(I))
1697 assert(!getMemoryAccess(BB) && "MemoryPhi already exists for this BB");
1886 if (MemoryPhi *Phi = getMemoryAccess(&BB)) {
1971 MemoryPhi *Phi = getMemoryAccess(&B);
1993 MemoryUseOrDef *MA = getMemoryAccess(&I);
LoopInfo.cpp 110 if (auto *MUD = MSSAU->getMemorySSA()->getMemoryAccess(I))
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 394 MSSAU->getMemorySSA()->getMemoryAccess(&*BI));
619 if (MemoryUseOrDef *MA = MSSAU->getMemorySSA()->getMemoryAccess(P)) {
625 if (MemoryUseOrDef *MA = MSSAU->getMemorySSA()->getMemoryAccess(&I)) {
639 if (MemoryUseOrDef *MA = MSSAU->getMemorySSA()->getMemoryAccess(I)) {
729 cast<MemoryDef>(MSSAU->getMemorySSA()->getMemoryAccess(SI));
768 if (accessedBetween(*AA, StoreLoc, MSSA->getMemoryAccess(C),
769 MSSA->getMemoryAccess(SI)))
826 assert(isa<MemoryDef>(MSSAU->getMemorySSA()->getMemoryAccess(SI)));
828 cast<MemoryDef>(MSSAU->getMemorySSA()->getMemoryAccess(SI));
1080 MSSA->getMemoryAccess(MDep), MSSA->getMemoryAccess(M))
    [all...]
LoopInstSimplify.cpp 139 if (MemoryAccess *MA = MSSA->getMemoryAccess(&I))
140 if (MemoryAccess *ReplacementMA = MSSA->getMemoryAccess(SimpleI))
LoopSink.cpp 241 if (MSSAU && MSSAU->getMemorySSA()->getMemoryAccess(&I)) {
271 MSSAU->getMemorySSA()->getMemoryAccess(&I)))
NewGVN.cpp 868 MemoryUseOrDef *getMemoryAccess(const Instruction *) const;
869 MemoryPhi *getMemoryAccess(const BasicBlock *) const;
939 MemoryUseOrDef *NewGVN::getMemoryAccess(const Instruction *I) const {
940 auto *Result = MSSA->getMemoryAccess(I);
945 MemoryPhi *NewGVN::getMemoryAccess(const BasicBlock *BB) const {
946 return MSSA->getMemoryAccess(BB);
1387 auto *StoreAccess = getMemoryAccess(SI);
1420 (lookupMemoryLeader(getMemoryAccess(LI)->getDefiningAccess()) ==
1523 MemoryAccess *OriginalAccess = getMemoryAccess(I);
1609 if (auto *MA = MSSA->getMemoryAccess(CI))
    [all...]
GVNHoist.cpp 818 if (MemoryUseOrDef *UD = MSSA->getMemoryAccess(Insn))
1013 MemoryAccess *OldMA = MSSA->getMemoryAccess(I);
1047 MemoryUseOrDef *NewMemAcc = MSSA->getMemoryAccess(Repl);
DeadStoreElimination.cpp 893 MemoryAccess *MA = MSSA.getMemoryAccess(&I);
1659 if (MemoryAccess *MA = MSSA.getMemoryAccess(DeadInst)) {
1779 auto *UnderlyingDef = cast<MemoryDef>(MSSA.getMemoryAccess(DefUOInst));
1794 auto *LoadAccess = MSSA.getMemoryAccess(LoadI)->getDefiningAccess();
LICM.cpp 1201 MSSA, cast<MemoryUse>(MSSA->getMemoryAccess(LI)), CurLoop, I, *Flags);
1256 MSSA, cast<MemoryUse>(MSSA->getMemoryAccess(CI)), CurLoop, I,
1325 auto *SIMD = MSSA->getMemoryAccess(SI);
1486 if (MSSAU && MSSAU->getMemorySSA()->getMemoryAccess(&I)) {
1539 MSSAU->getMemorySSA()->getMemoryAccess(&I)))
EarlyCSE.cpp 1005 auto *EarlierMA = MSSA->getMemoryAccess(EarlierInst);
1008 auto *LaterMA = MSSA->getMemoryAccess(LaterInst);
LoopUnswitch.cpp 1012 auto *MemA = dyn_cast_or_null<MemoryUse>(MSSA->getMemoryAccess(I));
GVN.cpp 1203 auto *LoadAcc = MSSA->getMemoryAccess(Load);
SimpleLoopUnswitch.cpp 2508 MemoryDef *MD = cast<MemoryDef>(MSSAU->getMemorySSA()->getMemoryAccess(GI));
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
MemorySSAUpdater.h 225 if (MemoryAccess *MA = MSSA->getMemoryAccess(I))
MemorySSA.h 721 MemoryUseOrDef *getMemoryAccess(const Instruction *I) const {
725 MemoryPhi *getMemoryAccess(const BasicBlock *BB) const {
1022 MemoryAccess *MA = MSSA->getMemoryAccess(I);
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
TPCIndirectionUtils.cpp 159 auto &MemAccess = TPCIU.getTargetProcessControl().getMemoryAccess();
213 auto &MemAccess = TPCIU.getTargetProcessControl().getMemoryAccess();
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
TargetProcessControl.h 116 MemoryAccess &getMemoryAccess() const { return *MemAccess; }
OrcRPCTargetProcessControl.h 102 Parent.Parent.getMemoryAccess().writeBuffers(BufferWrites)) {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
InterleavedLoadCombinePass.cpp 1186 auto FMA = MSSA.getMemoryAccess(First);
1188 auto MADef = MSSA.getMemoryAccess(LI)->getDefiningAccess();
1230 LI, nullptr, MSSA.getMemoryAccess(InsertionPoint)));
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
BasicBlockUtils.cpp 285 MSSAU->getMemorySSA()->getMemoryAccess(PredBB->getTerminator())))
LoopUtils.cpp 1757 if (MemoryAccess *MA = MSSA.getMemoryAccess(I)) {
SimplifyCFG.cpp 334 if (auto *MPhi = MSSAU->getMemorySSA()->getMemoryAccess(Succ))

Completed in 97 milliseconds