Home | History | Annotate | Download | only in Analysis

Lines Matching defs:Objects

40 STATISTIC(NumIndirectGlobalVars, "Number of indirect global objects");
864 SmallVector<Value*, 4> Objects;
865 GetUnderlyingObjects(A, Objects, DL);
867 // All objects must be identified.
868 if (!std::all_of(Objects.begin(), Objects.end(), isIdentifiedObject) &&
869 // Try ::alias to see if all objects are known not to alias GV.
870 !std::all_of(Objects.begin(), Objects.end(), [&](Value *V) {
875 if (std::find(Objects.begin(), Objects.end(), GV) != Objects.end())
879 // We identified all objects in the argument list, and none of them were GV.