Here's a flame graph of my Opera Helper CPU time, including both kernel and user-level stacks (kernel is above the grey separators):
http://www.brendangregg.com/FlameGraphs/cpu-opera-helper.svg
The 6 towers you see are for each of the 6 Opera Helper processes.
For background on flame graphs:
http://www.brendangregg.com/FlameGraphs/cpuflamegraphs.html
This particular flame graph was generated using:
$ sudo bash
# dtrace -x ustackframes=200 -n 'profile-199 /arg0 && execname == "Opera Helper"/ { @k[stack(), ustack()] = count(); } profile-199 /!arg0 && execname == "Opera Helper"/ { @u[ustack()] = count(); } tick-30s { exit(0); } END { printa("%k%@d\n", @u); printa("%k-%k%@d\n", @k); }' -o out.operahelper
# cat out.operahelper | ../FlameGraph/stackcollapse.pl | ../FlameGraph/flamegraph.pl --title "Opera Helper Flame Graph" > out.operahelper.svg
With the flame graph software from: https://github.com/brendangregg/FlameGraph
Hope that helps.