Home | History | Annotate | Download | only in Scalar

Lines Matching refs:Access

448 /// mayLoopAccessLocation - Return true if the specified loop might access the
449 /// specified pointer location, which is a loop-strided access. The 'Access'
450 /// argument specifies what the verboten forms of access are (read or write).
451 static bool mayLoopAccessLocation(Value *Ptr, ModRefInfo Access, Loop *L,
455 // Get the location that may be stored across the loop. Since the access is
460 // If the loop iterates a fixed number of times, we can refine the access size
474 if (&*I != IgnoredStore && (AA.getModRefInfo(&*I, StoreLoc) & Access))