Lines Matching refs:graph
433 A call graph is a tree showing function call relations. Below is an example.
444 a call graph:
453 A call graph shows how a function calls other functions, and a reversed call graph shows how
454 a function is called by other functions. To show a call graph, we need to first record it, then
457 There are two ways to record a call graph, one is recording a dwarf based call graph, the other is
458 recording a stack frame based call graph. Recording dwarf based call graphs needs support of debug
463 # Record a dwarf based call graph
466 # Record a stack frame based call graph
467 $ simpleperf record -p 11904 --call-graph fp --duration 10
482 previous sample) as the weight of the current sample. As a result, we can get a call graph based
494 dwarf-based-call-graph
641 To report a call graph, please make sure the profiling data is recorded with call graphs,