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

  /external/llvm/lib/Target/PowerPC/
PPCHazardRecognizers.h 63 uint64_t StoreSize[4];
  /external/llvm/lib/Transforms/Scalar/
LoopIdiomRecognize.cpp 85 bool processLoopStridedStore(Value *DestPtr, unsigned StoreSize,
90 bool processLoopStoreOfLoopLoad(StoreInst *SI, unsigned StoreSize,
292 unsigned StoreSize = (unsigned)SizeInBits >> 3;
295 if (Stride == 0 || StoreSize != Stride->getValue()->getValue()) {
299 if (0 && Stride && StoreSize == -Stride->getValue()->getValue()) {
308 if (processLoopStridedStore(StorePtr, StoreSize, SI->getAlignment(),
320 if (processLoopStoreOfLoopLoad(SI, StoreSize, StoreEv, LoadEv, BECount))
372 unsigned StoreSize, AliasAnalysis &AA,
380 // to be exactly the size of the memset, which is (BECount+1)*StoreSize
382 AccessSize = (BECst->getValue()->getZExtValue()+1)*StoreSize;
    [all...]
MemCpyOptimizer.cpp 212 int64_t StoreSize = TD.getTypeStoreSize(SI->getOperand(0)->getType());
214 addRange(OffsetFromFirst, StoreSize,
    [all...]
GVN.cpp 766 uint64_t StoreSize = TD.getTypeSizeInBits(StoredValTy);
770 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...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]

Completed in 1611 milliseconds