* [PATCH] ftrace: Add vim script to enable folding for function_graph traces
@ 2009-08-06 14:57 Josh Triplett
2009-08-07 0:04 ` Steven Rostedt
2009-08-26 7:22 ` [tip:tracing/core] tracing: " tip-bot for Josh Triplett
0 siblings, 2 replies; 3+ messages in thread
From: Josh Triplett @ 2009-08-06 14:57 UTC (permalink / raw)
To: linux-kernel; +Cc: Ingo Molnar, Steven Rostedt
function_graph traces look like nested function calls, complete with
braces denoting the start and end of functions. function-graph-fold.vim
teaches vim how to fold these functions, to make it more convenient to
browse them.
To use, :source function-graph-fold.vim while viewing a function_graph
trace, or use "view -S function-graph-fold.vim some-trace" to load it
from the command-line together with a trace. You can then use the usual
vim fold commands, such as "za", to open and close nested functions.
While closed, a fold will show the total time taken for a call, as would
normally appear on the line with the closing brace. Folded functions
will not include finish_task_switch(), so folding should remain
relatively sane even through a context switch.
Note that this will almost certainly only work well with a single-CPU
trace (e.g. trace-cmd report --cpu 1). It also takes some time to run
(a few seconds for a large trace on my laptop). Nevertheless, I found
it very handy to get an overview of a trace and then drill down on
problematic calls.
Signed-off-by: Josh Triplett <josh@joshtriplett.org>
---
Documentation/trace/function-graph-fold.vim | 42 +++++++++++++++++++++++++++
1 files changed, 42 insertions(+), 0 deletions(-)
create mode 100644 Documentation/trace/function-graph-fold.vim
diff --git a/Documentation/trace/function-graph-fold.vim b/Documentation/trace/function-graph-fold.vim
new file mode 100644
index 0000000..0544b50
--- /dev/null
+++ b/Documentation/trace/function-graph-fold.vim
@@ -0,0 +1,42 @@
+" Enable folding for ftrace function_graph traces.
+"
+" To use, :source this file while viewing a function_graph trace, or use vim's
+" -S option to load from the command-line together with a trace. You can then
+" use the usual vim fold commands, such as "za", to open and close nested
+" functions. While closed, a fold will show the total time taken for a call,
+" as would normally appear on the line with the closing brace. Folded
+" functions will not include finish_task_switch(), so folding should remain
+" relatively sane even through a context switch.
+"
+" Note that this will almost certainly only work well with a
+" single-CPU trace (e.g. trace-cmd report --cpu 1).
+
+function! FunctionGraphFoldExpr(lnum)
+ let line = getline(a:lnum)
+ if line[-1:] == '{'
+ if line =~ 'finish_task_switch() {$'
+ return '>1'
+ endif
+ return 'a1'
+ elseif line[-1:] == '}'
+ return 's1'
+ else
+ return '='
+ endif
+endfunction
+
+function! FunctionGraphFoldText()
+ let s = split(getline(v:foldstart), '|', 1)
+ if getline(v:foldend+1) =~ 'finish_task_switch() {$'
+ let s[2] = ' task switch '
+ else
+ let e = split(getline(v:foldend), '|', 1)
+ let s[2] = e[2]
+ endif
+ return join(s, '|')
+endfunction
+
+setlocal foldexpr=FunctionGraphFoldExpr(v:lnum)
+setlocal foldtext=FunctionGraphFoldText()
+setlocal foldcolumn=12
+setlocal foldmethod=expr
--
1.6.3.3
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] ftrace: Add vim script to enable folding for function_graph traces
2009-08-06 14:57 [PATCH] ftrace: Add vim script to enable folding for function_graph traces Josh Triplett
@ 2009-08-07 0:04 ` Steven Rostedt
2009-08-26 7:22 ` [tip:tracing/core] tracing: " tip-bot for Josh Triplett
1 sibling, 0 replies; 3+ messages in thread
From: Steven Rostedt @ 2009-08-07 0:04 UTC (permalink / raw)
To: Josh Triplett; +Cc: linux-kernel, Ingo Molnar
On Thu, 6 Aug 2009, Josh Triplett wrote:
> function_graph traces look like nested function calls, complete with
> braces denoting the start and end of functions. function-graph-fold.vim
> teaches vim how to fold these functions, to make it more convenient to
> browse them.
>
> To use, :source function-graph-fold.vim while viewing a function_graph
> trace, or use "view -S function-graph-fold.vim some-trace" to load it
> from the command-line together with a trace. You can then use the usual
> vim fold commands, such as "za", to open and close nested functions.
> While closed, a fold will show the total time taken for a call, as would
> normally appear on the line with the closing brace. Folded functions
> will not include finish_task_switch(), so folding should remain
> relatively sane even through a context switch.
>
> Note that this will almost certainly only work well with a single-CPU
> trace (e.g. trace-cmd report --cpu 1). It also takes some time to run
> (a few seconds for a large trace on my laptop). Nevertheless, I found
> it very handy to get an overview of a trace and then drill down on
> problematic calls.
>
> Signed-off-by: Josh Triplett <josh@joshtriplett.org>
Thanks Josh,
I queued it up for 32.
-- Steve
^ permalink raw reply [flat|nested] 3+ messages in thread
* [tip:tracing/core] tracing: Add vim script to enable folding for function_graph traces
2009-08-06 14:57 [PATCH] ftrace: Add vim script to enable folding for function_graph traces Josh Triplett
2009-08-07 0:04 ` Steven Rostedt
@ 2009-08-26 7:22 ` tip-bot for Josh Triplett
1 sibling, 0 replies; 3+ messages in thread
From: tip-bot for Josh Triplett @ 2009-08-26 7:22 UTC (permalink / raw)
To: linux-tip-commits; +Cc: linux-kernel, hpa, mingo, rostedt, josh, tglx
Commit-ID: 6591b493871cf9b17de2ba272edb8ab529a8058b
Gitweb: http://git.kernel.org/tip/6591b493871cf9b17de2ba272edb8ab529a8058b
Author: Josh Triplett <josh@joshtriplett.org>
AuthorDate: Thu, 6 Aug 2009 07:57:01 -0700
Committer: Steven Rostedt <rostedt@goodmis.org>
CommitDate: Wed, 26 Aug 2009 00:32:04 -0400
tracing: Add vim script to enable folding for function_graph traces
function_graph traces look like nested function calls, complete with
braces denoting the start and end of functions. function-graph-fold.vim
teaches vim how to fold these functions, to make it more convenient to
browse them.
To use, :source function-graph-fold.vim while viewing a function_graph
trace, or use "view -S function-graph-fold.vim some-trace" to load it
from the command-line together with a trace. You can then use the usual
vim fold commands, such as "za", to open and close nested functions.
While closed, a fold will show the total time taken for a call, as would
normally appear on the line with the closing brace. Folded functions
will not include finish_task_switch(), so folding should remain
relatively sane even through a context switch.
Note that this will almost certainly only work well with a single-CPU
trace (e.g. trace-cmd report --cpu 1). It also takes some time to run
(a few seconds for a large trace on my laptop). Nevertheless, I found
it very handy to get an overview of a trace and then drill down on
problematic calls.
Signed-off-by: Josh Triplett <josh@joshtriplett.org>
LKML-Reference: <20090806145701.GB7661@feather>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
---
Documentation/trace/function-graph-fold.vim | 42 +++++++++++++++++++++++++++
1 files changed, 42 insertions(+), 0 deletions(-)
diff --git a/Documentation/trace/function-graph-fold.vim b/Documentation/trace/function-graph-fold.vim
new file mode 100644
index 0000000..0544b50
--- /dev/null
+++ b/Documentation/trace/function-graph-fold.vim
@@ -0,0 +1,42 @@
+" Enable folding for ftrace function_graph traces.
+"
+" To use, :source this file while viewing a function_graph trace, or use vim's
+" -S option to load from the command-line together with a trace. You can then
+" use the usual vim fold commands, such as "za", to open and close nested
+" functions. While closed, a fold will show the total time taken for a call,
+" as would normally appear on the line with the closing brace. Folded
+" functions will not include finish_task_switch(), so folding should remain
+" relatively sane even through a context switch.
+"
+" Note that this will almost certainly only work well with a
+" single-CPU trace (e.g. trace-cmd report --cpu 1).
+
+function! FunctionGraphFoldExpr(lnum)
+ let line = getline(a:lnum)
+ if line[-1:] == '{'
+ if line =~ 'finish_task_switch() {$'
+ return '>1'
+ endif
+ return 'a1'
+ elseif line[-1:] == '}'
+ return 's1'
+ else
+ return '='
+ endif
+endfunction
+
+function! FunctionGraphFoldText()
+ let s = split(getline(v:foldstart), '|', 1)
+ if getline(v:foldend+1) =~ 'finish_task_switch() {$'
+ let s[2] = ' task switch '
+ else
+ let e = split(getline(v:foldend), '|', 1)
+ let s[2] = e[2]
+ endif
+ return join(s, '|')
+endfunction
+
+setlocal foldexpr=FunctionGraphFoldExpr(v:lnum)
+setlocal foldtext=FunctionGraphFoldText()
+setlocal foldcolumn=12
+setlocal foldmethod=expr
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-08-26 7:23 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-06 14:57 [PATCH] ftrace: Add vim script to enable folding for function_graph traces Josh Triplett
2009-08-07 0:04 ` Steven Rostedt
2009-08-26 7:22 ` [tip:tracing/core] tracing: " tip-bot for Josh Triplett
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox