HomeSort by relevance Sort by last modified time
    Searched refs:StoreSize (Results 1 - 7 of 7) sorted by null

  /external/llvm/lib/Transforms/Scalar/
LoopIdiomRecognize.cpp 85 bool processLoopStridedStore(Value *DestPtr, unsigned StoreSize,
90 bool processLoopStoreOfLoopLoad(StoreInst *SI, unsigned StoreSize,
290 unsigned StoreSize = (unsigned)SizeInBits >> 3;
293 if (Stride == 0 || StoreSize != Stride->getValue()->getValue()) {
297 if (0 && Stride && StoreSize == -Stride->getValue()->getValue()) {
306 if (processLoopStridedStore(StorePtr, StoreSize, SI->getAlignment(),
318 if (processLoopStoreOfLoopLoad(SI, StoreSize, StoreEv, LoadEv, BECount))
370 unsigned StoreSize, AliasAnalysis &AA,
378 // to be exactly the size of the memset, which is (BECount+1)*StoreSize
380 AccessSize = (BECst->getValue()->getZExtValue()+1)*StoreSize;
    [all...]
GVN.cpp 754 uint64_t StoreSize = TD.getTypeSizeInBits(StoredValTy);
758 if (StoreSize == LoadSize) {
786 assert(StoreSize >= LoadSize && "CanCoerceMustAliasedValueToLoad fail");
796 StoredValTy = IntegerType::get(StoredValTy->getContext(), StoreSize);
803 Constant *Val = ConstantInt::get(StoredVal->getType(), StoreSize-LoadSize);
867 uint64_t StoreSize = WriteSizeInBits >> 3; // Convert to bytes.
873 isAAFailure = StoreOffset+int64_t(StoreSize) <= LoadOffset;
894 StoreOffset+StoreSize < LoadOffset+LoadSize)
913 uint64_t StoreSize =TD.getTypeSizeInBits(DepSI->getValueOperand()->getType());
915 StorePtr, StoreSize, TD)
    [all...]
MemCpyOptimizer.cpp 212 int64_t StoreSize = TD.getTypeStoreSize(SI->getOperand(0)->getType());
214 addRange(OffsetFromFirst, StoreSize,
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCHazardRecognizers.h 63 uint64_t StoreSize[4];
PPCHazardRecognizers.cpp 108 /// as indicated by StorePtr1/StorePtr2/StoreSize, return true.
123 if (int64_t(StoreOffset[i]+StoreSize[i]) > LoadOffset) return true;
216 StoreSize[NumStores] = MO->getSize();
  /external/llvm/lib/CodeGen/
MachineFunction.cpp 671 uint64_t StoreSize = TD->getTypeStoreSize(A->getType());
672 if (StoreSize != TD->getTypeStoreSize(B->getType()) ||
673 StoreSize > 128)
676 Type *IntTy = IntegerType::get(A->getContext(), StoreSize*8);
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]

Completed in 161 milliseconds