Tagged Questions

OProfile is a performance analysis tool for Linux systems.

learn more… | top users | synonyms

7
votes
1answer
111 views

Is oprofile still alive and well?

Is the oprofile project still alive and well? I know it is still supported in the default linux kernel and that the user space utilities works (at least on the Arch linux I'm running), but the ...
6
votes
3answers
873 views

Linux time sample based profiler

short version: Is there a good time based sampling profiler for Linux? long version: I generally use OProfile to optimize my applications. I recently found a shortcoming that has me wondering. ...
5
votes
4answers
959 views

Is there any similar tool for Linux that works like Shark on Mac OS X?

Shark on Mac OS X is a great tool for profiling an application on a running system. Is there any similar tools for Linux? OProfile looks like it could be, anyone used it?
4
votes
2answers
531 views

How am I supposed to interpret OProfile output?

I tried profiling my application with OProfile recently. The data gathered is already very valuable to me, but I'm having difficulties with its precise interpretation. After running my app with ...
4
votes
2answers
278 views

What is the best way to get the most useful output from oprofile?

Using tools such as: opreport opcontrol opannotate I am starting to use this tool and trying to find the best combinations, examples to get the most out of profiling. Thanks
2
votes
1answer
62 views

How to get call graph profiling working with gcc compiled code and ARM Cortex A8 target?

I am biting my teeth out on this one... I need to do profiling on an ARM board and need to view call graphs. I tried with OProfile, Kernel perf and Google performance tools. All work fine but do not ...
2
votes
0answers
76 views

How can I get OProfile / Xenoprof to use event counters when running on EC2?

I'm writing a cluster-wide profiling tool for EC2 that is designed to collect data by running OProfile on each instance. I'd eventually like to aggregate the XML output generated by opreport, and ...
2
votes
1answer
423 views

Monitoring context switches in Linux

Is there any way to determine whenever a context switch takes place without the use of profilers? I have written a C program to monitor the time taken for different processes in a program to finish ...
2
votes
1answer
967 views

oprofile unable to produce call graph

I am trying to use oprofile to generate call graph. Compiler is g++, platform is linux x86-64, linker is gfortran C++ code is compiled with -fno- omit-frame-pointer. oprofile is started with ...
2
votes
3answers
1k views

Which profiler is more accurate: OProfile or Google Performance Tools?

I found two great profilers: OProfile Google Performance Tools Have anyone tried them both? Which is better?
1
vote
0answers
31 views

No cache event samples for ARM beagleboard running Android

I am trying to collect some performance statistics on Beagleboard Rev C4, and Beagleboard xM. Oprofile runs perfectly when I set the profiling event to CPU_CYCLE, however on both boards, when I try ...
1
vote
0answers
30 views

Tools to help profile cache misses

What tools does the community use to help identify if cache misses are even a problem, and if they are a problem where they are occuring in the code? The first question is: How do I identify how ...
1
vote
1answer
240 views

oprofile can not use hardware performance counters

I have debian 5.0 linux server on an IBM HS22 blade with 2 Xeon E5504 processors. I found out that oprofile could not recognize hardware performance counters on this setup, only timer interrupt is ...
1
vote
2answers
168 views

What profiler should I use to measure _real_ time (including waiting for syscalls) spend in this function, not _CPU_ one

The application does not calculate things, but does i/o, read files, uses network. I want profiler to show it. I expect something like something like in callgrind that calls clock_gettime each ...
1
vote
1answer
160 views

Basic doubt in Oprofile

I am trying to profile my software (in Linux) with oprofile. My software consists of both userspace and kernel module. First my doubt is what does the --separate=kernel option do? What will be the ...
0
votes
0answers
16 views

Ubuntu 2.6.35 vmlinux image for kernel profiling using oprofile

HI i want to run profiling on Kernel using Oprofile but it requires uncompressed vmlinux image and ubuntu 10.10 provides vmlinuz which is stripped and compressed. Pls help
0
votes
0answers
25 views

oprofile, oreport: How do I get it to report the containing process name or id?

I'm using oprofile to profile a system. I enabled --callgraph=10 when starting, and I do opreport -lc to get the call graphs. I'm finding that 5% of the system time is spent in fgetc, which suggests ...
0
votes
1answer
40 views

Using O-Profile with Linux RedHat OS => conflict with NMI watchdog

I was trying to run o-profile (a profiling program for linux) and kept getting an error while starting saying something like counter 0 was being use by 'NMI watchdog'. Is NMI part of the OS or is it a ...
0
votes
1answer
38 views

Setup OProfile on proprietary kernel

I'm trying to set up OProfile on our proprietary kernel with no success. The kernel is based on: 2.6.34.8 running on mips74k CPU. Is it possible to do so? If so, I would really appreciate any guide ...
0
votes
1answer
56 views

oprofile isn't sampling LLC_MISSES cache events

I'm trying to use oprofile to record cache misses in a large realtime app: $ sudo opcontrol --no-vmlinux --event=LLC_MISSES:100000 --session-dir=/var/tmp/oprofile -c=5 --start But when I look at ...
0
votes
2answers
48 views

Can oprofile be made to use a directory other than /root/.oprofile?

We're trying to use oprofile to track down performance problems on a server cluster. However, the servers in question have a read-only file system, where /var/tmp is the only writeable directory. ...
0
votes
0answers
78 views

Problems about Oprofile tool [closed]

configuration of my system is as following: kernel: 2.6.9 cat /dev/oprofile/cpu_type i386/piii opcontrol --version opcontrol: oprofile 0.9.6 compiled on Sep 6 2011 15:05:09 ...
0
votes
1answer
83 views

oprofile on a stripped binary

I am trying to find ways to use oprofile on a stripped binary yet still get detailed information when symbol tables are available later, but so far I haven't find any solution. Here is my situation: ...
0
votes
1answer
110 views

uable to profile with oprofile

I am using cent os 5.5 . Linux localhost.localdomain 2.6.18-164.el5xen #1 SMP Thu Sep 3 04:03:03 EDT 2009 x86_64 x86_64 x86_64 GNU/Linux I am trying to profile my project(server) with oprofile ...
0
votes
0answers
96 views

How to dig down to the level of analyzing functions etc in OProfile

I'm new to Android. I need to measure performance and have run OProfile tool to analyze my app and collected the samples. I'm using the Visual Performance Analyser tool VPA tool. Now, I'm able to ...
0
votes
3answers
431 views

oprofile on Linux running in a virtual machine

I'm running a Linux Ubuntu 10.4 VM using VirtualBox. I'm trying to use oprofile to profile some application in the virtual machine. I've installed oprofile 0.9.6 but I cannot get it to work. When I ...
0
votes
0answers
263 views

oprofile unable to produce callgraph on ARM

This is actually an exact duplicate of this SO question which unfortunately does not have any answer. Is it possible to get a proper callgraph on ARM? I'm using oprofile 0.9.6 on an ARM926 which does ...
0
votes
3answers
202 views

Measuring execution time of selected loops

I want to measure the running times of selected loops in a C program so as to see what percentage of the total time for executing the program (on linux) is spent in these loops. I should be able to ...