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

/external/llvm/lib/Target/PowerPC/
H A DPPCHazardRecognizers.h74 uint64_t StoreSize[4]; member in class:llvm::PPCHazardRecognizer970
/external/llvm/lib/Transforms/Scalar/
H A DLoopIdiomRecognize.cpp152 bool processLoopStridedStore(Value *DestPtr, unsigned StoreSize,
157 bool processLoopStoreOfLoopLoad(StoreInst *SI, unsigned StoreSize,
793 unsigned StoreSize = (unsigned)SizeInBits >> 3; local
796 if (!Stride || StoreSize != Stride->getValue()->getValue()) {
800 if (0 && Stride && StoreSize == -Stride->getValue()->getValue()) {
809 if (processLoopStridedStore(StorePtr, StoreSize, SI->getAlignment(),
821 if (processLoopStoreOfLoopLoad(SI, StoreSize, StoreEv, LoadEv, BECount))
873 unsigned StoreSize, AliasAnalysis &AA,
881 // to be exactly the size of the memset, which is (BECount+1)*StoreSize
883 AccessSize = (BECst->getValue()->getZExtValue()+1)*StoreSize;
871 mayLoopAccessLocation(Value *Ptr,AliasAnalysis::ModRefResult Access, Loop *L, const SCEV *BECount, unsigned StoreSize, AliasAnalysis &AA, Instruction *IgnoredStore) argument
943 processLoopStridedStore(Value *DestPtr, unsigned StoreSize, unsigned StoreAlignment, Value *StoredVal, Instruction *TheStore, const SCEVAddRecExpr *Ev, const SCEV *BECount) argument
1064 processLoopStoreOfLoopLoad(StoreInst *SI, unsigned StoreSize, const SCEVAddRecExpr *StoreEv, const SCEVAddRecExpr *LoadEv, const SCEV *BECount) argument
[all...]
H A DMemCpyOptimizer.cpp223 int64_t StoreSize = DL.getTypeStoreSize(SI->getOperand(0)->getType()); local
225 addRange(OffsetFromFirst, StoreSize,
H A DGVN.cpp865 uint64_t StoreSize = DL.getTypeSizeInBits(StoredValTy); local
869 if (StoreSize == LoadSize) {
898 assert(StoreSize >= LoadSize && "CanCoerceMustAliasedValueToLoad fail");
908 StoredValTy = IntegerType::get(StoredValTy->getContext(), StoreSize);
915 Constant *Val = ConstantInt::get(StoredVal->getType(), StoreSize-LoadSize);
979 uint64_t StoreSize = WriteSizeInBits >> 3; // Convert to bytes.
985 isAAFailure = StoreOffset+int64_t(StoreSize) <= LoadOffset;
1006 StoreOffset+StoreSize < LoadOffset+LoadSize)
1025 uint64_t StoreSize =DL.getTypeSizeInBits(DepSI->getValueOperand()->getType()); local
1027 StorePtr, StoreSize, D
1116 uint64_t StoreSize = (DL.getTypeSizeInBits(SrcVal->getType()) + 7) / 8; local
[all...]
/external/llvm/lib/Target/R600/
H A DAMDGPUISelLowering.cpp89 unsigned StoreSize = VT.getStoreSizeInBits(); local
90 if (StoreSize <= 32)
91 return EVT::getIntegerVT(Ctx, StoreSize);
93 assert(StoreSize % 32 == 0 && "Store size not a multiple of 32");
94 return EVT::getVectorVT(Ctx, MVT::i32, StoreSize / 32);
99 unsigned StoreSize = VT.getStoreSizeInBits(); local
100 if (StoreSize <= 32)
103 return EVT::getVectorVT(Ctx, MVT::i32, StoreSize / 32);
/external/clang/lib/CodeGen/
H A DCGBuiltin.cpp1032 CharUnits StoreSize = getContext().getTypeSizeInChars(ElTy); local
1034 StoreSize.getQuantity() * 8);
1038 Store->setAlignment(StoreSize.getQuantity());

Completed in 554 milliseconds