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

  /external/llvm/lib/Target/PowerPC/
PPCHazardRecognizers.h 74 uint64_t StoreSize[4];
PPCISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 224 int64_t StoreSize = DL.getTypeStoreSize(SI->getOperand(0)->getType());
226 addRange(OffsetFromFirst, StoreSize,
    [all...]
LoopIdiomRecognize.cpp 154 bool processLoopStridedStore(Value *DestPtr, unsigned StoreSize,
159 bool processLoopStoreOfLoopLoad(StoreInst *SI, unsigned StoreSize,
750 unsigned StoreSize = (unsigned)SizeInBits >> 3;
753 if (!Stride || StoreSize != Stride->getValue()->getValue()) {
757 if (0 && Stride && StoreSize == -Stride->getValue()->getValue()) {
766 if (processLoopStridedStore(StorePtr, StoreSize, SI->getAlignment(),
778 if (processLoopStoreOfLoopLoad(SI, StoreSize, StoreEv, LoadEv, BECount))
830 unsigned StoreSize, AliasAnalysis &AA,
838 // to be exactly the size of the memset, which is (BECount+1)*StoreSize
840 AccessSize = (BECst->getValue()->getZExtValue()+1)*StoreSize;
    [all...]
GVN.cpp 871 uint64_t StoreSize = DL.getTypeSizeInBits(StoredValTy);
875 if (StoreSize == LoadSize) {
904 assert(StoreSize >= LoadSize && "CanCoerceMustAliasedValueToLoad fail");
914 StoredValTy = IntegerType::get(StoredValTy->getContext(), StoreSize);
921 Constant *Val = ConstantInt::get(StoredVal->getType(), StoreSize-LoadSize);
    [all...]
  /frameworks/compile/libbcc/lib/Renderscript/
RSForEachExpand.cpp     [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]
  /external/llvm/lib/Target/R600/
AMDGPUISelLowering.cpp 88 unsigned StoreSize = VT.getStoreSizeInBits();
89 if (StoreSize <= 32)
90 return EVT::getIntegerVT(Ctx, StoreSize);
92 assert(StoreSize % 32 == 0 && "Store size not a multiple of 32");
93 return EVT::getVectorVT(Ctx, MVT::i32, StoreSize / 32);
98 unsigned StoreSize = VT.getStoreSizeInBits();
99 if (StoreSize <= 32)
102 return EVT::getVectorVT(Ctx, MVT::i32, StoreSize / 32);
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp 646 unsigned StoreSize = DL.getTypeStoreSize(Shadow->getType());
649 getOriginPtr(Addr, IRB, Alignment), StoreSize,
657 getOriginPtr(Addr, IRB, Alignment), StoreSize,
679 getOriginPtr(Addr, IRBNew, Alignment), StoreSize,
    [all...]

Completed in 758 milliseconds