Lines Matching refs:program_point
187 class program_point
190 program_point (const function_point &fn_point, in program_point() function
202 bool operator== (const program_point &other) const
261 static program_point from_function_entry (const supergraph &sg, in from_function_entry()
264 return program_point (function_point::from_function_entry (sg, fun), in from_function_entry()
268 static program_point before_supernode (const supernode *supernode, in before_supernode()
272 return program_point (function_point::before_supernode (supernode, in before_supernode()
277 static program_point before_stmt (const supernode *supernode, in before_stmt()
281 return program_point (function_point::before_stmt (supernode, stmt_idx), in before_stmt()
285 static program_point after_supernode (const supernode *supernode, in after_supernode()
288 return program_point (function_point::after_supernode (supernode), in after_supernode()
294 static program_point empty () in empty()
296 return program_point (function_point::empty (), call_string ()); in empty()
298 static program_point deleted () in deleted()
300 return program_point (function_point::deleted (), call_string ()); in deleted()