Lines Matching refs:MLK

8269     AAMemoryLocation::MemoryLocationsKind MLK) {  in getMemoryLocationsAsStr()  argument
8270 if (0 == (MLK & AAMemoryLocation::NO_LOCATIONS)) in getMemoryLocationsAsStr()
8272 if (MLK == AAMemoryLocation::NO_LOCATIONS) in getMemoryLocationsAsStr()
8275 if (0 == (MLK & AAMemoryLocation::NO_LOCAL_MEM)) in getMemoryLocationsAsStr()
8277 if (0 == (MLK & AAMemoryLocation::NO_CONST_MEM)) in getMemoryLocationsAsStr()
8279 if (0 == (MLK & AAMemoryLocation::NO_GLOBAL_INTERNAL_MEM)) in getMemoryLocationsAsStr()
8281 if (0 == (MLK & AAMemoryLocation::NO_GLOBAL_EXTERNAL_MEM)) in getMemoryLocationsAsStr()
8283 if (0 == (MLK & AAMemoryLocation::NO_ARGUMENT_MEM)) in getMemoryLocationsAsStr()
8285 if (0 == (MLK & AAMemoryLocation::NO_INACCESSIBLE_MEM)) in getMemoryLocationsAsStr()
8287 if (0 == (MLK & AAMemoryLocation::NO_MALLOCED_MEM)) in getMemoryLocationsAsStr()
8289 if (0 == (MLK & AAMemoryLocation::NO_UNKOWN_MEM)) in getMemoryLocationsAsStr()
8517 MemoryLocationsKind MLK, const Instruction *I, in updateStateAndAccessesMap()
8521 assert(isPowerOf2_32(MLK) && "Expected a single location set!"); in updateStateAndAccessesMap()
8522 auto *&Accesses = AccessKind2Accesses[llvm::Log2_32(MLK)]; in updateStateAndAccessesMap()
8526 if (MLK == NO_UNKOWN_MEM) in updateStateAndAccessesMap()
8527 MLK = NO_LOCATIONS; in updateStateAndAccessesMap()
8528 State.removeAssumedBits(MLK); in updateStateAndAccessesMap()
8551 MemoryLocationsKind MLK = NO_LOCATIONS; in categorizePtrValue() local
8570 MLK = NO_ARGUMENT_MEM; in categorizePtrValue()
8580 MLK = NO_GLOBAL_INTERNAL_MEM; in categorizePtrValue()
8582 MLK = NO_GLOBAL_EXTERNAL_MEM; in categorizePtrValue()
8588 MLK = NO_LOCAL_MEM; in categorizePtrValue()
8594 MLK = NO_MALLOCED_MEM; in categorizePtrValue()
8596 MLK = NO_UNKOWN_MEM; in categorizePtrValue()
8598 MLK = NO_UNKOWN_MEM; in categorizePtrValue()
8601 assert(MLK != NO_LOCATIONS && "No location specified!"); in categorizePtrValue()
8603 << Obj << " -> " << getMemoryLocationsAsStr(MLK) << "\n"); in categorizePtrValue()
8604 updateStateAndAccessesMap(State, MLK, &I, &Obj, Changed, in categorizePtrValue()
8699 AccessKind Kind, MemoryLocationsKind MLK) { in categorizeAccessedLocations() argument
8700 updateStateAndAccessesMap(AccessedLocs, MLK, &I, Ptr, Changed, in categorizeAccessedLocations()
8765 MemoryLocationsKind MLK = categorizeAccessedLocations(A, I, Changed); in updateImpl() local
8767 << ": " << getMemoryLocationsAsStr(MLK) << "\n"); in updateImpl()
8768 removeAssumedBits(inverseLocation(MLK, false, false)); in updateImpl()
8815 AccessKind Kind, MemoryLocationsKind MLK) { in updateImpl() argument
8816 updateStateAndAccessesMap(getState(), MLK, I, Ptr, Changed, in updateImpl()