Searched defs:StoreSize (Results 1 - 9 of 9) sorted by relevance

/external/llvm/lib/Target/PowerPC/
H A DPPCHazardRecognizers.h74 uint64_t StoreSize[4]; member in class:llvm::PPCHazardRecognizer970
H A DPPCISelLowering.cpp6877 unsigned StoreSize = BVN->getOperand(i).getValueType().getStoreSize(); local
6878 if (StoreSize > 4) {
6885 if (StoreSize < 4)
/external/llvm/lib/Transforms/Scalar/
H A DLoopIdiomRecognize.cpp125 bool processLoopStridedStore(Value *DestPtr, unsigned StoreSize,
129 bool processLoopStoreOfLoopLoad(StoreInst *SI, unsigned StoreSize,
394 unsigned StoreSize = getStoreSizeInBytes(SI, DL); local
395 if (StoreSize != Stride && StoreSize != -Stride)
398 bool NegStride = StoreSize == -Stride;
401 if (processLoopStridedStore(StorePtr, StoreSize, SI->getAlignment(),
406 return processLoopStoreOfLoopLoad(SI, StoreSize, StoreEv, BECount, NegStride);
452 const SCEV *BECount, unsigned StoreSize,
461 // to be exactly the size of the memset, which is (BECount+1)*StoreSize
451 mayLoopAccessLocation(Value *Ptr, ModRefInfo Access, Loop *L, const SCEV *BECount, unsigned StoreSize, AliasAnalysis &AA, Instruction *IgnoredStore) argument
483 getStartForNegStride(const SCEV *Start, const SCEV *BECount, Type *IntPtr, unsigned StoreSize, ScalarEvolution *SE) argument
495 processLoopStridedStore( Value *DestPtr, unsigned StoreSize, unsigned StoreAlignment, Value *StoredVal, Instruction *TheStore, const SCEVAddRecExpr *Ev, const SCEV *BECount, bool NegStride) argument
611 processLoopStoreOfLoopLoad( StoreInst *SI, unsigned StoreSize, const SCEVAddRecExpr *StoreEv, const SCEV *BECount, bool NegStride) argument
[all...]
H A DMemCpyOptimizer.cpp224 int64_t StoreSize = DL.getTypeStoreSize(SI->getOperand(0)->getType()); local
226 addRange(OffsetFromFirst, StoreSize,
H A DGVN.cpp884 uint64_t StoreSize = DL.getTypeSizeInBits(StoredValTy); local
888 if (StoreSize == LoadSize) {
917 assert(StoreSize >= LoadSize && "CanCoerceMustAliasedValueToLoad fail");
927 StoredValTy = IntegerType::get(StoredValTy->getContext(), StoreSize);
934 StoredVal = IRB.CreateLShr(StoredVal, StoreSize - LoadSize, "tmp");
998 uint64_t StoreSize = WriteSizeInBits >> 3; // Convert to bytes.
1004 isAAFailure = StoreOffset+int64_t(StoreSize) <= LoadOffset;
1025 StoreOffset+StoreSize < LoadOffset+LoadSize)
1044 uint64_t StoreSize =DL.getTypeSizeInBits(DepSI->getValueOperand()->getType()); local
1046 StorePtr, StoreSize, D
1136 uint64_t StoreSize = (DL.getTypeSizeInBits(SrcVal->getType()) + 7) / 8; local
[all...]
/external/clang/lib/CodeGen/
H A DCGExprCXX.cpp411 CharUnits StoreSize = Store.second; local
412 llvm::Value *StoreSizeVal = CGF.CGM.getSize(StoreSize);
425 CharUnits StoreSize = Store.second; local
426 llvm::Value *StoreSizeVal = CGF.CGM.getSize(StoreSize);
H A DCGBuiltin.cpp1254 CharUnits StoreSize = getContext().getTypeSizeInChars(ElTy); local
1256 StoreSize.getQuantity() * 8);
1260 StoreSize);
/external/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelLowering.cpp48 unsigned StoreSize = VT.getStoreSizeInBits(); local
49 if (StoreSize <= 32)
50 return EVT::getIntegerVT(Ctx, StoreSize);
52 assert(StoreSize % 32 == 0 && "Store size not a multiple of 32");
53 return EVT::getVectorVT(Ctx, MVT::i32, StoreSize / 32);
58 unsigned StoreSize = VT.getStoreSizeInBits(); local
59 if (StoreSize <= 32)
62 return EVT::getVectorVT(Ctx, MVT::i32, StoreSize / 32);
/external/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp694 unsigned StoreSize = DL.getTypeStoreSize(Shadow->getType()); local
697 getOriginPtr(Addr, IRB, Alignment), StoreSize,
705 getOriginPtr(Addr, IRB, Alignment), StoreSize,
727 getOriginPtr(Addr, IRBNew, Alignment), StoreSize,

Completed in 706 milliseconds