Documentation/Maemo Eclipse Tutorial/Eclipse Tracing

m (1 revision)

Revision as of 13:35, 9 April 2010

Contents

Eclipse Tracing

Introduction

IDE Integration provides support for Ltrace library call monitor profiling, available for ESbox and PluThon products. This tutorial presents a brief introduction to Ltrace and shows how to profile your applications at ESbox and PluThon using the Ltrace. Furthermore, it helps you understand how to interpret Ltrace debugging results.

In some cases, it might be useful to verify which are system calls and signals involved during a certain application execution. Ltrace is a profiling tool, which runs a specified command until it exits. While the command is executing, Ltrace intercepts and records the dynamic library calls, which are called by the executed process and the signals received by that process. It can also monitor system calls used by a program.

Ltrace and Eclipse IDE Integration

Maemo Eclipse IDE integration products (ESbox and PluThon) provide support for Ltrace tool for C/C++, Qt4 and Python projects on Maemo SDK and device environments. ESbox and PluThon use the command ltrace -S -T to run Ltrace: -S option to display system calls as well as library calls and -T option to show the time spent inside each call. There are other options for Ltrace not used at IDE Integration, they can be found at [1]. This section shows how to profile your applications at ESbox and PluThon and how to analyse profiling results.

Profiling your Maemo application with Ltrace

At first, you must create a C/C++, Qt4 or Python Maemo Project and select the target. After that, run the application with the Ltrace tool. The running can be local and remote for ESbox projects and remote for PluThon projects, as shown below.

Local Ltrace Profiling

To locally run LTrace on ESbox, right-click on the application (binary for C/C++ and Qt4 projects or the Python script for Python projects) and select Profile As > Local Ltrace Profiler, figure 9.1. If the ltrace tool is not properly installed at the selected target, the system can automatically install it, figure 9.2.


Figure 9.1: Locally Profiling application with Ltrace

File:Ltrace-menu-local.png



Figure 9.2: Installing Ltrace at target

File:Install-ltrace.png


After Ltrace starts, ESbox launches your application on the SDK target and the result is shown in the Ltrace view, figure 9.3.


Figure 9.3: Local Ltrace View

File:Ltrace-view-local.png


All library and system calls are shown as a table tree: parent nodes representing initial library or system calls and child nodes for each new nested call. Each node or line has four columns: Order, Call, Exit code and Time. By clicking on any column headers you can sort the lines by that column, and if you click again on the same column the sorter direction is inverted. Column Order is used as default sorter column.

Remote Ltrace Profiling

To remotely run LTrace on PluThon (or ESbox), right-click on the Python project and select Profile As > PluThon Remote Ltrace Python Profiler, figure 9.4.


Figure 9.4: Remotely Profiling application with Ltrace

File:Ltrace-menu-remote.png


After Ltrace starts, PluThon launches your application on the Device and the result is shown in the Ltrace view as described before, figure 9.5.


Figure 9.5: Remote Ltrace View

File:Ltrace-view-remote.png


File:Dialog-information.png Note: If you are planning to run the Ltrace profiler more than once, you do not have to worry about cleaning current Ltrace view results, because this is done automatically before each new profiling. However, if you need to clean the Ltrace view during the profiling, you just need to click Delete Current ltrace lines button on the Ltrace view toolbar, so the view is reset and keeps receiving current ltrace results.

Analyzing results

During Ltrace profiling, all library and system calls are monitored and listed as a new node/line at Ltrace view. Each line has four columns:

  • Order: the position of the call in the table tree view. This column restarts for each nested call.
  • Description: the description of the library or system call.
  • Exit: exit code of the call.
  • Time: the time spent inside the call. This records the time difference between the beginning and the end of the call.

Let us analyse an Ltrace profiling using a Python Project at target DIABLO_X86. After running the Python project with Ltrace you see the following results at Ltrace view, figure 9.6.


Figure 9.6: Ltrace results - initial lines

File:Ltrace-results-1.png


First, on the initial lines, we can see some system calls indicating that the program is being linked and loaded. For example, line 6 represents a system call named SYS_open that exited with code -2 and took 0.000018 seconds to finish.


Figure 9.7: Ltrace results - program's main statement

File:Ltrace-results-2.png


From the latest Ltrace lines (figure 9.7) we can see at line 85 that the program reached the main statement, called __libc_start_main. Notice also that the main statement has children nodes, that is, it has called another nested call (PY_Main) that has called another nested calls, and so on.

References

  1. Ltrace Man Page. http://linux.die.net/man/1/ltrace