Home
last modified time | relevance | path

Searched refs:MemI (Results 1 – 5 of 5) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCLoopInstrFormPrep.cpp189 bool alreadyPrepared(Loop *L, Instruction* MemI,
203 void addOneCandidate(Instruction *MemI, const SCEV *LSCEV,
274 static Value *GetPointerOperand(Value *MemI) { in GetPointerOperand() argument
275 if (LoadInst *LMemI = dyn_cast<LoadInst>(MemI)) { in GetPointerOperand()
277 } else if (StoreInst *SMemI = dyn_cast<StoreInst>(MemI)) { in GetPointerOperand()
279 } else if (IntrinsicInst *IMemI = dyn_cast<IntrinsicInst>(MemI)) { in GetPointerOperand()
308 void PPCLoopInstrFormPrep::addOneCandidate(Instruction *MemI, const SCEV *LSCEV, in addOneCandidate() argument
311 assert((MemI && GetPointerOperand(MemI)) && in addOneCandidate()
318 B.Elements.push_back(BucketElement(CDiff, MemI)); in addOneCandidate()
327 Buckets.push_back(Bucket(LSCEV, MemI)); in addOneCandidate()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DLoopDataPrefetch.cpp255 Instruction *MemI; in runOnLoop() local
258 MemI = LMemI; in runOnLoop()
262 MemI = SMemI; in runOnLoop()
307 PrefLoads.push_back(std::make_pair(MemI, LSCEVAddRec)); in runOnLoop()
311 Value *PrefPtrValue = SCEVE.expandCodeFor(NextLSCEV, I8Ptr, MemI); in runOnLoop()
313 IRBuilder<> Builder(MemI); in runOnLoop()
321 ConstantInt::get(I32, MemI->mayReadFromMemory() ? 0 : 1), in runOnLoop()
327 return OptimizationRemark(DEBUG_TYPE, "Prefetched", MemI) in runOnLoop()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DPGOMemOPSizeOpt.cpp378 auto *MemI = cast<MemIntrinsic>(NewInst); in perform() local
379 auto *SizeType = dyn_cast<IntegerType>(MemI->getLength()->getType()); in perform()
382 MemI->setLength(CaseSizeId); in perform()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineLoadStoreAlloca.cpp848 Instruction *MemI, unsigned &Idx) { in canReplaceGEPIdxWithZero() argument
890 KnownBits Known = IC.computeKnownBits(GEPI->getOperand(i), 0, MemI); in canReplaceGEPIdxWithZero()
918 T &MemI) { in replaceGEPIdxWithZero() argument
921 if (canReplaceGEPIdxWithZero(IC, GEPI, &MemI, Idx)) { in replaceGEPIdxWithZero()
926 MemI.setOperand(MemI.getPointerOperandIndex(), NewGEPI); in replaceGEPIdxWithZero()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DTargetLowering.h1068 unsigned MemI = (unsigned) MemVT.getSimpleVT().SimpleTy; in getLoadExtAction() local
1070 MemI < MVT::LAST_VALUETYPE && "Table isn't big enough!"); in getLoadExtAction()
1072 return (LegalizeAction)((LoadExtActions[ValI][MemI] >> Shift) & 0xf); in getLoadExtAction()
1093 unsigned MemI = (unsigned) MemVT.getSimpleVT().SimpleTy; in getTruncStoreAction() local
1094 assert(ValI < MVT::LAST_VALUETYPE && MemI < MVT::LAST_VALUETYPE && in getTruncStoreAction()
1096 return TruncStoreActions[ValI][MemI]; in getTruncStoreAction()