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

  /external/llvm/lib/Transforms/Scalar/
LoopIdiomRecognize.cpp 152 bool processLoopStridedStore(Value *DestPtr, unsigned StoreSize,
157 bool processLoopStoreOfLoopLoad(StoreInst *SI, unsigned StoreSize,
793 unsigned StoreSize = (unsigned)SizeInBits >> 3;
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;
    [all...]
GVN.cpp 865 uint64_t StoreSize = DL.getTypeSizeInBits(StoredValTy);
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);
    [all...]
MemCpyOptimizer.cpp 223 int64_t StoreSize = DL.getTypeStoreSize(SI->getOperand(0)->getType());
225 addRange(OffsetFromFirst, StoreSize,
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCHazardRecognizers.h 74 uint64_t StoreSize[4];
PPCHazardRecognizers.cpp 296 /// as indicated by StorePtr1/StorePtr2/StoreSize, return true.
311 if (int64_t(StoreOffset[i]+StoreSize[i]) > LoadOffset) return true;
404 StoreSize[NumStores] = MO->getSize();
  /frameworks/compile/slang/
slang_rs_export_type.h 555 size_t StoreSize,
560 mStoreSize(StoreSize),
  /external/llvm/lib/CodeGen/
MachineFunction.cpp 866 uint64_t StoreSize = TD->getTypeStoreSize(A->getType());
867 if (StoreSize != TD->getTypeStoreSize(B->getType()) || StoreSize > 128)
870 Type *IntTy = IntegerType::get(A->getContext(), StoreSize*8);
    [all...]
  /external/llvm/lib/Target/R600/
AMDGPUISelLowering.cpp 89 unsigned StoreSize = VT.getStoreSizeInBits();
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();
100 if (StoreSize <= 32)
103 return EVT::getVectorVT(Ctx, MVT::i32, StoreSize / 32);
    [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]

Completed in 189 milliseconds