Home | History | Annotate | Download | only in Analysis

Lines Matching defs:Size

100 /// getObjectSize - Return the size of the object specified by V, or
105 uint64_t Size;
106 if (getObjectSize(V, Size, DL, &TLI, RoundToAlign))
107 return Size;
112 /// by V is smaller than Size.
113 static bool isObjectSmallerThan(const Value *V, uint64_t Size,
134 // parameter, before the llvm::getObjectSize() is called to get the size of
145 // This function needs to use the aligned object size because we allow
149 return ObjectSize != AliasAnalysis::UnknownSize && ObjectSize < Size;
153 /// by V has size Size.
154 static bool isObjectSize(const Value *V, uint64_t Size,
157 return ObjectSize != AliasAnalysis::UnknownSize && ObjectSize == Size;
370 // If the integer type is smaller than the pointer size, it is implicitly
371 // sign extended to pointer size.
390 for (unsigned i = 0, e = VarIndices.size(); i != e; ++i) {
400 // pointer size.
466 AliasResult Alias = aliasCheck(LocA.Ptr, LocA.Size, LocA.AATags,
467 LocB.Ptr, LocB.Size, LocB.AATags);
734 Loc.Size = LenCI->getZExtValue();
746 Loc.Size = cast<ConstantInt>(II->getArgOperand(0))->getZExtValue();
753 Loc.Size = cast<ConstantInt>(II->getArgOperand(1))->getZExtValue();
763 Loc.Size = DL->getTypeStoreSize(II->getType());
771 Loc.Size = DL->getTypeStoreSize(II->getArgOperand(1)->getType());
785 Loc.Size = 16;
788 Loc.Size = LenCI->getZExtValue();
903 // If we don't know the size of the accesses through both GEPs, we can't
1026 // Do the base pointers alias assuming type and size.
1111 // If both accesses are unknown size, we can't do anything useful here.
1151 // is less than the size of the associated memory object, then we know
1181 for (unsigned i = 0, e = GEP1VariableIndices.size(); i != e; ++i) {
1362 for (unsigned i = 1, e = V1Srcs.size(); i != e; ++i) {
1453 // If the size of one access is larger than the entire object on the other
1532 if (VisitedPhiBBs.size() > MaxNumPhiBBsValueReachabilityCheck)
1562 for (unsigned i = 0, e = Src.size(); i != e; ++i) {
1569 for (unsigned j = 0, e = Dest.size(); j != e; ++j) {