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

/external/llvm/lib/Target/PowerPC/
H A DPPCHazardRecognizers.h63 uint64_t StoreSize[4]; member in class:llvm::PPCHazardRecognizer970
/external/llvm/lib/Transforms/Scalar/
H A DLoopIdiomRecognize.cpp85 bool processLoopStridedStore(Value *DestPtr, unsigned StoreSize,
90 bool processLoopStoreOfLoopLoad(StoreInst *SI, unsigned StoreSize,
292 unsigned StoreSize = (unsigned)SizeInBits >> 3; local
295 if (Stride == 0 || StoreSize != Stride->getValue()->getValue()) {
299 if (0 && Stride && StoreSize == -Stride->getValue()->getValue()) {
308 if (processLoopStridedStore(StorePtr, StoreSize, SI->getAlignment(),
320 if (processLoopStoreOfLoopLoad(SI, StoreSize, StoreEv, LoadEv, BECount))
372 unsigned StoreSize, AliasAnalysis &AA,
380 // to be exactly the size of the memset, which is (BECount+1)*StoreSize
382 AccessSize = (BECst->getValue()->getZExtValue()+1)*StoreSize;
370 mayLoopAccessLocation(Value *Ptr,AliasAnalysis::ModRefResult Access, Loop *L, const SCEV *BECount, unsigned StoreSize, AliasAnalysis &AA, Instruction *IgnoredStore) argument
442 processLoopStridedStore(Value *DestPtr, unsigned StoreSize, unsigned StoreAlignment, Value *StoredVal, Instruction *TheStore, const SCEVAddRecExpr *Ev, const SCEV *BECount) argument
551 processLoopStoreOfLoopLoad(StoreInst *SI, unsigned StoreSize, const SCEVAddRecExpr *StoreEv, const SCEVAddRecExpr *LoadEv, const SCEV *BECount) argument
[all...]
H A DMemCpyOptimizer.cpp212 int64_t StoreSize = TD.getTypeStoreSize(SI->getOperand(0)->getType()); local
214 addRange(OffsetFromFirst, StoreSize,
H A DGVN.cpp766 uint64_t StoreSize = TD.getTypeSizeInBits(StoredValTy); local
770 if (StoreSize == LoadSize) {
798 assert(StoreSize >= LoadSize && "CanCoerceMustAliasedValueToLoad fail");
808 StoredValTy = IntegerType::get(StoredValTy->getContext(), StoreSize);
815 Constant *Val = ConstantInt::get(StoredVal->getType(), StoreSize-LoadSize);
879 uint64_t StoreSize = WriteSizeInBits >> 3; // Convert to bytes.
885 isAAFailure = StoreOffset+int64_t(StoreSize) <= LoadOffset;
906 StoreOffset+StoreSize < LoadOffset+LoadSize)
925 uint64_t StoreSize =TD.getTypeSizeInBits(DepSI->getValueOperand()->getType()); local
927 StorePtr, StoreSize, T
1015 uint64_t StoreSize = (TD.getTypeSizeInBits(SrcVal->getType()) + 7) / 8; local
[all...]
/external/clang/lib/CodeGen/
H A DCGBuiltin.cpp985 CharUnits StoreSize = getContext().getTypeSizeInChars(ElTy); local
987 StoreSize.getQuantity() * 8);
991 Store->setAlignment(StoreSize.getQuantity());

Completed in 101 milliseconds