Lines Matching refs:point
75 ProgramPoint point; in initializeAndRun() local
81 std::tie(point, analysis) = worklist.front(); in initializeAndRun()
85 << "' on: " << point << "\n"); in initializeAndRun()
86 if (failed(analysis->visit(point))) in initializeAndRun()
101 << " of " << state->point << "\n" in propagateIfChanged()
111 ProgramPoint point) { in addDependency() argument
112 auto inserted = state->dependents.insert({point, analysis}); in addDependency()
117 << " of " << state->point << "\nand " << analysis->debugName in addDependency()
118 << " on " << point << "\n"; in addDependency()
131 void DataFlowAnalysis::addDependency(AnalysisState *state, ProgramPoint point) { in addDependency() argument
132 solver.addDependency(state, this, point); in addDependency()