Home
last modified time | relevance | path

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

/external/llvm/lib/Transforms/Scalar/
DLoopIdiomRecognize.cpp152 bool processLoopStridedStore(Value *DestPtr, unsigned StoreSize,
157 bool processLoopStoreOfLoopLoad(StoreInst *SI, unsigned StoreSize,
793 unsigned StoreSize = (unsigned)SizeInBits >> 3; in processLoopStore() local
796 if (!Stride || StoreSize != Stride->getValue()->getValue()) { in processLoopStore()
800 if (0 && Stride && StoreSize == -Stride->getValue()->getValue()) { in processLoopStore()
809 if (processLoopStridedStore(StorePtr, StoreSize, SI->getAlignment(), in processLoopStore()
821 if (processLoopStoreOfLoopLoad(SI, StoreSize, StoreEv, LoadEv, BECount)) in processLoopStore()
873 unsigned StoreSize, AliasAnalysis &AA, in mayLoopAccessLocation() argument
883 AccessSize = (BECst->getValue()->getZExtValue()+1)*StoreSize; in mayLoopAccessLocation()
943 processLoopStridedStore(Value *DestPtr, unsigned StoreSize, in processLoopStridedStore() argument
[all …]
DGVN.cpp865 uint64_t StoreSize = DL.getTypeSizeInBits(StoredValTy); in CoerceAvailableValueToLoadType() local
869 if (StoreSize == LoadSize) { in CoerceAvailableValueToLoadType()
898 assert(StoreSize >= LoadSize && "CanCoerceMustAliasedValueToLoad fail"); in CoerceAvailableValueToLoadType()
908 StoredValTy = IntegerType::get(StoredValTy->getContext(), StoreSize); in CoerceAvailableValueToLoadType()
915 Constant *Val = ConstantInt::get(StoredVal->getType(), StoreSize-LoadSize); in CoerceAvailableValueToLoadType()
979 uint64_t StoreSize = WriteSizeInBits >> 3; // Convert to bytes. in AnalyzeLoadFromClobberingWrite() local
985 isAAFailure = StoreOffset+int64_t(StoreSize) <= LoadOffset; in AnalyzeLoadFromClobberingWrite()
1006 StoreOffset+StoreSize < LoadOffset+LoadSize) in AnalyzeLoadFromClobberingWrite()
1025 uint64_t StoreSize =DL.getTypeSizeInBits(DepSI->getValueOperand()->getType()); in AnalyzeLoadFromClobberingStore() local
1027 StorePtr, StoreSize, DL); in AnalyzeLoadFromClobberingStore()
[all …]
DMemCpyOptimizer.cpp223 int64_t StoreSize = DL.getTypeStoreSize(SI->getOperand(0)->getType()); in addStore() local
225 addRange(OffsetFromFirst, StoreSize, in addStore()
/external/llvm/lib/Target/PowerPC/
DPPCHazardRecognizers.h74 uint64_t StoreSize[4]; variable
DPPCHazardRecognizers.cpp311 if (int64_t(StoreOffset[i]+StoreSize[i]) > LoadOffset) return true; in isLoadOfStoredAddress()
404 StoreSize[NumStores] = MO->getSize(); in EmitInstruction()
/external/llvm/lib/CodeGen/
DMachineFunction.cpp866 uint64_t StoreSize = TD->getTypeStoreSize(A->getType()); in CanShareConstantPoolEntry() local
867 if (StoreSize != TD->getTypeStoreSize(B->getType()) || StoreSize > 128) in CanShareConstantPoolEntry()
870 Type *IntTy = IntegerType::get(A->getContext(), StoreSize*8); in CanShareConstantPoolEntry()
/external/llvm/lib/Target/R600/
DAMDGPUISelLowering.cpp89 unsigned StoreSize = VT.getStoreSizeInBits(); in getEquivalentMemType() local
90 if (StoreSize <= 32) in getEquivalentMemType()
91 return EVT::getIntegerVT(Ctx, StoreSize); in getEquivalentMemType()
93 assert(StoreSize % 32 == 0 && "Store size not a multiple of 32"); in getEquivalentMemType()
94 return EVT::getVectorVT(Ctx, MVT::i32, StoreSize / 32); in getEquivalentMemType()
99 unsigned StoreSize = VT.getStoreSizeInBits(); in getEquivalentLoadRegType() local
100 if (StoreSize <= 32) in getEquivalentLoadRegType()
103 return EVT::getVectorVT(Ctx, MVT::i32, StoreSize / 32); in getEquivalentLoadRegType()
/external/clang/lib/CodeGen/
DCGBuiltin.cpp1032 CharUnits StoreSize = getContext().getTypeSizeInChars(ElTy); in EmitBuiltinExpr() local
1034 StoreSize.getQuantity() * 8); in EmitBuiltinExpr()
1038 Store->setAlignment(StoreSize.getQuantity()); in EmitBuiltinExpr()