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 59 unsigned StoreSize[4];
  /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...]
MemCpyOptimizer.cpp 212 int64_t StoreSize = TD.getTypeStoreSize(SI->getOperand(0)->getType());
214 addRange(OffsetFromFirst, StoreSize,
    [all...]
GVN.cpp 699 uint64_t StoreSize = TD.getTypeSizeInBits(StoredValTy);
703 if (StoreSize == LoadSize) {
731 assert(StoreSize >= LoadSize && "CanCoerceMustAliasedValueToLoad fail");
741 StoredValTy = IntegerType::get(StoredValTy->getContext(), StoreSize);
748 Constant *Val = ConstantInt::get(StoredVal->getType(), StoreSize-LoadSize);
812 uint64_t StoreSize = WriteSizeInBits >> 3; // Convert to bytes.
818 isAAFailure = StoreOffset+int64_t(StoreSize) <= LoadOffset;
839 StoreOffset+StoreSize < LoadOffset+LoadSize)
858 uint64_t StoreSize =TD.getTypeSizeInBits(DepSI->getValueOperand()->getType());
860 StorePtr, StoreSize, TD)
    [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]

Completed in 1528 milliseconds