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

  /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/Transforms/Scalar/
LoopIdiomRecognize.cpp 153 bool processLoopStridedStore(Value *DestPtr, unsigned StoreSize,
158 bool processLoopStoreOfLoopLoad(StoreInst *SI, unsigned StoreSize,
794 unsigned StoreSize = (unsigned)SizeInBits >> 3;
797 if (Stride == 0 || StoreSize != Stride->getValue()->getValue()) {
801 if (0 && Stride && StoreSize == -Stride->getValue()->getValue()) {
810 if (processLoopStridedStore(StorePtr, StoreSize, SI->getAlignment(),
822 if (processLoopStoreOfLoopLoad(SI, StoreSize, StoreEv, LoadEv, BECount))
874 unsigned StoreSize, AliasAnalysis &AA,
882 // to be exactly the size of the memset, which is (BECount+1)*StoreSize
884 AccessSize = (BECst->getValue()->getZExtValue()+1)*StoreSize;
    [all...]
GVN.cpp 765 uint64_t StoreSize = TD.getTypeSizeInBits(StoredValTy);
769 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)
    [all...]
MemCpyOptimizer.cpp 212 int64_t StoreSize = TD.getTypeStoreSize(SI->getOperand(0)->getType());
214 addRange(OffsetFromFirst, StoreSize,
    [all...]
  /external/llvm/lib/CodeGen/
MachineFunction.cpp 812 uint64_t StoreSize = TD->getTypeStoreSize(A->getType());
813 if (StoreSize != TD->getTypeStoreSize(B->getType()) ||
814 StoreSize > 128)
817 Type *IntTy = IntegerType::get(A->getContext(), StoreSize*8);
    [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]

Completed in 269 milliseconds