Home
last modified time | relevance | path

Searched refs:MemAccess (Results 1 – 8 of 8) sorted by relevance

/openbsd/gnu/llvm/llvm/lib/ExecutionEngine/Orc/
H A DEPCIndirectionUtils.cpp159 auto &MemAccess = EPCIU.getExecutorProcessControl().getMemoryAccess(); in createStubs() local
168 return MemAccess.writeUInt32s(PtrUpdates); in createStubs()
177 return MemAccess.writeUInt64s(PtrUpdates); in createStubs()
215 auto &MemAccess = EPCIU.getExecutorProcessControl().getMemoryAccess(); in updatePointer() local
219 return MemAccess.writeUInt32s(PUpdate); in updatePointer()
223 return MemAccess.writeUInt64s(PUpdate); in updatePointer()
H A DSimpleRemoteEPC.cpp357 if (auto MemAccess = S.CreateMemoryAccess(*this)) { in setup() local
358 OwnedMemAccess = std::move(*MemAccess); in setup()
359 this->MemAccess = OwnedMemAccess.get(); in setup()
361 return MemAccess.takeError(); in setup()
H A DExecutorProcessControl.cpp40 this->MemAccess = this; in SelfExecutorProcessControl()
/openbsd/gnu/llvm/llvm/include/llvm/ExecutionEngine/Orc/
H A DExecutorProcessControl.h211 assert(MemAccess && "No MemAccess object set."); in getMemoryAccess()
212 return *MemAccess; in getMemoryAccess()
373 MemoryAccess *MemAccess = nullptr; variable
/openbsd/gnu/llvm/llvm/lib/Target/SystemZ/
H A DSystemZISelDAGToDAG.cpp1475 auto *MemAccess = cast<LSBaseSDNode>(N); in storeLoadIsAligned() local
1476 TypeSize StoreSize = MemAccess->getMemoryVT().getStoreSize(); in storeLoadIsAligned()
1477 SDValue BasePtr = MemAccess->getBasePtr(); in storeLoadIsAligned()
1478 MachineMemOperand *MMO = MemAccess->getMemOperand(); in storeLoadIsAligned()
1482 if (MemAccess->getAlign().value() < StoreSize || in storeLoadIsAligned()
1483 !MemAccess->getOffset().isUndef()) in storeLoadIsAligned()
/openbsd/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DNewGVN.cpp767 MemoryAccess *MemAccess, Instruction *OrigInst,
2655 MemoryAccess *MemAccess, Instruction *OrigInst, in findLeaderForInst() argument
2672 if (MemAccess) in findLeaderForInst()
2709 auto *MemAccess = getMemoryAccess(I); in makePossiblePHIOfOps() local
2713 if (MemAccess && !isa<MemoryPhi>(MemAccess->getDefiningAccess()) && in makePossiblePHIOfOps()
2714 MemAccess->getDefiningAccess()->getBlock() == I->getParent()) in makePossiblePHIOfOps()
2765 if (MemAccess) in makePossiblePHIOfOps()
2766 TempToMemory.insert({ValueOp, MemAccess}); in makePossiblePHIOfOps()
2793 MemAccess, I, PredBB); in makePossiblePHIOfOps()
/openbsd/gnu/llvm/llvm/lib/Analysis/
H A DLoopAccessAnalysis.cpp2559 void LoopAccessInfo::collectStridedAccess(Value *MemAccess) { in collectStridedAccess() argument
2560 Value *Ptr = getLoadStorePointerOperand(MemAccess); in collectStridedAccess()
/openbsd/gnu/llvm/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp4215 auto isScalarUse = [&](Instruction *MemAccess, Value *Ptr) { in collectLoopScalars() argument
4216 InstWidening WideningDecision = getWideningDecision(MemAccess, VF); in collectLoopScalars()
4219 if (auto *Store = dyn_cast<StoreInst>(MemAccess)) in collectLoopScalars()
4222 assert(Ptr == getLoadStorePointerOperand(MemAccess) && in collectLoopScalars()
4239 auto evaluatePtrUse = [&](Instruction *MemAccess, Value *Ptr) { in collectLoopScalars() argument
4254 if (isScalarUse(MemAccess, Ptr) && llvm::all_of(I->users(), [&](User *U) { in collectLoopScalars()