Lines Matching refs:Size

20 // component specifies the base memory address of the region. The Size specifies
27 // alias, regardless of the value of the Size component.
109 /// Size - The maximum size of the location, in address-units, or
114 uint64_t Size;
121 : Ptr(P), Size(S), TBAATag(N) {}
131 Copy.Size = NewSize;
380 const Value *P, uint64_t Size) {
381 return getModRefInfo(I, Location(P, Size));
391 const Value *P, uint64_t Size) {
392 return getModRefInfo(CS, Location(P, Size));
402 ModRefResult getModRefInfo(const CallInst *C, const Value *P, uint64_t Size) {
403 return getModRefInfo(C, Location(P, Size));
415 const Value *P, uint64_t Size) {
416 return getModRefInfo(I, Location(P, Size));
424 ModRefResult getModRefInfo(const LoadInst *L, const Value *P, uint64_t Size) {
425 return getModRefInfo(L, Location(P, Size));
433 ModRefResult getModRefInfo(const StoreInst *S, const Value *P, uint64_t Size){
434 return getModRefInfo(S, Location(P, Size));
446 ModRefResult getModRefInfo(const FenceInst *S, const Value *P, uint64_t Size){
447 return getModRefInfo(S, Location(P, Size));
456 const Value *P, unsigned Size) {
457 return getModRefInfo(CX, Location(P, Size));
466 const Value *P, unsigned Size) {
467 return getModRefInfo(RMW, Location(P, Size));
475 ModRefResult getModRefInfo(const VAArgInst* I, const Value* P, uint64_t Size){
476 return getModRefInfo(I, Location(P, Size));
494 uint64_t Size, DominatorTree *DT) {
495 return callCapturesBefore(I, Location(P, Size), DT);
507 bool canBasicBlockModify(const BasicBlock &BB, const Value *P, uint64_t Size){
508 return canBasicBlockModify(BB, Location(P, Size));
520 const Value *Ptr, uint64_t Size) {
521 return canInstructionRangeModify(I1, I2, Location(Ptr, Size));
580 DenseMapInfo<uint64_t>::getHashValue(Val.Size) ^
586 LHS.Size == RHS.Size &&