Home
last modified time | relevance | path

Searched refs:StoreSize (Results 1 – 7 of 7) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
DLoopIdiomRecognize.cpp85 bool processLoopStridedStore(Value *DestPtr, unsigned StoreSize,
90 bool processLoopStoreOfLoopLoad(StoreInst *SI, unsigned StoreSize,
290 unsigned StoreSize = (unsigned)SizeInBits >> 3; in processLoopStore() local
293 if (Stride == 0 || StoreSize != Stride->getValue()->getValue()) { in processLoopStore()
297 if (0 && Stride && StoreSize == -Stride->getValue()->getValue()) { in processLoopStore()
306 if (processLoopStridedStore(StorePtr, StoreSize, SI->getAlignment(), in processLoopStore()
318 if (processLoopStoreOfLoopLoad(SI, StoreSize, StoreEv, LoadEv, BECount)) in processLoopStore()
370 unsigned StoreSize, AliasAnalysis &AA, in mayLoopAccessLocation() argument
380 AccessSize = (BECst->getValue()->getZExtValue()+1)*StoreSize; in mayLoopAccessLocation()
440 processLoopStridedStore(Value *DestPtr, unsigned StoreSize, in processLoopStridedStore() argument
[all …]
DGVN.cpp754 uint64_t StoreSize = TD.getTypeSizeInBits(StoredValTy); in CoerceAvailableValueToLoadType() local
758 if (StoreSize == LoadSize) { in CoerceAvailableValueToLoadType()
786 assert(StoreSize >= LoadSize && "CanCoerceMustAliasedValueToLoad fail"); in CoerceAvailableValueToLoadType()
796 StoredValTy = IntegerType::get(StoredValTy->getContext(), StoreSize); in CoerceAvailableValueToLoadType()
803 Constant *Val = ConstantInt::get(StoredVal->getType(), StoreSize-LoadSize); in CoerceAvailableValueToLoadType()
867 uint64_t StoreSize = WriteSizeInBits >> 3; // Convert to bytes. in AnalyzeLoadFromClobberingWrite() local
873 isAAFailure = StoreOffset+int64_t(StoreSize) <= LoadOffset; in AnalyzeLoadFromClobberingWrite()
894 StoreOffset+StoreSize < LoadOffset+LoadSize) in AnalyzeLoadFromClobberingWrite()
913 uint64_t StoreSize =TD.getTypeSizeInBits(DepSI->getValueOperand()->getType()); in AnalyzeLoadFromClobberingStore() local
915 StorePtr, StoreSize, TD); in AnalyzeLoadFromClobberingStore()
[all …]
DMemCpyOptimizer.cpp212 int64_t StoreSize = TD.getTypeStoreSize(SI->getOperand(0)->getType()); in addStore() local
214 addRange(OffsetFromFirst, StoreSize, in addStore()
/external/llvm/lib/Target/PowerPC/
DPPCHazardRecognizers.cpp123 if (int64_t(StoreOffset[i]+StoreSize[i]) > LoadOffset) return true; in isLoadOfStoredAddress()
216 StoreSize[NumStores] = MO->getSize(); in EmitInstruction()
DPPCHazardRecognizers.h63 uint64_t StoreSize[4]; variable
/external/llvm/lib/CodeGen/
DMachineFunction.cpp671 uint64_t StoreSize = TD->getTypeStoreSize(A->getType()); in CanShareConstantPoolEntry() local
672 if (StoreSize != TD->getTypeStoreSize(B->getType()) || in CanShareConstantPoolEntry()
673 StoreSize > 128) in CanShareConstantPoolEntry()
676 Type *IntTy = IntegerType::get(A->getContext(), StoreSize*8); in CanShareConstantPoolEntry()
/external/clang/lib/CodeGen/
DCGBuiltin.cpp946 CharUnits StoreSize = getContext().getTypeSizeInChars(ElTy); in EmitBuiltinExpr() local
948 StoreSize.getQuantity() * 8); in EmitBuiltinExpr()
952 Store->setAlignment(StoreSize.getQuantity()); in EmitBuiltinExpr()