[Python-Dev] 2.3 startup speed?

Zooko zooko@zooko.com
10 Jul 2003 19:58:33 -0400


I don't know if this helps, but appended is a profile of the current CVS 
version of Python while my Linux box was doing:

while [ 1 ] ; do /usr/local/bin/python -c '' ; done

This was produced with oprofile, which works by checking every now and again 
to see what my Linux system is currently up to.  The most frequent thing was 
that 18827 of the times that it checked, it saw that libc was doing something, 
and the second most frequent was that 12424 of the times that it checked, it 
saw that PyDict_Next() was doing something.

oprofile even writes out an annotated version of the source code, appended.  
The left-most number is number of times an instruction corresponding to that 
line was being processed, and the other number is the percentage.

Regards,

Zooko

               :int
               :PyDict_Next(PyObject *op, int *ppos, PyObject **pkey, PyObject **pvalue)
  1639  0.8670 :{ /* PyDict_Next total:  12424  6.5721 */
               :	int i;
               :	register dictobject *mp;
   193  0.1021 :	if (!PyDict_Check(op))
               :		return 0;
               :	mp = (dictobject *)op;
   108  0.0571 :	i = *ppos;
   145  0.0767 :	if (i < 0)
               :		return 0;
  1375  0.7274 :	while (i <= mp->ma_mask && mp->ma_table[i].me_value == NULL)
  3209  1.6975 :		i++;
  3766  1.9922 :	*ppos = i+1;
   103  0.0545 :	if (i > mp->ma_mask)
               :		return 0;
   312  0.1650 :	if (pkey)
   137  0.0725 :		*pkey = mp->ma_table[i].me_key;
   138  0.0730 :	if (pvalue)
   385  0.2037 :		*pvalue = mp->ma_table[i].me_value;
   154  0.0815 :	return 1;
   760  0.4020 :}


CPU: Athlon, speed 1410.24 MHz (estimated)
Counted CPU_CLK_UNHALTED events (Cycles outside of halt state) with a unit mask of 0x00 (No unit mask) count 705000
vma      samples  cum. samples  %           cum. %     linenr info                 app name                 symbol name
00000000 18827    18827          9.9592      9.9592    (no location information)   libc-2.3.1.so            (no symbols)
0806d760 12424    31251          6.5721     16.5313    dictobject.c:674            python                   PyDict_Next
00007042 9544     40795          5.0486     21.5800    (no location information)   ld-2.3.1.so              do_lookup_versioned
0806d084 7469     48264          3.9510     25.5310    dictobject.c:312            python                   lookdict_string
080b33fc 5927     54191          3.1353     28.6663    gcmodule.c:223              python                   visit_decref
0000dc18 5765     59956          3.0496     31.7159    (no location information)   ld-2.3.1.so              strcmp
08073d88 5511     65467          2.9152     34.6311    stringobject.c:1142         python                   string_hash
080b3470 4243     69710          2.2445     36.8756    gcmodule.c:259              python                   visit_reachable
080c1a24 3693     73403          1.9535     38.8291    acceler.c:65                python                   fixstate
080941b0 3676     77079          1.9446     40.7737    ceval.c:550                 python                   eval_frame
c0236150 3575     80654          1.8911     42.6648    (no location information)   vmlinux                  fast_clear_page
c0129ca0 3218     83872          1.7023     44.3671    (no location information)   vmlinux                  file_read_actor
08071de4 3161     87033          1.6721     46.0392    obmalloc.c:701              python                   PyObject_Free
08071cac 2858     89891          1.5118     47.5511    obmalloc.c:557              python                   PyObject_Malloc
c0149820 2732     92623          1.4452     48.9962    (no location information)   vmlinux                  d_lookup
c02361a0 2615     95238          1.3833     50.3795    (no location information)   vmlinux                  fast_copy_page
080789f0 2517     97755          1.3315     51.7110    tupleobject.c:392           python                   tupletraverse
080b33e0 2394     100149         1.2664     52.9774    gcmodule.c:212              python                   update_refs
0806f06c 2384     102533         1.2611     54.2385    dictobject.c:1662           python                   dict_traverse
c0140930 2300     104833         1.2167     55.4552    (no location information)   vmlinux                  link_path_walk
080ab6c8 2243     107076         1.1865     56.6417    marshal.c:382               python                   r_object
08073d40 2099     109175         1.1103     57.7520    stringobject.c:1130         python                   _PyString_Eq
00006dd7 2067     111242         1.0934     58.8454    (no location information)   ld-2.3.1.so              _dl_elf_hash
0807265c 1732     112974         0.9162     59.7616    stringobject.c:106          python                   PyString_FromString
080ab5d0 1613     114587         0.8533     60.6149    marshal.c:327               python                   r_long
080999fc 1589     116176         0.8406     61.4555    compile.c:334               python                   optimize_code
0806d3b0 1503     117679         0.7951     62.2505    dictobject.c:483            python                   PyDict_GetItem
08077dd0 1443     119122         0.7633     63.0138    stringobject.c:4104         python                   PyString_InternInPlace
0806d1c4 1366     120488         0.7226     63.7364    dictobject.c:369            python                   insertdict
0806d420 1313     121801         0.6946     64.4310    dictobject.c:509            python                   PyDict_SetItem
0806d264 1307     123108         0.6914     65.1224    dictobject.c:401            python                   dictresize
00006aa8 1263     124371         0.6681     65.7905    (no location information)   libpthread-0.10.so       __pthread_mutex_unlock
080783c8 1137     125508         0.6015     66.3919    tupleobject.c:137           python                   tupledealloc
c01257a0 1102     126610         0.5829     66.9749    (no location information)   vmlinux                  copy_page_range
c0107520 1078     127688         0.5702     67.5451    (no location information)   vmlinux                  page_fault
08072560 1067     128755         0.5644     68.1096    stringobject.c:57           python                   PyString_FromStringAndSize
000068e6 1047     129802         0.5538     68.6634    (no location information)   libpthread-0.10.so       __pthread_mutex_lock
0806d508 1046     130848         0.5533     69.2167    dictobject.c:555            python                   PyDict_DelItem
00007aa6 1035     131883         0.5475     69.7642    (no location information)   ld-2.3.1.so              elf_dynamic_do_rel.7
08072e9c 968      132851         0.5121     70.2763    stringobject.c:499          python                   string_dealloc
000075cc 959      133810         0.5073     70.7836    (no location information)   ld-2.3.1.so              elf_machine_rel.0
08064c98 931      134741         0.4925     71.2761    intobject.c:1098            python                   PyInt_Fini
c0126d80 872      135613         0.4613     71.7373    (no location information)   vmlinux                  zap_pte_range
0806d810 838      136451         0.4433     72.1806    dictobject.c:699            python                   dict_dealloc
c012a530 791      137242         0.4184     72.5991    (no location information)   vmlinux                  filemap_nopage
00000000 783      138025         0.4142     73.0133    (no location information)   bash                     (no symbols)
000098c3 773      138798         0.4089     73.4222    (no location information)   libpthread-0.10.so       __pthread_alt_unlock
00006485 756      139554         0.3999     73.8221    (no location information)   ld-2.3.1.so              _dl_lookup_versioned_symbol_internal
c0129180 729      140283         0.3856     74.2077    (no location information)   vmlinux                  __find_get_page
c01304c0 702      140985         0.3713     74.5791    (no location information)   vmlinux                  rmqueue
080ab504 622      141607         0.3290     74.9081    marshal.c:304               python                   r_string
080c8f58 608      142215         0.3216     75.2297    moduleobject.c:99           python                   _PyModule_Clear
0807811c 580      142795         0.3068     75.5365    tupleobject.c:28            python                   PyTuple_New
c0235d50 577      143372         0.3052     75.8417    (no location information)   vmlinux                  strncpy_from_user
c01278e0 576      143948         0.3047     76.1464    (no location information)   vmlinux                  find_vma
c0130240 547      144495         0.2894     76.4358    (no location information)   vmlinux                  __free_pages_ok
080c80d8 543      145038         0.2872     76.7230    funcobject.c:422            python                   func_traverse
c0148ec0 517      145555         0.2735     76.9965    (no location information)   vmlinux                  dput
00000000 506      146061         0.2677     77.2642    (no location information)   libstdc++.so.5.0.5       (no symbols)
00006837 499      146560         0.2640     77.5282    (no location information)   libpthread-0.10.so       __pthread_mutex_trylock
08070984 490      147050         0.2592     77.7874    object.c:1160               python                   PyObject_Hash
c01404d0 484      147534         0.2560     78.0434    (no location information)   vmlinux                  vfs_permission
08099bdc 482      148016         0.2550     78.2984    compile.c:410               python                   PyCode_New
c01072dc 481      148497         0.2544     78.5528    (no location information)   vmlinux                  system_call
c012f160 443      148940         0.2343     78.7871    (no location information)   vmlinux                  kmem_cache_free_one
0809950c 443      149383         0.2343     79.0215    compile.c:159               python                   code_dealloc
080a4b28 442      149825         0.2338     79.2553    getargs.c:121               python                   vgetargs1
00006e48 431      150256         0.2280     79.4833    (no location information)   ld-2.3.1.so              do_lookup
08073bc0 427      150683         0.2259     79.7092    stringobject.c:1067         python                   string_richcompare
c0123a40 416      151099         0.2201     79.9292    (no location information)   vmlinux                  supplemental_group_member
000096bf 414      151513         0.2190     80.1482    (no location information)   libpthread-0.10.so       __pthread_alt_lock
08070de8 405      151918         0.2142     80.3625    object.c:1358               python                   PyObject_GenericGetAttr
c0126910 387      152305         0.2047     80.5672    (no location information)   vmlinux                  do_no_page
08099918 378      152683         0.2000     80.7671    compile.c:293               python                   all_name_chars
c0114010 370      153053         0.1957     80.9629    (no location information)   vmlinux                  do_page_fault
080b34dc 363      153416         0.1920     81.1549    gcmodule.c:310              python                   move_unreachable
c0125680 351      153767         0.1857     81.3406    (no location information)   vmlinux                  __free_pte
08097fa8 351      154118         0.1857     81.5262    ceval.c:3409                python                   call_function
0807a0ec 344      154462         0.1820     81.7082    typeobject.c:794            python                   PyType_IsSubtype
08099978 339      154801         0.1793     81.8875    compile.c:311               python                   intern_strings
08072774 329      155130         0.1740     82.0616    stringobject.c:160          python                   PyString_FromFormatV
00009070 326      155456         0.1724     82.2340    (no location information)   ld-2.3.1.so              fixup
080a81fc 315      155771         0.1666     82.4006    import.c:1050               python                   find_module
000089d3 315      156086         0.1666     82.5673    (no location information)   libpthread-0.10.so       libc_internal_tsd_address
00006eac 301      156387         0.1592     82.7265    (no location information)   libpthread-0.10.so       __pthread_alt_trylock
000089bc 297      156684         0.1571     82.8836    (no location information)   libpthread-0.10.so       libc_internal_tsd_get
c012f070 294      156978         0.1555     83.0391    (no location information)   vmlinux                  __kmem_cache_alloc
c01310c0 293      157271         0.1550     83.1941    (no location information)   vmlinux                  free_page_and_swap_cache
080b4064 292      157563         0.1545     83.3486    gcmodule.c:1030             python                   PyObject_GC_UnTrack
00000000 267      157830         0.1412     83.4898    (no location information)   xemacs-21.4.13-nomule    (no symbols)
00008a08 267      158097         0.1412     83.6311    (no location information)   libpthread-0.10.so       thread_self
c0129020 264      158361         0.1397     83.7707    (no location information)   vmlinux                  unlock_page
080a541c 252      158613         0.1333     83.9040    getargs.c:459               python                   convertsimple
c01295c0 251      158864         0.1328     84.0368    (no location information)   vmlinux                  do_generic_file_read
08078288 245      159109         0.1296     84.1664    tupleobject.c:98            python                   PyTuple_GetItem
08070614 245      159354         0.1296     84.2960    object.c:974                python                   PyObject_RichCompare
c011ac10 244      159598         0.1291     84.4251    (no location information)   vmlinux                  session_of_pgrp
080b40a0 238      159836         0.1259     84.5510    gcmodule.c:1047             python                   _PyObject_GC_Malloc
0000938c 235      160071         0.1243     84.6753    (no location information)   libpthread-0.10.so       __pthread_lock
080634e4 234      160305         0.1238     84.7991    intobject.c:59              python                   fill_free_list
080ac6f8 233      160538         0.1233     84.9223    modsupport.c:106            python                   countformat
c0126ac0 222      160760         0.1174     85.0398    (no location information)   vmlinux                  handle_mm_fault
0806dd7c 219      160979         0.1158     85.1556    dictobject.c:883            python                   dict_keys
c0131550 216      161195         0.1143     85.2699    (no location information)   vmlinux                  remove_exclusive_swap_page
080c6ed8 216      161411         0.1143     85.3841    frameobject.c:539           python                   PyFrame_New
c011b090 200      161611         0.1058     85.4899    (no location information)   vmlinux                  exit_notify
c0107325 199      161810         0.1053     85.5952    (no location information)   vmlinux                  restore_all
080c8770 193      162003         0.1021     85.6973    methodobject.c:64           python                   PyCFunction_Call
c010b9a0 186      162189         0.0984     85.7957    (no location information)   vmlinux                  mask_and_ack_8259A
080c7720 184      162373         0.0973     85.8930    funcobject.c:11             python                   PyFunction_New
0806f31c 178      162551         0.0942     85.9872    dictobject.c:1969           python                   PyDict_SetItemString
08053b28 176      162727         0.0931     86.0803    (no location information)   python                   anonymous symbol from section .plt
080c895c 175      162902         0.0926     86.1728    methodobject.c:151          python                   meth_traverse
080b343c 174      163076         0.0920     86.2649    gcmodule.c:245              python                   subtract_refs
c0135da0 173      163249         0.0915     86.3564    (no location information)   vmlinux                  get_unused_fd
0806570c 173      163422         0.0915     86.4479    listobject.c:203            python                   list_dealloc
080c7f14 171      163593         0.0905     86.5384    funcobject.c:395            python                   func_dealloc
0806f2cc 171      163764         0.0905     86.6288    dictobject.c:1957           python                   PyDict_GetItemString
08078240 169      163933         0.0894     86.7182    tupleobject.c:87            python                   PyTuple_Size
00000780 168      164101         0.0889     86.8071    (no location information)   ne2k-pci.o               ne2k_pci_block_output
0805af70 167      164268         0.0883     86.8954    classobject.c:406           python                   class_traverse
08081f94 166      164434         0.0878     86.9832    typeobject.c:5339           python                   add_operators
00006dda 164      164598         0.0868     87.0700    (no location information)   libpthread-0.10.so       thread_self
c010ca50 163      164761         0.0862     87.1562    (no location information)   vmlinux                  timer_interrupt
080c6900 163      164924         0.0862     87.2425    frameobject.c:383           python                   frame_dealloc
000094fb 162      165086         0.0857     87.3281    (no location information)   libpthread-0.10.so       __pthread_unlock
c01073cc 161      165247         0.0852     87.4133    (no location information)   vmlinux                  error_code
08097dd8 161      165408         0.0852     87.4985    ceval.c:3328                python                   PyEval_CallObjectWithKeywords
c0126820 160      165568         0.0846     87.5831    (no location information)   vmlinux                  do_anonymous_page
080c5810 159      165727         0.0841     87.6672    descrobject.c:378           python                   descr_traverse
08070af4 157      165884         0.0831     87.7503    object.c:1217               python                   PyObject_GetAttr
00004bd3 152      166036         0.0804     87.8307    (no location information)   libpthread-0.10.so       _pthread_cleanup_pop_restore
c0127270 151      166187         0.0799     87.9106    (no location information)   vmlinux                  do_mmap_pgoff
c0137830 150      166337         0.0793     87.9899    (no location information)   vmlinux                  fput
080b41dc 149      166486         0.0788     88.0687    gcmodule.c:1101             python                   PyObject_GC_Del
080a5304 148      166634         0.0783     88.1470    getargs.c:394               python                   convertitem
c01262f0 147      166781         0.0778     88.2248    (no location information)   vmlinux                  do_wp_page
c012eac0 143      166924         0.0756     88.3004    (no location information)   vmlinux                  kmem_cache_free
c01405e0 142      167066         0.0751     88.3755    (no location information)   vmlinux                  permission
0805a81c 142      167208         0.0751     88.4507    classobject.c:187           python                   class_lookup
000072c2 140      167348         0.0741     88.5247    (no location information)   ld-2.3.1.so              _dl_name_match_p
c0129420 137      167485         0.0725     88.5972    (no location information)   vmlinux                  generic_file_readahead
c01406b0 136      167621         0.0719     88.6691    (no location information)   vmlinux                  cached_lookup
c0141500 134      167755         0.0709     88.7400    (no location information)   vmlinux                  open_namei
00004b89 133      167888         0.0704     88.8104    (no location information)   libpthread-0.10.so       _pthread_cleanup_push_defer
0806e5e4 130      168018         0.0688     88.8791    dictobject.c:1224           python                   PyDict_Copy
080aca7c 128      168146         0.0677     88.9468    modsupport.c:265            python                   do_mkvalue
080732e8 128      168274         0.0677     89.0146    stringobject.c:703          python                   PyString_AsString
08096a40 127      168401         0.0672     89.0817    ceval.c:2443                python                   PyEval_EvalCodeEx
08070798 127      168528         0.0672     89.1489    object.c:1051               python                   PyObject_RichCompareBool
c012f310 126      168654         0.0667     89.2156    (no location information)   vmlinux                  lru_cache_add
c0132660 125      168779         0.0661     89.2817    (no location information)   vmlinux                  swap_duplicate
0806cdc4 125      168904         0.0661     89.3478    dictobject.c:157            python                   PyDict_New
0807c148 121      169025         0.0640     89.4118    typeobject.c:2205           python                   type_is_gc
08065574 121      169146         0.0640     89.4758    listobject.c:144            python                   ins1
c0235e30 119      169265         0.0629     89.5388    (no location information)   vmlinux                  strnlen_user
c012f370 118      169383         0.0624     89.6012    (no location information)   vmlinux                  __lru_cache_del
08067b9c 115      169498         0.0608     89.6620    listobject.c:1901           python                   list_traverse
000039e7 115      169613         0.0608     89.7229    (no location information)   ld-2.3.1.so              _dl_map_object_from_fd
c0123a80 114      169727         0.0603     89.7832    (no location information)   vmlinux                  in_group_p
00008b33 111      169838         0.0587     89.8419    (no location information)   libpthread-0.10.so       __funlockfile
c0140400 109      169947         0.0577     89.8995    (no location information)   vmlinux                  getname
c0129590 109      170056         0.0577     89.9572    (no location information)   vmlinux                  mark_page_accessed
c0127060 108      170164         0.0571     90.0143    (no location information)   vmlinux                  find_vma_prepare
080c863c 108      170272         0.0571     90.0715    methodobject.c:11           python                   PyCFunction_NewEx
08081a44 107      170379         0.0566     90.1281    typeobject.c:5017           python                   slotptr
00004cb1 107      170486         0.0566     90.1847    (no location information)   libpthread-0.10.so       thread_self
c0131310 106      170592         0.0561     90.2407    (no location information)   vmlinux                  swap_info_get
c0125940 105      170697         0.0555     90.2963    (no location information)   vmlinux                  zap_page_range
08098180 105      170802         0.0555     90.3518    ceval.c:3486                python                   fast_function
08097d24 105      170907         0.0555     90.4074    ceval.c:3272                python                   PyEval_GetRestricted
080ac9ac 104      171011         0.0550     90.4624    modsupport.c:237            python                   do_mktuple
08074174 104      171115         0.0550     90.5174    stringobject.c:1348         python                   string_split
080b4150 103      171218         0.0545     90.5719    gcmodule.c:1078             python                   _PyObject_GC_NewVar
080652ec 103      171321         0.0545     90.6264    listobject.c:57             python                   PyList_New
00007a42 102      171423         0.0540     90.6803    (no location information)   ld-2.3.1.so              elf_machine_lazy_rel.4
c01368f0 101      171524         0.0534     90.7338    (no location information)   vmlinux                  sys_read
00008b10 100      171624         0.0529     90.7867    (no location information)   libpthread-0.10.so       __flockfile
00008a70 99       171723         0.0524     90.8390    (no location information)   libpthread-0.10.so       __errno_location
080c2094 98       171821         0.0518     90.8909    parser.c:138                python                   classify
080b3324 97       171918         0.0513     90.9422    gcmodule.c:153              python                   gc_list_remove
080667e8 97       172015         0.0513     90.9935    listobject.c:857            python                   binarysort
0000df04 97       172112         0.0513     91.0448    (no location information)   ld-2.3.1.so              memset
c011ac60 96       172208         0.0508     91.0956    (no location information)   vmlinux                  will_become_orphaned_pgrp
0808ef90 96       172304         0.0508     91.1464    bltinmodule.c:739           python                   builtin_map
00000550 96       172400         0.0508     91.1971    (no location information)   oprofile.o               do_hash
c0131640 92       172492         0.0487     91.2458    (no location information)   vmlinux                  free_swap_and_cache
c0141180 91       172583         0.0481     91.2940    (no location information)   vmlinux                  path_init
c0236820 89       172672         0.0471     91.3410    (no location information)   vmlinux                  number
00008374 89       172761         0.0471     91.3881    (no location information)   ld-2.3.1.so              _dl_map_object_deps_internal
00005cfb 89       172850         0.0471     91.4352    (no location information)   ld-2.3.1.so              _dl_cache_libcmp
00000000 88       172938         0.0466     91.4817    (no location information)   libcrypto.so.0.9.7       (no symbols)
08074408 86       173024         0.0455     91.5272    stringobject.c:1420         python                   string_join
c0135f10 84       173108         0.0444     91.5717    (no location information)   vmlinux                  sys_open
080a49d0 84       173192         0.0444     91.6161    getargs.c:46                python                   PyArg_ParseTuple
0807ddbc 84       173276         0.0444     91.6605    typeobject.c:3084           python                   PyType_Ready
080719bc 84       173360         0.0444     91.7050    object.c:2100               python                   PyMem_Malloc
c013deb0 83       173443         0.0439     91.7489    (no location information)   vmlinux                  sys_fstat64
080c8898 83       173526         0.0439     91.7928    methodobject.c:124          python                   meth_dealloc
08079b9c 82       173608         0.0434     91.8362    typeobject.c:440            python                   PyType_GenericAlloc
c01277c0 80       173688         0.0423     91.8785    (no location information)   vmlinux                  get_unmapped_area
080732ac 79       173767         0.0418     91.9203    stringobject.c:695          python                   PyString_Size
0805a230 78       173845         0.0413     91.9615    abstract.c:2183             python                   PyIter_Next
080b4128 77       173922         0.0407     92.0023    gcmodule.c:1069             python                   _PyObject_GC_New
080598dc 77       173999         0.0407     92.0430    abstract.c:1751             python                   PyObject_Call
08078fa0 76       174075         0.0402     92.0832    tupleobject.c:718           python                   PyTuple_Fini
080654a4 75       174150         0.0397     92.1229    listobject.c:121            python                   PyList_SetItem
080a9010 74       174224         0.0391     92.1620    import.c:1948               python                   import_module_ex
080782f0 74       174298         0.0391     92.2012    tupleobject.c:112           python                   PyTuple_SetItem
080a6510 73       174371         0.0386     92.2398    getargs.c:1159              python                   vgetargskeywords
080a37ec 73       174444         0.0386     92.2784    errors.c:27                 python                   PyErr_Restore
c0137a40 72       174516         0.0381     92.3165    (no location information)   vmlinux                  __constant_c_and_count_memset
c0130b30 72       174588         0.0381     92.3546    (no location information)   vmlinux                  nr_free_pages
c0128210 72       174660         0.0381     92.3927    (no location information)   vmlinux                  exit_mmap
080a9208 72       174732         0.0381     92.4307    import.c:2010               python                   get_parent
08073f4c 72       174804         0.0381     92.4688    stringobject.c:1217         python                   string_buffer_getreadbuf
c0127cc0 71       174875         0.0376     92.5064    (no location information)   vmlinux                  do_munmap
c0136060 70       174945         0.0370     92.5434    (no location information)   vmlinux                  sys_close
c0126be0 70       175015         0.0370     92.5804    (no location information)   vmlinux                  pte_alloc
080c2138 70       175085         0.0370     92.6175    parser.c:204                python                   PyParser_AddToken
080ac4f8 70       175155         0.0370     92.6545    modsupport.c:35             python                   Py_InitModule4
080a9394 70       175225         0.0370     92.6915    import.c:2078               python                   load_next
0805a278 70       175295         0.0370     92.7286    classobject.c:23            python                   PyClass_New
00005fff 70       175365         0.0370     92.7656    (no location information)   ld-2.3.1.so              _dl_lookup_symbol_internal
08098c68 69       175434         0.0365     92.8021    ceval.c:3905                python                   import_all_from
00008aa9 69       175503         0.0365     92.8386    (no location information)   libpthread-0.10.so       thread_self
080a391c 68       175571         0.0360     92.8746    errors.c:77                 python                   PyErr_Occurred
08098b64 68       175639         0.0360     92.9105    ceval.c:3858                python                   cmp_outcome
08063540 68       175707         0.0360     92.9465    intobject.c:97              python                   PyInt_FromLong
00004c22 67       175774         0.0354     92.9819    (no location information)   ld-2.3.1.so              _dl_map_object_internal
c0141140 65       175839         0.0344     93.0163    (no location information)   vmlinux                  path_lookup
c0130af0 65       175904         0.0344     93.0507    (no location information)   vmlinux                  __free_pages
c01308e0 65       175969         0.0344     93.0851    (no location information)   vmlinux                  __alloc_pages
c01485f0 63       176032         0.0333     93.1184    (no location information)   vmlinux                  locks_remove_posix
c013dfb0 63       176095         0.0333     93.1518    (no location information)   vmlinux                  __constant_copy_to_user
c0135be0 63       176158         0.0333     93.1851    (no location information)   vmlinux                  dentry_open
c013e220 62       176220         0.0328     93.2179    (no location information)   vmlinux                  copy_strings
080b330c 62       176282         0.0328     93.2507    gcmodule.c:144              python                   gc_list_append
000092d0 62       176344         0.0328     93.2835    (no location information)   ld-2.3.1.so              _dl_runtime_resolve
080572ec 61       176405         0.0323     93.3157    abstract.c:114              python                   PyObject_SetItem
0000a41b 61       176466         0.0323     93.3480    (no location information)   ld-2.3.1.so              _dl_check_map_versions_internal
c0129d40 60       176526         0.0317     93.3797    (no location information)   vmlinux                  generic_file_read
c0114e60 60       176586         0.0317     93.4115    (no location information)   vmlinux                  schedule
c010d6a0 60       176646         0.0317     93.4432    (no location information)   vmlinux                  kernel_fpu_begin
c0107314 59       176705         0.0312     93.4744    (no location information)   vmlinux                  ret_from_sys_call
0807d268 59       176764         0.0312     93.5056    typeobject.c:2912           python                   inherit_slots
0000795b 59       176823         0.0312     93.5369    (no location information)   libpthread-0.10.so       pthread_self
08071218 58       176881         0.0307     93.5675    object.c:1565               python                   PyObject_IsTrue
c0126f40 57       176938         0.0302     93.5977    (no location information)   vmlinux                  sys_brk
08093808 57       176995         0.0302     93.6278    exceptions.c:1727           python                   _PyExc_Init
c0125700 56       177051         0.0296     93.6575    (no location information)   vmlinux                  clear_page_tables
080ad858 56       177107         0.0296     93.6871    pystate.c:252               python                   PyThreadState_Get
080656b8 56       177163         0.0296     93.7167    listobject.c:190            python                   PyList_Append
08058cb0 56       177219         0.0296     93.7463    abstract.c:1157             python                   PySequence_GetItem
c014b480 55       177274         0.0291     93.7754    (no location information)   vmlinux                  update_atime
0806d608 55       177329         0.0291     93.8045    dictobject.c:590            python                   PyDict_Clear
08057628 55       177384         0.0291     93.8336    abstract.c:229              python                   PyObject_CheckReadBuffer
00000000 55       177439         0.0291     93.8627    (no location information)   libgklayout.so           (no symbols)
080a4abc 54       177493         0.0286     93.8913    getargs.c:105               python                   cleanreturn
c01285a0 53       177546         0.0280     93.9193    (no location information)   vmlinux                  set_page_dirty
00000000 53       177599         0.0280     93.9473    (no location information)   XFree86                  (no symbols)
00127710 53       177652         0.0280     93.9754    (no location information)   nvidia.o                 __nvsym00429
0000899d 53       177705         0.0280     94.0034    (no location information)   libpthread-0.10.so       libc_internal_tsd_set
c0236000 52       177757         0.0275     94.0309    (no location information)   vmlinux                  _mmx_memcpy
0808e5d8 52       177809         0.0275     94.0584    bltinmodule.c:257           python                   builtin_chr
c0137680 51       177860         0.0270     94.0854    (no location information)   vmlinux                  get_empty_filp
c0127940 51       177911         0.0270     94.1124    (no location information)   vmlinux                  find_vma_prev
c01173e0 51       177962         0.0270     94.1394    (no location information)   vmlinux                  dup_mmap
080a80a0 51       178013         0.0270     94.1663    import.c:965                python                   is_builtin
0809733c 51       178064         0.0270     94.1933    ceval.c:2792                python                   reset_exc_info
c0236bd0 50       178114         0.0264     94.2198    (no location information)   vmlinux                  vsnprintf
c01313e0 50       178164         0.0264     94.2462    (no location information)   vmlinux                  swap_entry_free
08077f14 50       178214         0.0264     94.2727    stringobject.c:4163         python                   PyString_InternFromString
c010ce80 49       178263         0.0259     94.2986    (no location information)   vmlinux                  old_mmap
080a982c 49       178312         0.0259     94.3245    import.c:2250               python                   import_submodule
08071e78 47       178359         0.0249     94.3494    obmalloc.c:785              python                   PyObject_Realloc
0000a0b8 47       178406         0.0249     94.3742    (no location information)   ld-2.3.1.so              match_symbol
c013dc90 46       178452         0.0243     94.3986    (no location information)   vmlinux                  cp_new_stat64
c0127fb0 46       178498         0.0243     94.4229    (no location information)   vmlinux                  do_brk
080a8b78 45       178543         0.0238     94.4467    import.c:1679               python                   load_module
00006b5f 45       178588         0.0238     94.4705    (no location information)   libpthread-0.10.so       __pthread_mutexattr_setkind_np
c0135b70 44       178632         0.0233     94.4938    (no location information)   vmlinux                  filp_open
080c8cfc 44       178676         0.0233     94.5171    moduleobject.c:19           python                   PyModule_New
080c19e8 44       178720         0.0233     94.5403    acceler.c:55                python                   fixdfa
080577e0 44       178764         0.0233     94.5636    abstract.c:350              python                   binary_op1
00000000 44       178808         0.0233     94.5869    (no location information)   libdl-2.3.1.so           (no symbols)
c010b8d0 43       178851         0.0227     94.6096    (no location information)   vmlinux                  enable_8259A_irq
080c5838 43       178894         0.0227     94.6324    descrobject.c:583           python                   descr_new
0805b8c0 43       178937         0.0227     94.6551    classobject.c:801           python                   instance_setattr
c0153f90 42       178979         0.0222     94.6773    (no location information)   vmlinux                  proc_lookup
080c5294 42       179021         0.0222     94.6996    descrobject.c:120           python                   method_get
080ad414 42       179063         0.0222     94.7218    pystate.c:126               python                   threadstate_getframe
0808e064 42       179105         0.0222     94.7440    bltinmodule.c:36            python                   builtin___import__
0805e2dc 42       179147         0.0222     94.7662    classobject.c:2099          python                   PyMethod_New
080a70ec 41       179188         0.0217     94.7879    import.c:326                python                   PyImport_GetModuleDict
08097d0c 41       179229         0.0217     94.8096    ceval.c:3265                python                   PyEval_GetFrame
000053cb 41       179270         0.0217     94.8313    (no location information)   ld-2.3.1.so              _dl_name_match_p
c014c980 40       179310         0.0212     94.8524    (no location information)   vmlinux                  lookup_mnt
c0143690 40       179350         0.0212     94.8736    (no location information)   vmlinux                  __vfs_follow_link
080c1984 40       179390         0.0212     94.8948    acceler.c:36                python                   PyGrammar_RemoveAccelerators
0809ffac 40       179430         0.0212     94.9159    compile.c:4284              python                   jcompile
08098490 40       179470         0.0212     94.9371    ceval.c:3604                python                   load_args
08073fa4 40       179510         0.0212     94.9582    stringobject.c:1237         python                   string_buffer_getsegcount
08070bfc 40       179550         0.0212     94.9794    object.c:1264               python                   PyObject_SetAttr
c013df30 39       179589         0.0206     95.0000    (no location information)   vmlinux                  __constant_c_and_count_memset
080a78a8 39       179628         0.0206     95.0207    import.c:593                python                   PyImport_ExecCodeModuleEx
080767f8 39       179667         0.0206     95.0413    stringobject.c:3309         python                   _PyString_Resize
c02362a0 38       179705         0.0201     95.0614    (no location information)   vmlinux                  mmx_clear_page
c015e630 38       179743         0.0201     95.0815    (no location information)   vmlinux                  ext2_follow_link
c013ddb0 38       179781         0.0201     95.1016    (no location information)   vmlinux                  sys_stat64
c0116af0 38       179819         0.0201     95.1217    (no location information)   vmlinux                  do_fork
080c7354 38       179857         0.0201     95.1418    frameobject.c:722           python                   PyFrame_FastToLocals
080a7120 38       179895         0.0201     95.1619    import.c:355                python                   PyImport_Cleanup
08068828 38       179933         0.0201     95.1820    listobject.c:2442           python                   listiter_next
08056720 38       179971         0.0201     95.2021    tokenizer.c:999             python                   tok_get
0000732c 38       180009         0.0201     95.2222    (no location information)   ld-2.3.1.so              _dl_new_object
c01314e0 37       180046         0.0196     95.2418    (no location information)   vmlinux                  can_share_swap_page
c0127ac0 37       180083         0.0196     95.2613    (no location information)   vmlinux                  unmap_fixup
080ac018 37       180120         0.0196     95.2809    marshal.c:687               python                   PyMarshal_ReadLastObjectFromFile
080a91a0 37       180157         0.0196     95.3005    import.c:1995               python                   PyImport_ImportModuleEx
08078728 37       180194         0.0196     95.3201    tupleobject.c:264           python                   tuplecontains
080592d0 37       180231         0.0196     95.3396    abstract.c:1429             python                   PySequence_List
00000000 37       180268         0.0196     95.3592    (no location information)   libX11.so.6.2            (no symbols)
c01270d0 36       180304         0.0190     95.3783    (no location information)   vmlinux                  __vma_link
0807ce58 36       180340         0.0190     95.3973    typeobject.c:2758           python                   add_methods
c01167d0 35       180375         0.0185     95.4158    (no location information)   vmlinux                  copy_files
08079a74 35       180410         0.0185     95.4343    typeobject.c:404            python                   type_call
08066418 35       180445         0.0185     95.4528    listobject.c:652            python                   listappend
08055144 35       180480         0.0185     95.4714    parsetok.c:104              python                   parsetok
00008efd 35       180515         0.0185     95.4899    (no location information)   libpthread-0.10.so       __new_sem_post
0807a8b4 34       180549         0.0180     95.5079    typeobject.c:1184           python                   mro_implementation
0805a88c 34       180583         0.0180     95.5258    classobject.c:208           python                   class_getattr
0000809b 34       180617         0.0180     95.5438    (no location information)   libpthread-0.10.so       thread_self
c0237700 33       180650         0.0175     95.5613    (no location information)   vmlinux                  rb_insert_color
08068708 33       180683         0.0175     95.5787    listobject.c:2407           python                   list_iter
080663b0 33       180716         0.0175     95.5962    listobject.c:633            python                   ins
0805b1f8 33       180749         0.0175     95.6136    classobject.c:548           python                   PyInstance_New
080571e4 33       180782         0.0175     95.6311    abstract.c:86               python                   PyObject_GetItem
00001191 33       180815         0.0175     95.6486    (no location information)   ld-2.3.1.so              dl_main
c0126ec0 32       180847         0.0169     95.6655    (no location information)   vmlinux                  vm_enough_memory
c0122010 32       180879         0.0169     95.6824    (no location information)   vmlinux                  do_sigaction
080acccc 32       180911         0.0169     95.6993    modsupport.c:435            python                   Py_VaBuildValue
0805b460 32       180943         0.0169     95.7163    classobject.c:626           python                   instance_dealloc
00007d72 32       180975         0.0169     95.7332    (no location information)   ld-2.3.1.so              _dl_relocate_object_internal
080c1e84 31       181006         0.0164     95.7496    node.c:126                  python                   freechildren
080c1d64 31       181037         0.0164     95.7660    node.c:80                   python                   PyNode_AddChild
080b3854 31       181068         0.0164     95.7824    gcmodule.c:532              python                   collect
08098e80 31       181099         0.0164     95.7988    ceval.c:3962                python                   build_class
080984d0 31       181130         0.0164     95.8152    ceval.c:3619                python                   do_call
08065414 31       181161         0.0164     95.8316    listobject.c:103            python                   PyList_GetItem
080652cc 31       181192         0.0164     95.8480    listobject.c:13             python                   roundupsize
0805b6f4 31       181223         0.0164     95.8644    classobject.c:719           python                   instance_getattr2
00000000 31       181254         0.0164     95.8808    (no location information)   libxml2.so.2.5.7         (no symbols)
00005724 31       181285         0.0164     95.8972    (no location information)   ld-2.3.1.so              _dl_load_cache_lookup
c018b7c0 30       181315         0.0159     95.9131    (no location information)   vmlinux                  tty_ioctl
c01502d0 30       181345         0.0159     95.9289    (no location information)   vmlinux                  load_elf_binary
c01413c0 30       181375         0.0159     95.9448    (no location information)   vmlinux                  __user_walk
080b01d0 30       181405         0.0159     95.9607    sysmodule.c:50              python                   PySys_GetObject
080accb8 30       181435         0.0159     95.9765    modsupport.c:424            python                   Py_BuildValue
080709dc 30       181465         0.0159     95.9924    object.c:1174               python                   PyObject_GetAttrString
00000000 30       181495         0.0159     96.0083    (no location information)   libxpcom.so              (no symbols)
00000000 30       181525         0.0159     96.0241    (no location information)   libglib-2.0.so.0.200.2   (no symbols)
00000000 30       181555         0.0159     96.0400    (no location information)   libgdk-x11-2.0.so.0.200.1 (no symbols)
00000420 30       181585         0.0159     96.0559    (no location information)   oprofile.o               wind_dentries_2_4
000067e6 30       181615         0.0159     96.0718    (no location information)   libpthread-0.10.so       __pthread_mutex_destroy
080c5124 29       181644         0.0153     96.0871    descrobject.c:61            python                   descr_check
0806707c 29       181673         0.0153     96.1024    listobject.c:1389           python                   merge_hi
000098bc 29       181702         0.0153     96.1178    (no location information)   ld-2.3.1.so              _dl_fini
c0235dc0 28       181730         0.0148     96.1326    (no location information)   vmlinux                  clear_user
080c81c4 28       181758         0.0148     96.1474    funcobject.c:469            python                   function_call
080b2274 28       181786         0.0148     96.1622    thread_pthread.h:272        python                   PyThread_get_thread_ident
080a8d90 28       181814         0.0148     96.1770    import.c:1817               python                   find_frozen
080a184c 28       181842         0.0148     96.1918    compile.c:5247              python                   symtable_node
08067580 28       181870         0.0148     96.2066    listobject.c:1666           python                   listsort
c014c530 27       181897         0.0143     96.2209    (no location information)   vmlinux                  dnotify_flush
0807d098 27       181924         0.0143     96.2352    typeobject.c:2833           python                   inherit_special
0807a74c 27       181951         0.0143     96.2495    typeobject.c:1114           python                   pmerge
08075a60 27       181978         0.0143     96.2638    stringobject.c:2391         python                   string_startswith
0805a0ac 27       182005         0.0143     96.2781    abstract.c:2107             python                   PyObject_IsSubclass
08059944 27       182032         0.0143     96.2923    abstract.c:1769             python                   PyObject_CallFunction
00000000 27       182059         0.0143     96.3066    (no location information)   libgobject-2.0.so.0.200.2 (no symbols)
00000000 27       182086         0.0143     96.3209    (no location information)   xterm                    (no symbols)
c01433b0 26       182112         0.0138     96.3347    (no location information)   vmlinux                  follow_dotdot
080c8dd8 26       182138         0.0138     96.3484    moduleobject.c:45           python                   PyModule_GetDict
080b400c 26       182164         0.0138     96.3622    gcmodule.c:1017             python                   PyObject_GC_Track
080ac164 26       182190         0.0138     96.3759    marshal.c:743               python                   PyMarshal_ReadObjectFromString
080a7d98 26       182216         0.0138     96.3897    import.c:850                python                   load_source_module
08065ab4 26       182242         0.0138     96.4034    listobject.c:337            python                   list_item
c02379a0 25       182267         0.0132     96.4167    (no location information)   vmlinux                  rb_erase
c0235ca0 25       182292         0.0132     96.4299    (no location information)   vmlinux                  __generic_copy_from_user
c0235c40 25       182317         0.0132     96.4431    (no location information)   vmlinux                  __generic_copy_to_user
080a79fc 25       182342         0.0132     96.4563    import.c:646                python                   make_compiled_pathname
080826bc 25       182367         0.0132     96.4695    weakrefobject.c:79          python                   gc_traverse
08067944 25       182392         0.0132     96.4828    listobject.c:1806           python                   PyList_AsTuple
0805e8b0 25       182417         0.0132     96.4960    classobject.c:2314          python                   instancemethod_traverse
00000000 25       182442         0.0132     96.5092    (no location information)   screen                   (no symbols)
00008269 25       182467         0.0132     96.5224    (no location information)   libpthread-0.10.so       sigaction
c01379c0 24       182491         0.0127     96.5351    (no location information)   vmlinux                  file_move
c01350d0 24       182515         0.0127     96.5478    (no location information)   vmlinux                  fd_install
c011b610 24       182539         0.0127     96.5605    (no location information)   vmlinux                  sys_wait4
080ace24 24       182563         0.0127     96.5732    modsupport.c:515            python                   PyModule_AddObject
080a6fa0 24       182587         0.0127     96.5859    import.c:245                python                   lock_import
080a53cc 24       182611         0.0127     96.5986    getargs.c:440               python                   float_argument_error
080a0390 24       182635         0.0127     96.6113    compile.c:4387              python                   PyCode_Addr2Line
0809418c 24       182659         0.0127     96.6240    ceval.c:535                 python                   PyEval_EvalCode
08077f44 24       182683         0.0127     96.6367    stringobject.c:4173         python                   PyString_Fini
08063598 24       182707         0.0127     96.6494    intobject.c:126             python                   int_dealloc
0805eb60 24       182731         0.0127     96.6621    classobject.c:2439          python                   instancemethod_descr_get
080596a0 24       182755         0.0127     96.6748    abstract.c:1618             python                   PySequence_Contains
0804e07c 24       182779         0.0127     96.6875    op_fileio.c:223             oprofiled                op_get_line
00003670 24       182803         0.0127     96.7002    (no location information)   oprofile.o               my_old_mmap
00003db4 24       182827         0.0127     96.7129    (no location information)   libpthread-0.10.so       anonymous symbol from section .plt
c0135fe0 23       182850         0.0122     96.7250    (no location information)   vmlinux                  filp_close
c012c630 23       182873         0.0122     96.7372    (no location information)   vmlinux                  change_pte_range
c010af20 23       182896         0.0122     96.7494    (no location information)   vmlinux                  IRQ0x00_interrupt
080c2030 23       182919         0.0122     96.7615    parser.c:121                python                   push
080b2be4 23       182942         0.0122     96.7737    getpath.c:357               python                   calculate_path
080a392c 23       182965         0.0122     96.7859    errors.c:86                 python                   PyErr_GivenExceptionMatches
080635e4 23       182988         0.0122     96.7980    intobject.c:144             python                   PyInt_AsLong
0000dab0 23       183011         0.0122     96.8102    (no location information)   ld-2.3.1.so              index
c0137950 22       183033         0.0116     96.8219    (no location information)   vmlinux                  fget
080c9214 22       183055         0.0116     96.8335    moduleobject.c:203          python                   find_builtin_names
080b8a70 22       183077         0.0116     96.8451    posixmodule.c:6725          python                   setup_confname_table
080a3e18 22       183099         0.0116     96.8568    errors.c:529                python                   PyErr_NewException
080a3dd0 22       183121         0.0116     96.8684    errors.c:509                python                   PyErr_Format
080a0c64 22       183143         0.0116     96.8800    compile.c:4761              python                   symtable_load_symbols
080653cc 22       183165         0.0116     96.8917    listobject.c:90             python                   PyList_Size
0805a18c 22       183187         0.0116     96.9033    abstract.c:2148             python                   PyObject_GetIter
0805603c 22       183209         0.0116     96.9150    tokenizer.c:658             python                   tok_nextc
00000000 22       183231         0.0116     96.9266    (no location information)   libXt.so.6.0             (no symbols)
0000462d 22       183253         0.0116     96.9382    (no location information)   ld-2.3.1.so              open_verify
c0148750 21       183274         0.0111     96.9493    (no location information)   vmlinux                  locks_remove_flock
080b8a54 21       183295         0.0111     96.9604    posixmodule.c:6713          python                   cmp_constdefs
080b4a5c 21       183316         0.0111     96.9716    signalmodule.c:315          python                   initsignal
080a80f4 21       183337         0.0111     96.9827    import.c:990                python                   get_path_importer
080a6af0 21       183358         0.0111     96.9938    getargs.c:1507              python                   PyArg_UnpackTuple
0807e174 21       183379         0.0111     97.0049    typeobject.c:3243           python                   add_subclass
0807aa50 21       183400         0.0111     97.0160    typeobject.c:1265           python                   mro_internal
08076e10 21       183421         0.0111     97.0271    stringobject.c:3651         python                   PyString_Format
0806dd54 21       183442         0.0111     97.0382    dictobject.c:868            python                   dict_ass_sub
0806ce84 21       183463         0.0111     97.0493    dictobject.c:201            python                   lookdict
0805e52c 21       183484         0.0111     97.0604    classobject.c:2217          python                   instancemethod_dealloc
0805803c 21       183505         0.0111     97.0715    abstract.c:609              python                   PyNumber_Add
00000000 21       183526         0.0111     97.0826    (no location information)   libgcc_s.so.1            (no symbols)
0000d5e0 21       183547         0.0111     97.0938    (no location information)   ld-2.3.1.so              __mmap
0000b778 21       183568         0.0111     97.1049    (no location information)   ld-2.3.1.so              _dl_sysdep_start
c0140fb0 20       183588         0.0106     97.1154    (no location information)   vmlinux                  path_walk
c012a7e0 20       183608         0.0106     97.1260    (no location information)   vmlinux                  generic_file_mmap
c0127190 20       183628         0.0106     97.1366    (no location information)   vmlinux                  vma_merge
c01227a0 20       183648         0.0106     97.1472    (no location information)   vmlinux                  __constant_copy_to_user
c01223b0 20       183668         0.0106     97.1578    (no location information)   vmlinux                  sys_rt_sigaction
080a3a04 20       183688         0.0106     97.1683    errors.c:127                python                   PyErr_NormalizeException
08079018 20       183708         0.0106     97.1789    tupleobject.c:750           python                   tuple_iter
08073b68 20       183728         0.0106     97.1895    stringobject.c:1045         python                   string_item
0805a704 20       183748         0.0106     97.2001    classobject.c:174           python                   class_dealloc
08059120 20       183768         0.0106     97.2107    abstract.c:1356             python                   PySequence_Tuple
0004020c 20       183788         0.0106     97.2212    (no location information)   nvidia.o                 __nvsym01306
0000c114 20       183808         0.0106     97.2318    (no location information)   ld-2.3.1.so              __libc_memalign
0000a8bb 20       183828         0.0106     97.2424    (no location information)   ld-2.3.1.so              _dl_name_match_p
c01453f0 19       183847         0.0101     97.2524    (no location information)   vmlinux                  do_select
c01306e0 19       183866         0.0101     97.2625    (no location information)   vmlinux                  _alloc_pages
c01219c0 19       183885         0.0101     97.2725    (no location information)   vmlinux                  sys_rt_sigprocmask
080c9414 19       183904         0.0101     97.2826    moduleobject.c:271          python                   module_traverse
080adb88 19       183923         0.0101     97.2927    pythonrun.c:111             python                   Py_Initialize
080abfc4 19       183942         0.0101     97.3027    marshal.c:660               python                   PyMarshal_ReadLongFromFile
080a9be8 19       183961         0.0101     97.3128    import.c:2375               python                   PyImport_Import
0808d544 19       183980         0.0101     97.3228    unicodeobject.c:6801        python                   _PyUnicodeUCS2_Fini
08079138 19       183999         0.0101     97.3329    tupleobject.c:785           python                   tupleiter_next
08073724 19       184018         0.0101     97.3429    stringobject.c:892          python                   string_concat
0805b01c 19       184037         0.0101     97.3530    classobject.c:485           python                   PyClass_IsSubclass
0804c8b0 19       184056         0.0101     97.3630    db_insert.c:20              oprofiled                odb_insert
000067ac 19       184075         0.0101     97.3731    (no location information)   libpthread-0.10.so       __pthread_mutex_init
0000bc4e 19       184094         0.0101     97.3831    (no location information)   ld-2.3.1.so              _dl_important_hwcaps
c0140670 18       184112         0.0095     97.3926    (no location information)   vmlinux                  path_release
c012c210 18       184130         0.0095     97.4022    (no location information)   vmlinux                  mprotect_fixup
080b0250 18       184148         0.0095     97.4117    sysmodule.c:72              python                   PySys_SetObject
080786a0 18       184166         0.0095     97.4212    tupleobject.c:238           python                   tuplehash
0805b77c 18       184184         0.0095     97.4307    classobject.c:745           python                   instance_getattr
08058194 18       184202         0.0095     97.4402    abstract.c:671              python                   PyNumber_Multiply
000229a0 18       184220         0.0095     97.4498    (no location information)   nvidia.o                 __nvsym01479
000215a4 18       184238         0.0095     97.4593    (no location information)   nvidia.o                 __nvsym01436
00008d01 18       184256         0.0095     97.4688    (no location information)   libpthread-0.10.so       __new_sem_wait
00006b42 18       184274         0.0095     97.4783    (no location information)   libpthread-0.10.so       __pthread_mutexattr_init
c012c440 17       184291         0.0090     97.4873    (no location information)   vmlinux                  sys_mprotect
c0127f40 17       184308         0.0090     97.4963    (no location information)   vmlinux                  sys_munmap
c01123c0 17       184325         0.0090     97.5053    (no location information)   vmlinux                  smp_apic_timer_interrupt
c010b7f0 17       184342         0.0090     97.5143    (no location information)   vmlinux                  apic_timer_interrupt
080ca134 17       184359         0.0090     97.5233    structmember.c:55           python                   PyMember_GetOne
080c7514 17       184376         0.0090     97.5323    frameobject.c:766           python                   PyFrame_LocalsToFast
080c6b78 17       184393         0.0090     97.5413    frameobject.c:424           python                   frame_traverse
080a6474 17       184410         0.0090     97.5503    getargs.c:1136              python                   PyArg_ParseTupleAndKeywords
080a3bec 17       184427         0.0090     97.5593    errors.c:213                python                   PyErr_Fetch
080a38a0 17       184444         0.0090     97.5683    errors.c:54                 python                   PyErr_SetObject
08083bbc 17       184461         0.0090     97.5772    weakrefobject.c:596         python                   PyWeakref_NewRef
08081cb8 17       184478         0.0090     97.5862    typeobject.c:5178           python                   slotdef_cmp
08071358 17       184495         0.0090     97.5952    object.c:1655               python                   PyCallable_Check
0805b620 17       184512         0.0090     97.6042    classobject.c:690           python                   instance_getattr1
c015a280 16       184528         0.0085     97.6127    (no location information)   vmlinux                  ext2_release_file
c0124360 16       184544         0.0085     97.6212    (no location information)   vmlinux                  __constant_copy_to_user
c011acf0 16       184560         0.0085     97.6296    (no location information)   vmlinux                  put_files_struct
c0105ae0 16       184576         0.0085     97.6381    (no location information)   vmlinux                  __switch_to
080bfc00 16       184592         0.0085     97.6465    zipimport.c:64              python                   zipimporter_init
080b54a8 16       184608         0.0085     97.6550    signalmodule.c:559          python                   finisignal
080afef0 16       184624         0.0085     97.6635    symtable.c:23               python                   PySymtableEntry_New
0809716c 16       184640         0.0085     97.6719    ceval.c:2746                python                   set_exc_info
08081cec 16       184656         0.0085     97.6804    typeobject.c:5191           python                   init_slotdefs
08065d90 16       184672         0.0085     97.6889    listobject.c:457            python                   list_ass_slice
0805a6bc 16       184688         0.0085     97.6973    classobject.c:160           python                   class_new
0804a350 16       184704         0.0085     97.7058    opd_proc.c:304              oprofiled                opd_lookup_maps
0003aa48 16       184720         0.0085     97.7143    (no location information)   nvidia.o                 __nvsym01888
000175b8 16       184736         0.0085     97.7227    (no location information)   nvidia.o                 __nvsym00655
00009541 16       184752         0.0085     97.7312    (no location information)   ld-2.3.1.so              _dl_catch_error_internal
00006b04 16       184768         0.0085     97.7396    (no location information)   ld-2.3.1.so              _dl_setup_hash
c0144600 15       184783         0.0079     97.7476    (no location information)   vmlinux                  sys_ioctl
c0120170 15       184798         0.0079     97.7555    (no location information)   vmlinux                  update_one_process
00003254 15       184813         0.0079     97.7634    stropmodule.c:1208          strop.so                 initstrop
080c1f48 15       184828         0.0079     97.7714    parser.c:73                 python                   PyParser_New
080a9584 15       184843         0.0079     97.7793    import.c:2149               python                   ensure_fromlist
0809a204 15       184858         0.0079     97.7873    compile.c:739               python                   com_init
08097cac 15       184873         0.0079     97.7952    ceval.c:3235                python                   PyEval_GetBuiltins
0805ea24 15       184888         0.0079     97.8031    classobject.c:2380          python                   instancemethod_call
0805bee4 15       184903         0.0079     97.8111    classobject.c:979           python                   instance_traverse
08054840 15       184918         0.0079     97.8190    main.c:125                  python                   Py_Main
0804a4a8 15       184933         0.0079     97.8269    opd_proc.c:359              oprofiled                opd_put_sample
00044894 15       184948         0.0079     97.8349    (no location information)   nvidia.o                 __nvsym01327
0000d660 15       184963         0.0079     97.8428    (no location information)   ld-2.3.1.so              __mprotect
000082b4 15       184978         0.0079     97.8507    (no location information)   ld-2.3.1.so              openaux
c0122830 14       184992         0.0074     97.8581    (no location information)   vmlinux                  __constant_copy_from_user
c01208e0 14       185006         0.0074     97.8655    (no location information)   vmlinux                  run_timer_list
c010d440 14       185020         0.0074     97.8729    (no location information)   vmlinux                  __constant_copy_from_user
080c7904 14       185034         0.0074     97.8804    funcobject.c:97             python                   PyFunction_SetDefaults
080ac8c0 14       185048         0.0074     97.8878    modsupport.c:198            python                   do_mklist
080a77e4 14       185062         0.0074     97.8952    import.c:562                python                   PyImport_AddModule
0807ef24 14       185076         0.0074     97.9026    typeobject.c:3869           python                   add_tp_new_wrapper
0807af7c 14       185090         0.0074     97.9100    typeobject.c:1533           python                   type_new
08068de4 14       185104         0.0074     97.9174    longobject.c:337            python                   _PyLong_FromByteArray
08066430 14       185118         0.0074     97.9248    listobject.c:658            python                   listextend_internal
0805719c 14       185132         0.0074     97.9322    abstract.c:61               python                   PyObject_Size
00000000 14       185146         0.0074     97.9396    (no location information)   libgfx_gtk.so            (no symbols)
00127220 14       185160         0.0074     97.9470    (no location information)   nvidia.o                 __nvsym04966
00022a10 14       185174         0.0074     97.9544    (no location information)   nvidia.o                 __nvsym01439
000010e0 14       185188         0.0074     97.9618    (no location information)   8390.o                   NS8390_trigger_send
00000000 14       185202         0.0074     97.9692    (no location information)   libutil-2.3.1.so         (no symbols)
00000000 14       185216         0.0074     97.9766    (no location information)   libm-2.3.1.so            (no symbols)
0000d150 14       185230         0.0074     97.9840    (no location information)   ld-2.3.1.so              __read
0000a830 14       185244         0.0074     97.9914    (no location information)   ld-2.3.1.so              find_needed
c012c140 13       185257         0.0069     97.9983    (no location information)   vmlinux                  change_protection
c010af78 13       185270         0.0069     98.0052    (no location information)   vmlinux                  IRQ0x0b_interrupt
080c7204 13       185283         0.0069     98.0121    frameobject.c:664           python                   PyFrame_BlockPop
080c5938 13       185296         0.0069     98.0189    descrobject.c:649           python                   PyDescr_NewWrapper
080b9184 13       185309         0.0069     98.0258    posixmodule.c:7404          python                   initposix
080a7030 13       185322         0.0069     98.0327    import.c:267                python                   unlock_import
08090c84 13       185335         0.0069     98.0396    bltinmodule.c:2080          python                   _PyBuiltin_Init
0808f678 13       185348         0.0069     98.0465    bltinmodule.c:1068          python                   builtin_len
0807871c 13       185361         0.0069     98.0533    tupleobject.c:258           python                   tuplelength
08073dec 13       185374         0.0069     98.0602    stringobject.c:1163         python                   string_subscript
0806f4e4 13       185387         0.0069     98.0671    object.c:155                python                   PyObject_Init
08058b08 13       185400         0.0069     98.0740    abstract.c:1067             python                   PySequence_Size
08058ae0 13       185413         0.0069     98.0808    abstract.c:1060             python                   PySequence_Check
080553fc 13       185426         0.0069     98.0877    tokenizer.c:106             python                   tok_new
000e07f0 13       185439         0.0069     98.0946    (no location information)   nvidia.o                 __nvsym00544
000db9d8 13       185452         0.0069     98.1015    (no location information)   nvidia.o                 __nvsym03991
0001754c 13       185465         0.0069     98.1083    (no location information)   nvidia.o                 __nvsym00731
0000dfc4 13       185478         0.0069     98.1152    (no location information)   ld-2.3.1.so              memcpy
0000286c 13       185491         0.0069     98.1221    (no location information)   ld-2.3.1.so              process_envvars
00001176 13       185504         0.0069     98.1290    (no location information)   ld-2.3.1.so              startup_error_tsd
c0149be0 12       185516         0.0063     98.1353    (no location information)   vmlinux                  __d_path
c0127c10 12       185528         0.0063     98.1417    (no location information)   vmlinux                  free_pgtables
080c96ec 12       185540         0.0063     98.1480    rangeobject.c:250           python                   rangeiter_next
080c1c74 12       185552         0.0063     98.1544    grammar1.c:13               python                   PyGrammar_FindDFA
080b2618 12       185564         0.0063     98.1607    getpath.c:131               python                   reduce
080b191c 12       185576         0.0063     98.1671    traceback.c:107             python                   newtracebackobject
080b00f4 12       185588         0.0063     98.1734    symtable.c:115              python                   ste_dealloc
0809ac4c 12       185600         0.0063     98.1798    compile.c:1092              python                   com_addop_varname
0809a90c 12       185612         0.0063     98.1861    compile.c:968               python                   com_add
0808ee78 12       185624         0.0063     98.1925    bltinmodule.c:687           python                   builtin_hasattr
0808d4c8 12       185636         0.0063     98.1988    unicodeobject.c:6783        python                   _PyUnicodeUCS2_Init
08071014 12       185648         0.0063     98.2052    object.c:1476               python                   PyObject_GenericSetAttr
0806de10 12       185660         0.0063     98.2115    dictobject.c:912            python                   dict_values
0806a680 12       185672         0.0063     98.2178    longobject.c:1490           python                   long_dealloc
0806689c 12       185684         0.0063     98.2242    listobject.c:922            python                   count_run
000073cd 12       185696         0.0063     98.2305    (no location information)   libpthread-0.10.so       pthread_initialize
0000cf18 12       185708         0.0063     98.2369    (no location information)   ld-2.3.1.so              ___fxstat64
c01594f0 11       185719         0.0058     98.2427    (no location information)   vmlinux                  ext2_readdir
c0120dd0 11       185730         0.0058     98.2485    (no location information)   vmlinux                  collect_signal
c0120c70 11       185741         0.0058     98.2543    (no location information)   vmlinux                  flush_signal_handlers
c011ec20 11       185752         0.0058     98.2602    (no location information)   vmlinux                  sysctl_string
c010739f 11       185763         0.0058     98.2660    (no location information)   vmlinux                  ret_from_exception
080c25ac 11       185774         0.0058     98.2718    boolobject.c:37             python                   PyBool_FromLong
080ad220 11       185785         0.0058     98.2776    pystate.c:75                python                   PyInterpreterState_Clear
080a7b00 11       185796         0.0058     98.2834    import.c:706                python                   read_compiled_module
080a1018 11       185807         0.0058     98.2893    compile.c:4882              python                   symtable_init
080825c8 11       185818         0.0058     98.2951    weakrefobject.c:24          python                   new_weakref
08070a84 11       185829         0.0058     98.3009    object.c:1201               python                   PyObject_SetAttrString
08064c4c 11       185840         0.0058     98.3067    intobject.c:1078            python                   _PyInt_Init
08063e3c 11       185851         0.0058     98.3125    intobject.c:453             python                   int_mul
08059a1c 11       185862         0.0058     98.3184    abstract.c:1806             python                   PyObject_CallMethod
08058dc0 11       185873         0.0058     98.3242    abstract.c:1199             python                   PySequence_GetSlice
00000000 11       185884         0.0058     98.3300    (no location information)   libgkview.so             (no symbols)
00003380 11       185895         0.0058     98.3358    (no location information)   oprofile.o               oprof_output_map
000016a0 11       185906         0.0058     98.3416    (no location information)   oprofile.o               __constant_memcpy
000008f0 11       185917         0.0058     98.3474    (no location information)   8390.o                   ei_receive
00009324 11       185928         0.0058     98.3533    (no location information)   libpthread-0.10.so       thread_self
00009688 11       185939         0.0058     98.3591    (no location information)   ld-2.3.1.so              call_init
c014b210 10       185949         0.0053     98.3644    (no location information)   vmlinux                  iput
c014ada0 10       185959         0.0053     98.3697    (no location information)   vmlinux                  find_inode
080c9fcc 10       185969         0.0053     98.3750    getmtime.c:11               python                   PyOS_GetLastModificationTime
080c9e24 10       185979         0.0053     98.3802    structseq.c:347             python                   PyStructSequence_InitType
080c9160 10       185989         0.0053     98.3855    moduleobject.c:173          python                   module_dealloc
080c71b8 10       185999         0.0053     98.3908    frameobject.c:652           python                   PyFrame_BlockSetup
080b2768 10       186009         0.0053     98.3961    getpath.c:200               python                   joinpath
080b19ac 10       186019         0.0053     98.4014    traceback.c:130             python                   PyTraceBack_Here
080adb48 10       186029         0.0053     98.4067    pythonrun.c:82              python                   Py_IsInitialized
080abfdc 10       186039         0.0053     98.4120    marshal.c:670               python                   getfilesize
080a39e8 10       186049         0.0053     98.4173    errors.c:117                python                   PyErr_ExceptionMatches
0809a674 10       186059         0.0053     98.4226    compile.c:852               python                   com_addbyte
08091a2c 10       186069         0.0053     98.4279    exceptions.c:252            python                   Exception__init__
0807879c 10       186079         0.0053     98.4331    tupleobject.c:286           python                   tupleslice
08064ffc 10       186089         0.0053     98.4384    iterobject.c:48             python                   iter_iternext
08059eac 10       186099         0.0053     98.4437    abstract.c:2040             python                   PyObject_IsInstance
00126b44 10       186109         0.0053     98.4490    (no location information)   nvidia.o                 __nvsym04955
000f2870 10       186119         0.0053     98.4543    (no location information)   nvidia.o                 __nvsym04336
00044808 10       186129         0.0053     98.4596    (no location information)   nvidia.o                 __nvsym01609
0003dc54 10       186139         0.0053     98.4649    (no location information)   nvidia.o                 __nvsym01494
000216e0 10       186149         0.0053     98.4702    (no location information)   nvidia.o                 __nvsym01442
00008ea6 10       186159         0.0053     98.4755    (no location information)   libpthread-0.10.so       __new_sem_trywait
00009779 10       186169         0.0053     98.4808    (no location information)   ld-2.3.1.so              _dl_init_internal
000081ba 10       186179         0.0053     98.4860    (no location information)   ld-2.3.1.so              elf_machine_runtime_setup
000035e9 10       186189         0.0053     98.4913    (no location information)   ld-2.3.1.so              _dl_init_paths
c0232180 9        186198         0.0048     98.4961    (no location information)   vmlinux                  unix_poll
c014fea0 9        186207         0.0048     98.5009    (no location information)   vmlinux                  load_elf_interp
c0145620 9        186216         0.0048     98.5056    (no location information)   vmlinux                  sys_select
c01313d0 9        186225         0.0048     98.5104    (no location information)   vmlinux                  swap_info_put
c0120380 9        186234         0.0048     98.5151    (no location information)   vmlinux                  timer_bh
c011cc50 9        186243         0.0048     98.5199    (no location information)   vmlinux                  __tasklet_hi_schedule
c011b370 9        186252         0.0048     98.5247    (no location information)   vmlinux                  do_exit
c0116050 9        186261         0.0048     98.5294    (no location information)   vmlinux                  try_to_wake_up
080c8cac 9        186270         0.0048     98.5342    methodobject.c:354          python                   PyCFunction_Fini
080c832c 9        186279         0.0048     98.5389    funcobject.c:520            python                   func_descr_get
080b5770 9        186288         0.0048     98.5437    posixmodule.c:319           python                   convertenviron
080b22e4 9        186297         0.0048     98.5485    thread_pthread.h:342        python                   PyThread_allocate_lock
080af670 9        186306         0.0048     98.5532    pythonrun.c:1130            python                   PyRun_StringFlags
080a8fc4 9        186315         0.0048     98.5580    import.c:1922               python                   PyImport_ImportModule
080a8cd4 9        186324         0.0048     98.5627    import.c:1785               python                   init_builtin
080a8a60 9        186333         0.0048     98.5675    import.c:1430               python                   case_ok
080a7684 9        186342         0.0048     98.5723    import.c:505                python                   _PyImport_FixupExtension
080a26ac 9        186351         0.0048     98.5770    codecs.c:54                 python                   normalizestring
080a164c 9        186360         0.0048     98.5818    compile.c:5163              python                   symtable_add_def_o
080a1098 9        186369         0.0048     98.5866    compile.c:4908              python                   PySymtable_Free
080a0a3c 9        186378         0.0048     98.5913    compile.c:4647              python                   symtable_freevar_offsets
080a059c 9        186387         0.0048     98.5961    compile.c:4471              python                   symtable_build
0809fd28 9        186396         0.0048     98.6008    compile.c:4164              python                   compile_node
0809d5f8 9        186405         0.0048     98.6056    compile.c:2569              python                   com_list
08098568 9        186414         0.0048     98.6104    ceval.c:3655                python                   ext_do_call
080752c8 9        186423         0.0048     98.6151    stringobject.c:2052         python                   string_translate
0807097c 9        186432         0.0048     98.6199    object.c:1137               python                   _Py_HashPointer
0806f8a4 9        186441         0.0048     98.6246    object.c:327                python                   PyObject_Str
080687b0 9        186450         0.0048     98.6294    listobject.c:2426           python                   listiter_dealloc
08060d88 9        186459         0.0048     98.6342    fileobject.c:1855           python                   file_new
08054f88 9        186468         0.0048     98.6389    parsetok.c:30               python                   PyParser_ParseStringFlags
000004c0 9        186477         0.0048     98.6437    (no location information)   oprofile.o               do_path_hash_2_4
000004b0 9        186486         0.0048     98.6484    (no location information)   8390.o                   ei_interrupt_Rb93d8fa5
00006b55 9        186495         0.0048     98.6532    (no location information)   libpthread-0.10.so       __pthread_mutexattr_destroy
0000c1f6 9        186504         0.0048     98.6580    (no location information)   ld-2.3.1.so              malloc
00007c24 9        186513         0.0048     98.6627    (no location information)   ld-2.3.1.so              elf_dynamic_do_rela.8
00000c09 9        186522         0.0048     98.6675    (no location information)   ld-2.3.1.so              elf_dynamic_do_rel.4
c02377f0 8        186530         0.0042     98.6717    (no location information)   vmlinux                  __rb_erase_color
c0144090 8        186538         0.0042     98.6759    (no location information)   vmlinux                  sys_fcntl64
c013e900 8        186546         0.0042     98.6802    (no location information)   vmlinux                  flush_old_exec
c013e540 8        186554         0.0042     98.6844    (no location information)   vmlinux                  setup_arg_pages
c013e1e0 8        186562         0.0042     98.6886    (no location information)   vmlinux                  count
c01161c0 8        186570         0.0042     98.6929    (no location information)   vmlinux                  add_wait_queue
c01151a0 8        186578         0.0042     98.6971    (no location information)   vmlinux                  __wake_up
c0108a00 8        186586         0.0042     98.7013    (no location information)   vmlinux                  do_IRQ
080c1e58 8        186594         0.0042     98.7056    node.c:117                  python                   PyNode_Free
080c1cfc 8        186602         0.0042     98.7098    node.c:9                    python                   PyNode_New
080bec74 8        186610         0.0042     98.7140    _sre.c:3124                 python                   init_sre
080b23a4 8        186618         0.0042     98.7183    thread_pthread.h:397        python                   PyThread_acquire_lock
080b1e60 8        186626         0.0042     98.7225    getopt.c:35                 python                   _PyOS_GetOpt
080afe74 8        186634         0.0042     98.7267    pythonrun.c:1571            python                   PyOS_getsig
080a1478 8        186642         0.0042     98.7310    compile.c:5088              python                   symtable_enter_scope
0809f4a0 8        186650         0.0042     98.7352    compile.c:3817              python                   com_node
0809bc20 8        186658         0.0042     98.7394    compile.c:1628              python                   com_atom
0809a3bc 8        186666         0.0042     98.7437    compile.c:793               python                   com_free
08093b54 8        186674         0.0042     98.7479    exceptions.c:1823           python                   _PyExc_Fini
080918f8 8        186682         0.0042     98.7521    exceptions.c:176            python                   make_class
080917e8 8        186690         0.0042     98.7564    exceptions.c:128            python                   populate_methods
08083b34 8        186698         0.0042     98.7606    weakrefobject.c:551         python                   get_basic_refs
0807bc8c 8        186706         0.0042     98.7648    typeobject.c:1941           python                   _PyType_Lookup
08070a40 8        186714         0.0042     98.7691    object.c:1189               python                   PyObject_HasAttrString
0806fc3c 8        186722         0.0042     98.7733    object.c:482                python                   try_rich_compare
0805b84c 8        186730         0.0042     98.7775    classobject.c:785           python                   instance_setattr1
080558a8 8        186738         0.0042     98.7817    tokenizer.c:303             python                   check_bom
00000000 8        186746         0.0042     98.7860    (no location information)   less                     (no symbols)
000008f0 8        186754         0.0042     98.7902    (no location information)   oprofile.o               __oprof_put_note
00126d98 8        186762         0.0042     98.7944    (no location information)   nvidia.o                 __nvsym04964
000216a0 8        186770         0.0042     98.7987    (no location information)   nvidia.o                 __nvsym01476
000181d0 8        186778         0.0042     98.8029    (no location information)   nvidia.o                 rm_isr
000016c2 8        186786         0.0042     98.8071    (no location information)   nvidia.o                 nv_kern_isr
00000610 8        186794         0.0042     98.8114    (no location information)   ne2k-pci.o               ne2k_pci_block_input
00000d19 8        186802         0.0042     98.8156    (no location information)   ld-2.3.1.so              _dl_start
00000b45 8        186810         0.0042     98.8198    (no location information)   ld-2.3.1.so              _dl_start_final
c0155ea0 7        186817         0.0037     98.8235    (no location information)   vmlinux                  meminfo_read_proc
c013e420 7        186824         0.0037     98.8272    (no location information)   vmlinux                  copy_strings_kernel
c0136100 7        186831         0.0037     98.8309    (no location information)   vmlinux                  generic_file_open
c0120f90 7        186838         0.0037     98.8346    (no location information)   vmlinux                  rm_from_queue
c011d750 7        186845         0.0037     98.8383    (no location information)   vmlinux                  parse_table
c011cb00 7        186852         0.0037     98.8421    (no location information)   vmlinux                  do_softirq
080c3190 7        186859         0.0037     98.8458    cobject.c:21                python                   PyCObject_FromVoidPtr
080bcfa0 7        186866         0.0037     98.8495    _sre.c:1796                 python                   pattern_dealloc
080b3b2c 7        186873         0.0037     98.8532    gcmodule.c:664              python                   collect_generations
080b3640 7        186880         0.0037     98.8569    gcmodule.c:425              python                   move_finalizer_reachable
080b358c 7        186887         0.0037     98.8606    gcmodule.c:387              python                   move_finalizers
080b0b24 7        186894         0.0037     98.8643    sysmodule.c:781             python                   PySys_ResetWarnOptions
080b0a50 7        186901         0.0037     98.8680    sysmodule.c:752             python                   list_builtin_module_names
080af9b8 7        186908         0.0037     98.8717    pythonrun.c:1271            python                   PyParser_SimpleParseStringFlags
080ac774 7        186915         0.0037     98.8754    modsupport.c:156            python                   do_mkdict
080a9788 7        186922         0.0037     98.8791    import.c:2217               python                   add_submodule
080a7edc 7        186929         0.0037     98.8828    import.c:912                python                   load_package
080a7a50 7        186936         0.0037     98.8865    import.c:674                python                   check_compiled_module
080a7754 7        186943         0.0037     98.8902    import.c:532                python                   _PyImport_FindExtension
080a3c28 7        186950         0.0037     98.8939    errors.c:227                python                   PyErr_Clear
080a2740 7        186957         0.0037     98.8976    codecs.c:96                 python                   _PyCodec_Lookup
0809d464 7        186964         0.0037     98.9013    compile.c:2525              python                   com_test
0807cf78 7        186971         0.0037     98.9050    typeobject.c:2794           python                   add_members
080790c0 7        186978         0.0037     98.9087    tupleobject.c:769           python                   tupleiter_dealloc
080738a8 7        186985         0.0037     98.9124    stringobject.c:934          python                   string_repeat
080719f4 7        186992         0.0037     98.9161    object.c:2112               python                   PyMem_Free
080718b0 7        186999         0.0037     98.9198    object.c:1962               python                   _Py_ReadyTypes
080712a8 7        187006         0.0037     98.9235    object.c:1609               python                   PyNumber_CoerceEx
080705ac 7        187013         0.0037     98.9272    object.c:956                python                   do_richcmp
08068b70 7        187020         0.0037     98.9309    longobject.c:188            python                   PyLong_AsLong
08064a04 7        187027         0.0037     98.9346    intobject.c:904             python                   int_new
0805b0f0 7        187034         0.0037     98.9383    classobject.c:514           python                   PyInstance_NewRaw
080584b8 7        187041         0.0037     98.9420    abstract.c:794              python                   PyNumber_InPlaceAdd
080580ec 7        187048         0.0037     98.9457    abstract.c:627              python                   sequence_repeat
08055dec 7        187055         0.0037     98.9494    tokenizer.c:555             python                   decode_str
080556a0 7        187062         0.0037     98.9531    tokenizer.c:209             python                   get_coding_spec
0804a2e8 7        187069         0.0037     98.9568    opd_proc.c:274              oprofiled                opd_put_image_sample
00000000 7        187076         0.0037     98.9605    (no location information)   libgkgfx.so              (no symbols)
00003bb0 7        187083         0.0037     98.9642    (no location information)   oprofile.o               __constant_copy_from_user
00125f60 7        187090         0.0037     98.9679    (no location information)   nvidia.o                 __nvsym01671
000dbb2c 7        187097         0.0037     98.9717    (no location information)   nvidia.o                 __nvsym04010
0003e114 7        187104         0.0037     98.9754    (no location information)   nvidia.o                 __nvsym01871
0003020c 7        187111         0.0037     98.9791    (no location information)   nvidia.o                 __nvsym01719
000217a0 7        187118         0.0037     98.9828    (no location information)   nvidia.o                 __nvsym01481
0000b86c 7        187125         0.0037     98.9865    (no location information)   libpthread-0.10.so       __do_global_ctors_aux
00008c2c 7        187132         0.0037     98.9902    (no location information)   libpthread-0.10.so       __new_sem_init
00000000 7        187139         0.0037     98.9939    (no location information)   libncurses.so.5.3        (no symbols)
0000d0d0 7        187146         0.0037     98.9976    (no location information)   ld-2.3.1.so              __open
0000a7ce 7        187153         0.0037     99.0013    (no location information)   ld-2.3.1.so              _dl_check_all_versions
c0237680 6        187159         0.0032     99.0044    (no location information)   vmlinux                  __rb_rotate_left
c0235eac 6        187165         0.0032     99.0076    (no location information)   vmlinux                  __get_user_4
c018f940 6        187171         0.0032     99.0108    (no location information)   vmlinux                  __constant_copy_to_user
c018f3f0 6        187177         0.0032     99.0140    (no location information)   vmlinux                  n_tty_ioctl
c014a1c0 6        187183         0.0032     99.0171    (no location information)   vmlinux                  alloc_inode
c0144eb0 6        187189         0.0032     99.0203    (no location information)   vmlinux                  filldir64
c01325e0 6        187195         0.0032     99.0235    (no location information)   vmlinux                  si_swapinfo
c012be90 6        187201         0.0032     99.0267    (no location information)   vmlinux                  __read_cache_page
c0120280 6        187207         0.0032     99.0298    (no location information)   vmlinux                  update_process_times
c0120130 6        187213         0.0032     99.0330    (no location information)   vmlinux                  update_wall_time
c0113b00 6        187219         0.0032     99.0362    (no location information)   vmlinux                  do_check_pgt_cache
c01068c0 6        187225         0.0032     99.0394    (no location information)   vmlinux                  setup_frame
00000000 6        187231         0.0032     99.0425    (no location information)   sshd                     (no symbols)
000033a8 6        187237         0.0032     99.0457    (no location information)   strop.so                 __do_global_ctors_aux
0000118c 6        187243         0.0032     99.0489    (no location information)   strop.so                 __do_global_dtors_aux
080c8348 6        187249         0.0032     99.0521    funcobject.c:595            python                   cm_dealloc
080c194c 6        187255         0.0032     99.0552    acceler.c:25                python                   PyGrammar_AddAccelerators
080b8c38 6        187261         0.0032     99.0584    posixmodule.c:7184          python                   all_ins
080a4fcc 6        187267         0.0032     99.0616    getargs.c:270               python                   seterror
0809fee8 6        187273         0.0032     99.0648    compile.c:4240              python                   PyNode_CompileFlags
0809d2bc 6        187279         0.0032     99.0679    compile.c:2464              python                   com_and_test
0809ceb4 6        187285         0.0032     99.0711    compile.c:2300              python                   com_xor_expr
0809a5b0 6        187291         0.0032     99.0743    compile.c:811               python                   com_push
08091e7c 6        187297         0.0032     99.0774    exceptions.c:470            python                   EnvironmentError__init__
0808f6bc 6        187303         0.0032     99.0806    bltinmodule.c:1101          python                   min_max
0808e998 6        187309         0.0032     99.0838    bltinmodule.c:460           python                   builtin_eval
08084098 6        187315         0.0032     99.0870    unicodeobject.c:175         python                   _PyUnicode_New
0807e7a4 6        187321         0.0032     99.0901    typeobject.c:3537           python                   wrap_delslice
0807a508 6        187327         0.0032     99.0933    typeobject.c:1046           python                   check_duplicates
08078a2c 6        187333         0.0032     99.0965    tupleobject.c:409           python                   tuplerichcompare
08073718 6        187339         0.0032     99.0997    stringobject.c:886          python                   string_length
08071b94 6        187345         0.0032     99.1028    obmalloc.c:427              python                   new_arena
0806f388 6        187351         0.0032     99.1060    dictobject.c:1983           python                   PyDict_DelItemString
08068938 6        187357         0.0032     99.1092    longobject.c:86             python                   PyLong_FromLong
08066618 6        187363         0.0032     99.1124    listobject.c:743            python                   listpop
08065a68 6        187369         0.0032     99.1155    listobject.c:317            python                   list_length
080648cc 6        187375         0.0032     99.1187    intobject.c:838             python                   int_coerce
0806458c 6        187381         0.0032     99.1219    intobject.c:746             python                   int_nonzero
0805f0b0 6        187387         0.0032     99.1251    fileobject.c:336            python                   file_dealloc
080594a0 6        187393         0.0032     99.1282    abstract.c:1502             python                   PySequence_Fast
080570bc 6        187399         0.0032     99.1314    tokenizer.c:1413            python                   PyTokenizer_Get
08055eec 6        187405         0.0032     99.1346    tokenizer.c:603             python                   PyTokenizer_FromString
080557cc 6        187411         0.0032     99.1378    tokenizer.c:257             python                   check_coding_spec
08054fa8 6        187417         0.0032     99.1409    parsetok.c:39               python                   PyParser_ParseStringFlagsFilename
00003490 6        187423         0.0032     99.1441    (no location information)   oprofile.o               my_sys_execve
001266e8 6        187429         0.0032     99.1473    (no location information)   nvidia.o                 __nvsym04965
0003aa98 6        187435         0.0032     99.1504    (no location information)   nvidia.o                 __nvsym02417
00000550 6        187441         0.0032     99.1536    (no location information)   ne2k-pci.o               ne2k_pci_get_8390_hdr
00006c17 6        187447         0.0032     99.1568    (no location information)   libpthread-0.10.so       __pthread_once
0000c218 6        187453         0.0032     99.1600    (no location information)   ld-2.3.1.so              calloc
00009c5c 6        187459         0.0032     99.1631    (no location information)   ld-2.3.1.so              _dl_sysdep_read_whole_file
c02362f0 5        187464         0.0026     99.1658    (no location information)   vmlinux                  mmx_copy_page
c02102a0 5        187469         0.0026     99.1684    (no location information)   vmlinux                  tcp_transmit_skb
c0204800 5        187474         0.0026     99.1711    (no location information)   vmlinux                  tcp_poll
c018e390 5        187479         0.0026     99.1737    (no location information)   vmlinux                  normal_poll
c0186b00 5        187484         0.0026     99.1764    (no location information)   vmlinux                  sem_exit
c0155060 5        187489         0.0026     99.1790    (no location information)   vmlinux                  proc_pid_maps_get_line
c014bba0 5        187494         0.0026     99.1817    (no location information)   vmlinux                  expand_fd_array
c014ae60 5        187499         0.0026     99.1843    (no location information)   vmlinux                  get_new_inode
c0149d40 5        187504         0.0026     99.1869    (no location information)   vmlinux                  sys_getcwd
c013f570 5        187509         0.0026     99.1896    (no location information)   vmlinux                  __constant_c_and_count_memset
c013eff0 5        187514         0.0026     99.1922    (no location information)   vmlinux                  do_execve
c013ee70 5        187519         0.0026     99.1949    (no location information)   vmlinux                  search_binary_handler
c013ec80 5        187524         0.0026     99.1975    (no location information)   vmlinux                  compute_creds
c013e470 5        187529         0.0026     99.2002    (no location information)   vmlinux                  put_dirty_page
c013dbd0 5        187534         0.0026     99.2028    (no location information)   vmlinux                  sys_readlink
c0126f30 5        187539         0.0026     99.2055    (no location information)   vmlinux                  unlock_vma_mappings
c01225b0 5        187544         0.0026     99.2081    (no location information)   vmlinux                  __constant_memcpy
c0120450 5        187549         0.0026     99.2108    (no location information)   vmlinux                  do_timer
c0120080 5        187554         0.0026     99.2134    (no location information)   vmlinux                  update_wall_time_one_tick
c011cd10 5        187559         0.0026     99.2160    (no location information)   vmlinux                  tasklet_hi_action
c011ba10 5        187564         0.0026     99.2187    (no location information)   vmlinux                  unhash_process
c0117350 5        187569         0.0026     99.2213    (no location information)   vmlinux                  __constant_c_and_count_memset
c0117250 5        187574         0.0026     99.2240    (no location information)   vmlinux                  __constant_memcpy
c0116570 5        187579         0.0026     99.2266    (no location information)   vmlinux                  mm_release
c01164d0 5        187584         0.0026     99.2293    (no location information)   vmlinux                  mmput
c0116260 5        187589         0.0026     99.2319    (no location information)   vmlinux                  get_pid
c010b860 5        187594         0.0026     99.2346    (no location information)   vmlinux                  end_8259A_irq
c0106ea0 5        187599         0.0026     99.2372    (no location information)   vmlinux                  do_signal
c0105d60 5        187604         0.0026     99.2398    (no location information)   vmlinux                  __constant_memcpy
080c9394 5        187609         0.0026     99.2425    moduleobject.c:250          python                   module_setattr
080c58e8 5        187614         0.0026     99.2451    descrobject.c:625           python                   PyDescr_NewMember
080c5898 5        187619         0.0026     99.2478    descrobject.c:601           python                   PyDescr_NewMethod
080c530c 5        187624         0.0026     99.2504    descrobject.c:140           python                   getset_get
080c1efc 5        187629         0.0026     99.2531    parser.c:39                 python                   s_push
080b5c88 5        187634         0.0026     99.2557    posixmodule.c:915           python                   posix_do_stat
080b3714 5        187639         0.0026     99.2584    gcmodule.c:474              python                   handle_finalizers
080b1f70 5        187644         0.0026     99.2610    dynload_shlib.c:71          python                   _PyImport_GetDynLoadFunc
080b17d0 5        187649         0.0026     99.2637    traceback.c:37              python                   tb_dealloc
080b1464 5        187654         0.0026     99.2663    sysmodule.c:1141            python                   PySys_SetArgv
080b13d4 5        187659         0.0026     99.2689    sysmodule.c:1100            python                   makeargvobject
080b0c20 5        187664         0.0026     99.2716    sysmodule.c:901             python                   _PySys_Init
080afdcc 5        187669         0.0026     99.2742    pythonrun.c:1488            python                   initsigs
080af774 5        187674         0.0026     99.2769    pythonrun.c:1167            python                   run_node
080ae1c8 5        187679         0.0026     99.2795    pythonrun.c:463             python                   Py_SetProgramName
080aa708 5        187684         0.0026     99.2822    importdl.c:23               python                   _PyImport_LoadDynamicModule
080a4958 5        187689         0.0026     99.2848    future.c:244                python                   PyNode_Future
080a3674 5        187694         0.0026     99.2875    codecs.c:737                python                   _PyCodecRegistry_Init
080a2dc8 5        187699         0.0026     99.2901    codecs.c:397                python                   PyCodec_RegisterError
080a263c 5        187704         0.0026     99.2927    codecs.c:30                 python                   PyCodec_Register
0809a604 5        187709         0.0026     99.2954    compile.c:834               python                   com_done
0809888c 5        187714         0.0026     99.2980    ceval.c:3798                python                   apply_slice
08097cf4 5        187719         0.0026     99.3007    ceval.c:3255                python                   PyEval_GetGlobals
08091c00 5        187724         0.0026     99.3033    exceptions.c:344            python                   make_Exception
080919f0 5        187729         0.0026     99.3060    exceptions.c:216            python                   get_self
0808d334 5        187734         0.0026     99.3086    unicodeobject.c:6679        python                   unicode_new
0807ff74 5        187739         0.0026     99.3113    typeobject.c:4181           python                   slot_nb_nonzero
0807e2e4 5        187744         0.0026     99.3139    typeobject.c:3325           python                   wrap_binaryfunc_l
0807d008 5        187749         0.0026     99.3166    typeobject.c:2813           python                   add_getset
0807c158 5        187754         0.0026     99.3192    typeobject.c:2259           python                   object_init
0807a458 5        187759         0.0026     99.3218    typeobject.c:1015           python                   tail_contains
08079c6c 5        187764         0.0026     99.3245    typeobject.c:470            python                   PyType_GenericNew
08078ba8 5        187769         0.0026     99.3271    tupleobject.c:485           python                   tuple_new
08074788 5        187774         0.0026     99.3298    stringobject.c:1533         python                   string_adjust_indices
08073a14 5        187779         0.0026     99.3324    stringobject.c:992          python                   string_slice
08070504 5        187784         0.0026     99.3351    object.c:914                python                   convert_3way_to_object
0806fe68 5        187789         0.0026     99.3377    object.c:577                python                   try_3way_compare
0806f9b0 5        187794         0.0026     99.3404    object.c:366                python                   PyObject_Unicode
080645b4 5        187799         0.0026     99.3430    intobject.c:758             python                   int_lshift
08063cc4 5        187804         0.0026     99.3456    intobject.c:387             python                   int_hash
0805f044 5        187809         0.0026     99.3483    fileobject.c:313            python                   PyFile_SetEncoding
0805ef44 5        187814         0.0026     99.3509    fileobject.c:254            python                   PyFile_FromFile
08059728 5        187819         0.0026     99.3536    abstract.c:1652             python                   PyMapping_Size
080587bc 5        187824         0.0026     99.3562    abstract.c:943              python                   PyNumber_Int
080553c4 5        187829         0.0026     99.3589    parsetok.c:214              python                   initerr
0804a26c 5        187834         0.0026     99.3615    opd_proc.c:227              oprofiled                opd_get_proc
0003e094 5        187839         0.0026     99.3642    (no location information)   nvidia.o                 __nvsym01553
0003dd84 5        187844         0.0026     99.3668    (no location information)   nvidia.o                 __nvsym02273
0002dfc4 5        187849         0.0026     99.3694    (no location information)   nvidia.o                 __nvsym01711
0002232c 5        187854         0.0026     99.3721    (no location information)   nvidia.o                 __nvsym01482
000222a8 5        187859         0.0026     99.3747    (no location information)   nvidia.o                 __nvsym01427
000001d0 5        187864         0.0026     99.3774    (no location information)   8390.o                   ei_start_xmit
0000a623 5        187869         0.0026     99.3800    (no location information)   libpthread-0.10.so       pthread_rwlock_rdlock
00006f89 5        187874         0.0026     99.3827    (no location information)   libpthread-0.10.so       __pthread_atfork
00005301 5        187879         0.0026     99.3853    (no location information)   libpthread-0.10.so       pthread_cond_broadcast
0000df48 5        187884         0.0026     99.3880    (no location information)   ld-2.3.1.so              mempcpy
c02376c0 4        187888         0.0021     99.3901    (no location information)   vmlinux                  __rb_rotate_right
c02367e0 4        187892         0.0021     99.3922    (no location information)   vmlinux                  skip_atoi
c0231c20 4        187896         0.0021     99.3943    (no location information)   vmlinux                  unix_stream_recvmsg
c01e00b0 4        187900         0.0021     99.3964    (no location information)   vmlinux                  rh_send_irq
c01a8670 4        187904         0.0021     99.3985    (no location information)   vmlinux                  ide_inb
c0155240 4        187908         0.0021     99.4007    (no location information)   vmlinux                  proc_pid_read_maps
c01522c0 4        187912         0.0021     99.4028    (no location information)   vmlinux                  proc_root_lookup
c014fbb0 4        187916         0.0021     99.4049    (no location information)   vmlinux                  create_elf_tables
c014fb40 4        187920         0.0021     99.4070    (no location information)   vmlinux                  set_brk
c01495c0 4        187924         0.0021     99.4091    (no location information)   vmlinux                  d_alloc
c0143e00 4        187928         0.0021     99.4112    (no location information)   vmlinux                  do_fcntl
c013fc60 4        187932         0.0021     99.4134    (no location information)   vmlinux                  pipe_poll
c013e7f0 4        187936         0.0021     99.4155    (no location information)   vmlinux                  exec_mmap
c012eaf0 4        187940         0.0021     99.4176    (no location information)   vmlinux                  kfree
c0128340 4        187944         0.0021     99.4197    (no location information)   vmlinux                  __insert_vm_struct
c01226b0 4        187948         0.0021     99.4218    (no location information)   vmlinux                  sigorsets
c0120ec0 4        187952         0.0021     99.4239    (no location information)   vmlinux                  dequeue_signal
c0120530 4        187956         0.0021     99.4261    (no location information)   vmlinux                  sys_getpid
c011ce20 4        187960         0.0021     99.4282    (no location information)   vmlinux                  bh_action
c011b5f0 4        187964         0.0021     99.4303    (no location information)   vmlinux                  sys_exit
c010d870 4        187968         0.0021     99.4324    (no location information)   vmlinux                  save_i387
c010c7c0 4        187972         0.0021     99.4345    (no location information)   vmlinux                  do_gettimeofday
c0108870 4        187976         0.0021     99.4366    (no location information)   vmlinux                  handle_IRQ_event
c0106790 4        187980         0.0021     99.4387    (no location information)   vmlinux                  setup_sigcontext
c0106440 4        187984         0.0021     99.4409    (no location information)   vmlinux                  restore_sigcontext
000033dc 4        187988         0.0021     99.4430    (no location information)   strop.so                 _fini
080ca644 4        187992         0.0021     99.4451    (no location information)   python                   __do_global_ctors_aux
080c9754 4        187996         0.0021     99.4472    structseq.c:42              python                   structseq_dealloc
080c930c 4        188000         0.0021     99.4493    moduleobject.c:230          python                   shadows_builtin
080c7a78 4        188004         0.0021     99.4514    funcobject.c:168            python                   restricted
080c723c 4        188008         0.0021     99.4536    frameobject.c:677           python                   map_to_dict
080bfe04 4        188012         0.0021     99.4557    zipimport.c:184             python                   zipimporter_dealloc
080bc8c0 4        188016         0.0021     99.4578    _sre.c:1434                 python                   _compile
080b32fc 4        188020         0.0021     99.4599    gcmodule.c:138              python                   gc_list_is_empty
080b32ec 4        188024         0.0021     99.4620    gcmodule.c:131              python                   gc_list_init
080b286c 4        188028         0.0021     99.4641    getpath.c:248               python                   search_for_prefix
080afdf0 4        188032         0.0021     99.4663    pythonrun.c:1524            python                   Py_FdIsInteractive
080af75c 4        188036         0.0021     99.4684    pythonrun.c:1158            python                   run_err_node
080adf14 4        188040         0.0021     99.4705    pythonrun.c:238             python                   Py_Finalize
080ad50c 4        188044         0.0021     99.4726    pystate.c:176               python                   PyThreadState_Clear
080a6c40 4        188048         0.0021     99.4747    import.c:112                python                   _PyImport_Init
080a6c08 4        188052         0.0021     99.4768    getversion.c:10             python                   Py_GetVersion
080a475c 4        188056         0.0021     99.4789    future.c:93                 python                   future_parse
080a2e30 4        188060         0.0021     99.4811    codecs.c:413                python                   PyCodec_LookupError
080a157c 4        188064         0.0021     99.4832    compile.c:5136              python                   symtable_add_def
0809eeec 4        188068         0.0021     99.4853    compile.c:3598              python                   get_docstring
0809dc14 4        188072         0.0021     99.4874    compile.c:2843              python                   com_expr_stmt
0809cf58 4        188076         0.0021     99.4895    compile.c:2322              python                   com_expr
0809cd64 4        188080         0.0021     99.4916    compile.c:2252              python                   com_shift_expr
0809a738 4        188084         0.0021     99.4938    compile.c:888               python                   com_set_lineno
0809875c 4        188088         0.0021     99.4959    ceval.c:3736                python                   _PyEval_SliceIndex
08093f7c 4        188092         0.0021     99.4980    ceval.c:368                 python                   PyEval_SaveThread
08093c38 4        188096         0.0021     99.5001    ceval.c:163                 python                   gen_new
0808ee68 4        188100         0.0021     99.5022    bltinmodule.c:671           python                   builtin_globals
0808e228 4        188104         0.0021     99.5043    bltinmodule.c:123           python                   builtin_callable
08083b9c 4        188108         0.0021     99.5065    weakrefobject.c:583         python                   insert_head
08074abc 4        188112         0.0021     99.5086    stringobject.c:1672         python                   do_xstrip
08073324 4        188116         0.0021     99.5107    stringobject.c:713          python                   PyString_AsStringAndSize
08070558 4        188120         0.0021     99.5128    object.c:937                python                   try_3way_to_rich_compare
0806e6b0 4        188124         0.0021     99.5149    dictobject.c:1256           python                   PyDict_Size
0806de9c 4        188128         0.0021     99.5170    dictobject.c:941            python                   dict_items
0806dcec 4        188132         0.0021     99.5192    dictobject.c:848            python                   dict_subscript
0806dce0 4        188136         0.0021     99.5213    dictobject.c:842            python                   dict_length
0806ca74 4        188140         0.0021     99.5234    longobject.c:2679           python                   long_coerce
08069368 4        188144         0.0021     99.5255    longobject.c:663            python                   PyLong_FromVoidPtr
0806781c 4        188148         0.0021     99.5276    listobject.c:1769           python                   PyList_Sort
08067474 4        188152         0.0021     99.5297    listobject.c:1593           python                   merge_collapse
08066b4c 4        188156         0.0021     99.5318    listobject.c:1068           python                   gallop_right
08066994 4        188160         0.0021     99.5340    listobject.c:977            python                   gallop_left
08065cc4 4        188164         0.0021     99.5361    listobject.c:419            python                   list_repeat
08065b14 4        188168         0.0021     99.5382    listobject.c:351            python                   list_slice
08065650 4        188172         0.0021     99.5403    listobject.c:180            python                   PyList_Insert
08062ce8 4        188176         0.0021     99.5424    floatobject.c:866           python                   PyFloat_Fini
0805bcd8 4        188180         0.0021     99.5445    classobject.c:922           python                   instance_hash
08055f90 4        188184         0.0021     99.5467    tokenizer.c:641             python                   PyTokenizer_Free
08054720 4        188188         0.0021     99.5488    (no location information)   python                   __do_global_dtors_aux
080546d8 4        188192         0.0021     99.5509    (no location information)   python                   _start
0804c47c 4        188196         0.0021     99.5530    db_manage.c:73              oprofiled                odb_hash_add_node
0804af3c 4        188200         0.0021     99.5551    opd_mapping.c:171           oprofiled                opd_handle_mapping
00000000 4        188204         0.0021     99.5572    (no location information)   libwidget_gtk2.so        (no symbols)
00000000 4        188208         0.0021     99.5594    (no location information)   libnspr4.so              (no symbols)
00003710 4        188212         0.0021     99.5615    (no location information)   oprofile.o               my_sys_fork
00126f6c 4        188216         0.0021     99.5636    (no location information)   nvidia.o                 __nvsym04958
0003fff0 4        188220         0.0021     99.5657    (no location information)   nvidia.o                 __nvsym01321
0003ff5c 4        188224         0.0021     99.5678    (no location information)   nvidia.o                 __nvsym01474
0003df64 4        188228         0.0021     99.5699    (no location information)   nvidia.o                 __nvsym02128
0003deb4 4        188232         0.0021     99.5721    (no location information)   nvidia.o                 __nvsym02376
0003dd04 4        188236         0.0021     99.5742    (no location information)   nvidia.o                 __nvsym02168
0002de10 4        188240         0.0021     99.5763    (no location information)   nvidia.o                 __nvsym01721
00021720 4        188244         0.0021     99.5784    (no location information)   nvidia.o                 __nvsym01478
00002537 4        188248         0.0021     99.5805    (no location information)   nvidia.o                 nv_lock_rm
0000ac2e 4        188252         0.0021     99.5826    (no location information)   libpthread-0.10.so       pthread_rwlock_unlock
000085a8 4        188256         0.0021     99.5847    (no location information)   libpthread-0.10.so       __pthread_key_create
00005cb0 4        188260         0.0021     99.5869    (no location information)   ld-2.3.1.so              _dl_unload_cache_internal
00002f47 4        188264         0.0021     99.5890    (no location information)   ld-2.3.1.so              elf_machine_runtime_setup
c0235a44 3        188267         0.0016     99.5906    (no location information)   vmlinux                  csum_partial_copy_generic
c0216930 3        188270         0.0016     99.5922    (no location information)   vmlinux                  tcp_v4_rcv
c0205e00 3        188273         0.0016     99.5937    (no location information)   vmlinux                  tcp_sendmsg
c01f6a30 3        188276         0.0016     99.5953    (no location information)   vmlinux                  dev_watchdog
c01e0ca0 3        188279         0.0016     99.5969    (no location information)   vmlinux                  uhci_interrupt
c01e0170 3        188282         0.0016     99.5985    (no location information)   vmlinux                  rh_int_timer_do
c01a86e0 3        188285         0.0016     99.6001    (no location information)   vmlinux                  ide_outb
c01a12d0 3        188288         0.0016     99.6017    (no location information)   vmlinux                  handle_scancode
c019a700 3        188291         0.0016     99.6033    (no location information)   vmlinux                  con_chars_in_buffer
c018ca20 3        188294         0.0016     99.6048    (no location information)   vmlinux                  n_tty_chars_in_buffer
c018c660 3        188297         0.0016     99.6064    (no location information)   vmlinux                  __constant_copy_to_user
c018b560 3        188300         0.0016     99.6080    (no location information)   vmlinux                  tiocspgrp
c0189690 3        188303         0.0016     99.6096    (no location information)   vmlinux                  tty_check_change
c0153b50 3        188306         0.0016     99.6112    (no location information)   vmlinux                  proc_file_read
c01520e0 3        188309         0.0016     99.6128    (no location information)   vmlinux                  proc_get_inode
c014bad0 3        188312         0.0016     99.6144    (no location information)   vmlinux                  is_bad_inode
c014b0b0 3        188315         0.0016     99.6160    (no location information)   vmlinux                  iget4
c01431e0 3        188318         0.0016     99.6175    (no location information)   vmlinux                  vfs_follow_link
c0140720 3        188321         0.0016     99.6191    (no location information)   vmlinux                  real_lookup
c013e770 3        188324         0.0016     99.6207    (no location information)   vmlinux                  kernel_read
c013e680 3        188327         0.0016     99.6223    (no location information)   vmlinux                  open_exec
c0138390 3        188330         0.0016     99.6239    (no location information)   vmlinux                  inode_has_buffers
c0130a50 3        188333         0.0016     99.6255    (no location information)   vmlinux                  __get_free_pages
c012f3e0 3        188336         0.0016     99.6271    (no location information)   vmlinux                  lru_cache_del
c012ea70 3        188339         0.0016     99.6287    (no location information)   vmlinux                  kmalloc
c0126f20 3        188342         0.0016     99.6302    (no location information)   vmlinux                  lock_vma_mappings
c0123d10 3        188345         0.0016     99.6318    (no location information)   vmlinux                  sys_getrlimit
c0123ae0 3        188348         0.0016     99.6334    (no location information)   vmlinux                  sys_newuname
c01218e0 3        188351         0.0016     99.6350    (no location information)   vmlinux                  do_notify_parent
c01211f0 3        188354         0.0016     99.6366    (no location information)   vmlinux                  send_signal
c0120ba0 3        188357         0.0016     99.6382    (no location information)   vmlinux                  flush_sigqueue
c011fd80 3        188360         0.0016     99.6398    (no location information)   vmlinux                  del_timer
c011fce0 3        188363         0.0016     99.6413    (no location information)   vmlinux                  add_timer
c011bd00 3        188366         0.0016     99.6429    (no location information)   vmlinux                  do_setitimer
c011ab40 3        188369         0.0016     99.6445    (no location information)   vmlinux                  release_task
c01163b0 3        188372         0.0016     99.6461    (no location information)   vmlinux                  mm_init
c0116220 3        188375         0.0016     99.6477    (no location information)   vmlinux                  remove_wait_queue
c0106580 3        188378         0.0016     99.6493    (no location information)   vmlinux                  sys_sigreturn
c01053a0 3        188381         0.0016     99.6509    (no location information)   vmlinux                  default_idle
00001168 3        188384         0.0016     99.6525    (no location information)   strop.so                 call_gmon_start
080ca09c 3        188387         0.0016     99.6540    structmember.c:33           python                   PyMember_Get
080c9718 3        188390         0.0016     99.6556    structseq.c:31              python                   PyStructSequence_New
080c83a8 3        188393         0.0016     99.6572    funcobject.c:603            python                   cm_traverse
080c52d0 3        188396         0.0016     99.6588    descrobject.c:130           python                   member_get
080c2000 3        188399         0.0016     99.6604    parser.c:109                python                   shift
080c1228 3        188402         0.0016     99.6620    zipimport.c:1138            python                   initzipimport
080bfbe0 3        188405         0.0016     99.6636    _codecsmodule.c:814         python                   init_codecs
080b7198 3        188408         0.0016     99.6652    posixmodule.c:4327          python                   posix_popen
080b6110 3        188411         0.0016     99.6667    posixmodule.c:1344          python                   posix_listdir
080b5b1c 3        188414         0.0016     99.6683    posixmodule.c:823           python                   fill_time
080b37b0 3        188417         0.0016     99.6699    gcmodule.c:501              python                   delete_garbage
080b2424 3        188420         0.0016     99.6715    thread_pthread.h:425        python                   PyThread_release_lock
080b2388 3        188423         0.0016     99.6731    thread_pthread.h:391        python                   fix_status
080ae2d8 3        188426         0.0016     99.6747    pythonrun.c:514             python                   initsite
080ad984 3        188429         0.0016     99.6763    pystate.c:385               python                   _PyGILState_Init
080ad188 3        188432         0.0016     99.6778    pystate.c:43                python                   PyInterpreterState_New
080ad148 3        188435         0.0016     99.6794    mysnprintf.c:43             python                   PyOS_snprintf
080acee8 3        188438         0.0016     99.6810    modsupport.c:543            python                   PyModule_AddIntConstant
080a6d48 3        188441         0.0016     99.6826    import.c:157                python                   _PyImportHooks_Init
080a2a40 3        188444         0.0016     99.6842    codecs.c:231                python                   PyCodec_Encoder
0809f9d0 3        188447         0.0016     99.6858    compile.c:4062              python                   com_file_input
0809db4c 3        188450         0.0016     99.6874    compile.c:2808              python                   com_augassign
0809d274 3        188453         0.0016     99.6890    compile.c:2451              python                   com_not_test
0809ce10 3        188456         0.0016     99.6905    compile.c:2278              python                   com_and_expr
0809ccb8 3        188459         0.0016     99.6921    compile.c:2226              python                   com_arith_expr
0809aa5c 3        188462         0.0016     99.6937    compile.c:1012              python                   _Py_Mangle
0809a5d8 3        188465         0.0016     99.6953    compile.c:825               python                   com_pop
080989e0 3        188468         0.0016     99.6969    ceval.c:3825                python                   assign_slice
080974ac 3        188471         0.0016     99.6985    ceval.c:2830                python                   do_raise
08092450 3        188474         0.0016     99.7001    exceptions.c:681            python                   SyntaxError__classinit__
08088a10 3        188477         0.0016     99.7017    unicodeobject.c:3437        python                   PyUnicodeUCS2_EncodeDecimal
08084a8c 3        188480         0.0016     99.7032    unicodeobject.c:662         python                   PyUnicodeUCS2_GetDefaultEncoding
080845a0 3        188483         0.0016     99.7048    unicodeobject.c:453         python                   PyUnicodeUCS2_FromEncodedObject
0807e7fc 3        188486         0.0016     99.7064    typeobject.c:3553           python                   wrap_objobjproc
0807e748 3        188489         0.0016     99.7080    typeobject.c:3521           python                   wrap_intintobjargproc
08075ba0 3        188492         0.0016     99.7096    stringobject.c:2442         python                   string_endswith
08074a54 3        188495         0.0016     99.7112    stringobject.c:1642         python                   string_rfind
08070d94 3        188498         0.0016     99.7128    object.c:1322               python                   _PyObject_GetDictPtr
0806f52c 3        188501         0.0016     99.7143    object.c:178                python                   _PyObject_New
0806f504 3        188504         0.0016     99.7159    object.c:166                python                   PyObject_InitVar
0806f170 3        188507         0.0016     99.7175    dictobject.c:1819           python                   dict_contains
0806ed3c 3        188510         0.0016     99.7191    dictobject.c:1498           python                   dict_get
08069778 3        188513         0.0016     99.7207    longobject.c:906            python                   v_isub
080693cc 3        188516         0.0016     99.7223    longobject.c:732            python                   PyLong_FromLongLong
0806737c 3        188519         0.0016     99.7239    listobject.c:1526           python                   merge_at
08066d08 3        188522         0.0016     99.7255    listobject.c:1202           python                   merge_init
08064eec 3        188525         0.0016     99.7270    iterobject.c:13             python                   PySeqIter_New
08064770 3        188528         0.0016     99.7286    intobject.c:811             python                   int_and
08063480 3        188531         0.0016     99.7302    intobject.c:9               python                   PyInt_GetMax
0805ecf8 3        188534         0.0016     99.7318    fileobject.c:112            python                   fill_file_fields
0805ec7c 3        188537         0.0016     99.7334    fileobject.c:87             python                   dircheck
08056488 3        188540         0.0016     99.7350    tokenizer.c:813             python                   tok_backup
08055d4c 3        188543         0.0016     99.7366    tokenizer.c:514             python                   buf_getc
08054788 3        188546         0.0016     99.7382    python.c:11                 python                   main
0804e4bc 3        188549         0.0016     99.7397    (no location information)   oprofiled                xmalloc
0804abac 3        188552         0.0016     99.7413    opd_image.c:261             oprofiled                opd_find_image
08049f40 3        188555         0.0016     99.7429    opd_kernel.c:419            oprofiled                opd_eip_is_kernel
00000000 3        188558         0.0016     99.7445    (no location information)   libimglib2.so            (no symbols)
00000000 3        188561         0.0016     99.7461    (no location information)   insmod                   (no symbols)
00003400 3        188564         0.0016     99.7477    (no location information)   oprofile.o               oprof_output_maps
000b842c 3        188567         0.0016     99.7493    (no location information)   nvidia.o                 __nvsym03786
0003dfe4 3        188570         0.0016     99.7508    (no location information)   nvidia.o                 __nvsym02079
0003de34 3        188573         0.0016     99.7524    (no location information)   nvidia.o                 __nvsym02434
00000710 3        188576         0.0016     99.7540    (no location information)   8390.o                   ei_tx_intr
0000a3ec 3        188579         0.0016     99.7556    (no location information)   libpthread-0.10.so       rwlock_is_in_list
00007b64 3        188582         0.0016     99.7572    (no location information)   libpthread-0.10.so       pthread_onexit_process
0000451c 3        188585         0.0016     99.7588    (no location information)   libpthread-0.10.so       frame_dummy
0000c060 3        188588         0.0016     99.7604    (no location information)   ld-2.3.1.so              _dl_next_ld_env_entry
00000b07 3        188591         0.0016     99.7620    (no location information)   ld-2.3.1.so              _dl_start_user
00000b00 3        188594         0.0016     99.7635    (no location information)   ld-2.3.1.so              _start
c0237050 2        188596         0.0011     99.7646    (no location information)   vmlinux                  vsprintf
c0235924 2        188598         0.0011     99.7657    (no location information)   vmlinux                  csum_partial
c02316c0 2        188600         0.0011     99.7667    (no location information)   vmlinux                  unix_stream_sendmsg
c0210ed0 2        188602         0.0011     99.7678    (no location information)   vmlinux                  tcp_write_xmit
c0200600 2        188604         0.0011     99.7688    (no location information)   vmlinux                  ip_output
c01fb0e0 2        188606         0.0011     99.7699    (no location information)   vmlinux                  ip_route_input
c01ea7e0 2        188608         0.0011     99.7709    (no location information)   vmlinux                  alloc_skb
c01e7850 2        188610         0.0011     99.7720    (no location information)   vmlinux                  sock_poll
c01a2540 2        188612         0.0011     99.7731    (no location information)   vmlinux                  handle_kbd_event
c018b230 2        188614         0.0011     99.7741    (no location information)   vmlinux                  tiocgwinsz
c018b000 2        188616         0.0011     99.7752    (no location information)   vmlinux                  tty_poll
c0189dd0 2        188618         0.0011     99.7762    (no location information)   vmlinux                  tty_read
c0151f40 2        188620         0.0011     99.7773    (no location information)   vmlinux                  proc_read_inode
c0151ef0 2        188622         0.0011     99.7784    (no location information)   vmlinux                  proc_delete_inode
c014dc90 2        188624         0.0011     99.7794    (no location information)   vmlinux                  copy_namespace
c014a450 2        188626         0.0011     99.7805    (no location information)   vmlinux                  __mark_inode_dirty
c0149a50 2        188628         0.0011     99.7815    (no location information)   vmlinux                  d_rehash
c0149760 2        188630         0.0011     99.7826    (no location information)   vmlinux                  d_instantiate
c0145200 2        188632         0.0011     99.7836    (no location information)   vmlinux                  poll_freewait
c0145100 2        188634         0.0011     99.7847    (no location information)   vmlinux                  __constant_copy_to_user
c013f5f0 2        188636         0.0011     99.7858    (no location information)   vmlinux                  flush_old_files
c013eb40 2        188638         0.0011     99.7868    (no location information)   vmlinux                  prepare_binprm
c013de30 2        188640         0.0011     99.7879    (no location information)   vmlinux                  sys_lstat64
c01389f0 2        188642         0.0011     99.7889    (no location information)   vmlinux                  __refile_buffer
c0136a20 2        188644         0.0011     99.7900    (no location information)   vmlinux                  sys_write
c012ea60 2        188646         0.0011     99.7911    (no location information)   vmlinux                  kmem_cache_alloc
c012b460 2        188648         0.0011     99.7921    (no location information)   vmlinux                  read_cache_page
c01283d0 2        188650         0.0011     99.7932    (no location information)   vmlinux                  insert_vm_struct
c01281b0 2        188652         0.0011     99.7942    (no location information)   vmlinux                  build_mmap_rb
c01229f0 2        188654         0.0011     99.7953    (no location information)   vmlinux                  sys_ni_syscall
c0121380 2        188656         0.0011     99.7963    (no location information)   vmlinux                  send_sig_info
c0121000 2        188658         0.0011     99.7974    (no location information)   vmlinux                  rm_sig_from_queue
c0120a40 2        188660         0.0011     99.7985    (no location information)   vmlinux                  free_uid
c0120830 2        188662         0.0011     99.7995    (no location information)   vmlinux                  internal_add_timer
c011be00 2        188664         0.0011     99.8006    (no location information)   vmlinux                  sys_setitimer
c01191d0 2        188666         0.0011     99.8016    (no location information)   vmlinux                  try_inc_mod_count
c01167a0 2        188668         0.0011     99.8027    (no location information)   vmlinux                  count_open_files
c01165a0 2        188670         0.0011     99.8037    (no location information)   vmlinux                  copy_mm
c0114cd0 2        188672         0.0011     99.8048    (no location information)   vmlinux                  reschedule_idle
c010af00 2        188674         0.0011     99.8059    (no location information)   vmlinux                  common_interrupt
c01084c0 2        188676         0.0011     99.8069    (no location information)   vmlinux                  set_ldt_desc
c0106d80 2        188678         0.0011     99.8080    (no location information)   vmlinux                  handle_signal
c0105e60 2        188680         0.0011     99.8090    (no location information)   vmlinux                  __constant_c_and_count_memset
c0105720 2        188682         0.0011     99.8101    (no location information)   vmlinux                  release_segments
080ca5f4 2        188684         0.0011     99.8112    (no location information)   python                   stat64
080c9688 2        188686         0.0011     99.8122    rangeobject.c:231           python                   range_iter
080c9508 2        188688         0.0011     99.8133    rangeobject.c:80            python                   range_new
080c9434 2        188690         0.0011     99.8143    rangeobject.c:14            python                   PyRange_New
080c8454 2        188692         0.0011     99.8154    funcobject.c:637            python                   cm_init
080c5bac 2        188694         0.0011     99.8164    descrobject.c:877           python                   PyDictProxy_New
080bfbac 2        188696         0.0011     99.8175    _codecsmodule.c:756         python                   lookup_error
080bed88 2        188698         0.0011     99.8186    _codecsmodule.c:51          python                   codecregister
080b8c2c 2        188700         0.0011     99.8196    posixmodule.c:7125          python                   ins
080b6a1c 2        188702         0.0011     99.8207    posixmodule.c:2078          python                   posix_execve
080b5b84 2        188704         0.0011     99.8217    posixmodule.c:844           python                   _pystat_fromstructstat
080b4190 2        188706         0.0011     99.8228    gcmodule.c:1088             python                   _PyObject_GC_Resize
080b3340 2        188708         0.0011     99.8238    gcmodule.c:162              python                   gc_list_merge
080b32cc 2        188710         0.0011     99.8249    getpath.c:646               python                   Py_GetProgramFullPath
080b2680 2        188712         0.0011     99.8260    getpath.c:153               python                   ismodule
080b250c 2        188714         0.0011     99.8270    thread.c:194                python                   PyThread_delete_key
080b24e4 2        188716         0.0011     99.8281    thread.c:187                python                   PyThread_create_key
080b2198 2        188718         0.0011     99.8291    thread.c:69                 python                   PyThread_init_thread
080b1298 2        188720         0.0011     99.8302    sysmodule.c:1056            python                   makepathobject
080b03e4 2        188722         0.0011     99.8313    sysmodule.c:150             python                   sys_exc_info
080afccc 2        188724         0.0011     99.8323    pythonrun.c:1443            python                   call_sys_exitfunc
080aea14 2        188726         0.0011     99.8334    pythonrun.c:792             python                   PyRun_SimpleStringFlags
080ae22c 2        188728         0.0011     99.8344    pythonrun.c:495             python                   initmain
080ad420 2        188730         0.0011     99.8355    pystate.c:132               python                   PyThreadState_New
080acf48 2        188732         0.0011     99.8365    mystrtoul.c:39              python                   PyOS_strtoul
080acf18 2        188734         0.0011     99.8376    modsupport.c:549            python                   PyModule_AddStringConstant
080a8a6c 2        188736         0.0011     99.8387    import.c:1594               python                   find_init_module
080a3d30 2        188738         0.0011     99.8397    errors.c:342                python                   PyErr_SetFromErrnoWithFilename
080a38d8 2        188740         0.0011     99.8408    errors.c:68                 python                   PyErr_SetString
080a063c 2        188742         0.0011     99.8418    compile.c:4490              python                   symtable_init_compiling_symbols
080a03e8 2        188744         0.0011     99.8429    compile.c:4408              python                   get_ref_type
0809cbe4 2        188746         0.0011     99.8439    compile.c:2191              python                   com_term
0809a654 2        188748         0.0011     99.8450    compile.c:843               python                   com_check_size
08098424 2        188750         0.0011     99.8461    ceval.c:3580                python                   update_star_args
08097d74 2        188752         0.0011     99.8471    ceval.c:3302                python                   Py_FlushLine
0808f8ac 2        188754         0.0011     99.8482    bltinmodule.c:1200          python                   builtin_ord
0808f83c 2        188756         0.0011     99.8492    bltinmodule.c:1152          python                   builtin_min
0808e920 2        188758         0.0011     99.8503    bltinmodule.c:421           python                   builtin_dir
08074d98 2        188760         0.0011     99.8514    stringobject.c:1817         python                   string_rstrip
08074c28 2        188762         0.0011     99.8524    stringobject.c:1735         python                   do_argstrip
080747d4 2        188764         0.0011     99.8535    stringobject.c:1548         python                   string_find_internal
080715e4 2        188766         0.0011     99.8545    object.c:1775               python                   PyObject_Dir
0806fb38 2        188768         0.0011     99.8556    object.c:435                python                   adjust_tp_compare
0806e700 2        188770         0.0011     99.8566    dictobject.c:1266           python                   PyDict_Keys
0806cafc 2        188772         0.0011     99.8577    longobject.c:2702           python                   long_int
08069880 2        188774         0.0011     99.8588    longobject.c:963            python                   inplace_divrem1
080688bc 2        188776         0.0011     99.8598    longobject.c:59             python                   _PyLong_New
08068878 2        188778         0.0011     99.8609    longobject.c:43             python                   long_normalize
08063ca4 2        188780         0.0011     99.8619    intobject.c:379             python                   int_compare
08063a40 2        188782         0.0011     99.8630    intobject.c:277             python                   PyInt_FromString
0805ebc4 2        188784         0.0011     99.8641    classobject.c:2509          python                   PyMethod_Fini
0805abb8 2        188786         0.0011     99.8651    classobject.c:314           python                   class_setattr
08057fb0 2        188788         0.0011     99.8662    abstract.c:601              python                   PyNumber_Lshift
08057f94 2        188790         0.0011     99.8672    abstract.c:600              python                   PyNumber_And
0805475c 2        188792         0.0011     99.8683    (no location information)   python                   frame_dummy
0804db20 2        188794         0.0011     99.8693    op_file.c:65                oprofiled                op_get_mtime
0804c024 2        188796         0.0011     99.8704    oprofiled.c:520             oprofiled                opd_do_samples
0804b004 2        188798         0.0011     99.8715    opd_parse_proc.c:45         oprofiled                opd_add_ascii_map
0804ad88 2        188800         0.0011     99.8725    opd_mapping.c:96            oprofiled                opd_add_mapping
08049a78 2        188802         0.0011     99.8736    opd_kernel.c:165            oprofiled                opd_get_module_info
00000000 2        188804         0.0011     99.8746    (no location information)   libgtk-x11-2.0.so.0.200.1 (no symbols)
00000000 2        188806         0.0011     99.8757    (no location information)   gawk                     (no symbols)
00000000 2        188808         0.0011     99.8767    (no location information)   ximcp.so.2               (no symbols)
000008d0 2        188810         0.0011     99.8778    (no location information)   oprofile.o               is_ready
00000cd0 2        188812         0.0011     99.8789    (no location information)   ip_conntrack.o           ip_conntrack_find_get_Rb2ef83ad
00000870 2        188814         0.0011     99.8799    (no location information)   ip_conntrack.o           hash_conntrack
000db9f4 2        188816         0.0011     99.8810    (no location information)   nvidia.o                 __nvsym04022
000baa70 2        188818         0.0011     99.8820    (no location information)   nvidia.o                 __nvsym03801
000b83d0 2        188820         0.0011     99.8831    (no location information)   nvidia.o                 __nvsym03788
00017680 2        188822         0.0011     99.8842    (no location information)   nvidia.o                 __nvsym00742
000073bb 2        188824         0.0011     99.8852    (no location information)   libpthread-0.10.so       __libc_dl_error_tsd
00004b23 2        188826         0.0011     99.8863    (no location information)   libpthread-0.10.so       _pthread_cleanup_push
000044b4 2        188828         0.0011     99.8873    (no location information)   libpthread-0.10.so       __do_global_dtors_aux
0000d6a0 2        188830         0.0011     99.8884    (no location information)   ld-2.3.1.so              uname
0000d110 2        188832         0.0011     99.8894    (no location information)   ld-2.3.1.so              __libc_close
0000c70c 2        188834         0.0011     99.8905    (no location information)   ld-2.3.1.so              sbrk
0000c6c0 2        188836         0.0011     99.8916    (no location information)   ld-2.3.1.so              __brk
00009c54 2        188838         0.0011     99.8926    (no location information)   ld-2.3.1.so              _dl_debug_state_internal
00009c10 2        188840         0.0011     99.8937    (no location information)   ld-2.3.1.so              _dl_debug_initialize
00005dbd 2        188842         0.0011     99.8947    (no location information)   ld-2.3.1.so              _dl_string_platform
000010c0 2        188844         0.0011     99.8958    (no location information)   ld-2.3.1.so              version_check_doit
c0237080 1        188845        5.3e-04     99.8963    (no location information)   vmlinux                  sprintf
c0213980 1        188846        5.3e-04     99.8968    (no location information)   vmlinux                  tcp_write_timer
c0211130 1        188847        5.3e-04     99.8974    (no location information)   vmlinux                  __tcp_select_window
c020e7c0 1        188848        5.3e-04     99.8979    (no location information)   vmlinux                  tcp_rcv_established
c020c4b0 1        188849        5.3e-04     99.8984    (no location information)   vmlinux                  tcp_ack
c0209e90 1        188850        5.3e-04     99.8990    (no location information)   vmlinux                  tcp_event_data_recv
c02073f0 1        188851        5.3e-04     99.8995    (no location information)   vmlinux                  tcp_recvmsg
c0202640 1        188852        5.3e-04     99.9000    (no location information)   vmlinux                  ip_finish_output2
c01fda00 1        188853        5.3e-04     99.9006    (no location information)   vmlinux                  ip_rcv_finish
c01fd690 1        188854        5.3e-04     99.9011    (no location information)   vmlinux                  ip_rcv
c01f8f30 1        188855        5.3e-04     99.9016    (no location information)   vmlinux                  rt_check_expire
c01f6d20 1        188856        5.3e-04     99.9021    (no location information)   vmlinux                  pfifo_fast_dequeue
c01f6940 1        188857        5.3e-04     99.9027    (no location information)   vmlinux                  qdisc_restart
c01efab0 1        188858        5.3e-04     99.9032    (no location information)   vmlinux                  net_rx_action
c01ef500 1        188859        5.3e-04     99.9037    (no location information)   vmlinux                  get_sample_stats
c01ec5e0 1        188860        5.3e-04     99.9043    (no location information)   vmlinux                  memcpy_toiovec
c01ec2f0 1        188861        5.3e-04     99.9048    (no location information)   vmlinux                  __constant_memcpy
c01ebd10 1        188862        5.3e-04     99.9053    (no location information)   vmlinux                  skb_checksum
c01eab10 1        188863        5.3e-04     99.9058    (no location information)   vmlinux                  __kfree_skb
c01ea380 1        188864        5.3e-04     99.9064    (no location information)   vmlinux                  sock_def_readable
c01e9f00 1        188865        5.3e-04     99.9069    (no location information)   vmlinux                  __release_sock
c01e99f0 1        188866        5.3e-04     99.9074    (no location information)   vmlinux                  sock_wfree
c01e76b0 1        188867        5.3e-04     99.9080    (no location information)   vmlinux                  sock_readv_writev
c01e7570 1        188868        5.3e-04     99.9085    (no location information)   vmlinux                  sock_write
c01e74c0 1        188869        5.3e-04     99.9090    (no location information)   vmlinux                  sock_read
c01e7320 1        188870        5.3e-04     99.9095    (no location information)   vmlinux                  sock_sendmsg
c01e0bb0 1        188871        5.3e-04     99.9101    (no location information)   vmlinux                  uhci_finish_completion
c01e02e0 1        188872        5.3e-04     99.9106    (no location information)   vmlinux                  rh_init_int_timer
c01a4bb0 1        188873        5.3e-04     99.9111    (no location information)   vmlinux                  __make_request
c01a25f0 1        188874        5.3e-04     99.9117    (no location information)   vmlinux                  keyboard_interrupt
c019c980 1        188875        5.3e-04     99.9122    (no location information)   vmlinux                  rs_timer
c019a0e0 1        188876        5.3e-04     99.9127    (no location information)   vmlinux                  console_callback
c01911b0 1        188877        5.3e-04     99.9132    (no location information)   vmlinux                  batch_entropy_store
c01910e0 1        188878        5.3e-04     99.9138    (no location information)   vmlinux                  add_entropy_words
c018e190 1        188879        5.3e-04     99.9143    (no location information)   vmlinux                  write_chan
c018cc10 1        188880        5.3e-04     99.9148    (no location information)   vmlinux                  opost_block
c018c790 1        188881        5.3e-04     99.9154    (no location information)   vmlinux                  do_tty_write
c018a020 1        188882        5.3e-04     99.9159    (no location information)   vmlinux                  init_dev
c0181af0 1        188883        5.3e-04     99.9164    (no location information)   vmlinux                  __constant_c_and_count_memset
c0180d10 1        188884        5.3e-04     99.9169    (no location information)   vmlinux                  reiserfs_prepare_for_journal
c017e150 1        188885        5.3e-04     99.9175    (no location information)   vmlinux                  remove_journal_hash
c017e0a0 1        188886        5.3e-04     99.9180    (no location information)   vmlinux                  reiserfs_journal_kupdate
c0177ab0 1        188887        5.3e-04     99.9185    (no location information)   vmlinux                  is_leaf
c01671e0 1        188888        5.3e-04     99.9191    (no location information)   vmlinux                  reiserfs_get_block
c015e600 1        188889        5.3e-04     99.9196    (no location information)   vmlinux                  ext2_readlink
c015bf90 1        188890        5.3e-04     99.9201    (no location information)   vmlinux                  ext2_update_inode
c0153f80 1        188891        5.3e-04     99.9207    (no location information)   vmlinux                  proc_delete_dentry
c0151e80 1        188892        5.3e-04     99.9212    (no location information)   vmlinux                  de_put
c014e770 1        188893        5.3e-04     99.9217    (no location information)   vmlinux                  seq_read
c014bb00 1        188894        5.3e-04     99.9222    (no location information)   vmlinux                  alloc_fd_array
c014b570 1        188895        5.3e-04     99.9228    (no location information)   vmlinux                  __sync_one
c014b4f0 1        188896        5.3e-04     99.9233    (no location information)   vmlinux                  __constant_c_and_count_memset
c0145310 1        188897        5.3e-04     99.9238    (no location information)   vmlinux                  max_select_fd
c0145080 1        188898        5.3e-04     99.9244    (no location information)   vmlinux                  __constant_c_and_count_memset
c01447c0 1        188899        5.3e-04     99.9249    (no location information)   vmlinux                  vfs_readdir
c0144250 1        188900        5.3e-04     99.9254    (no location information)   vmlinux                  send_sigio
c0140640 1        188901        5.3e-04     99.9259    (no location information)   vmlinux                  deny_write_access
c013f210 1        188902        5.3e-04     99.9265    (no location information)   vmlinux                  set_binfmt
c013a9e0 1        188903        5.3e-04     99.9270    (no location information)   vmlinux                  grow_buffers
c01353f0 1        188904        5.3e-04     99.9275    (no location information)   vmlinux                  sys_access
c0134040 1        188905        5.3e-04     99.9281    (no location information)   vmlinux                  shmem_lookup
c0130b10 1        188906        5.3e-04     99.9286    (no location information)   vmlinux                  free_pages
c012b500 1        188907        5.3e-04     99.9291    (no location information)   vmlinux                  generic_file_write
c01291b0 1        188908        5.3e-04     99.9296    (no location information)   vmlinux                  find_trylock_page
c0126560 1        188909        5.3e-04     99.9302    (no location information)   vmlinux                  vmtruncate
c01256e0 1        188910        5.3e-04     99.9307    (no location information)   vmlinux                  check_pgt_cache
c0123e00 1        188911        5.3e-04     99.9312    (no location information)   vmlinux                  sys_setrlimit
c0123ab0 1        188912        5.3e-04     99.9318    (no location information)   vmlinux                  in_egroup_p
c01218b0 1        188913        5.3e-04     99.9323    (no location information)   vmlinux                  wake_up_parent
c0121310 1        188914        5.3e-04     99.9328    (no location information)   vmlinux                  deliver_signal
c0121150 1        188915        5.3e-04     99.9333    (no location information)   vmlinux                  handle_stop_signal
c0121100 1        188916        5.3e-04     99.9339    (no location information)   vmlinux                  ignored_signal
c0121010 1        188917        5.3e-04     99.9344    (no location information)   vmlinux                  bad_signal
c0120c10 1        188918        5.3e-04     99.9349    (no location information)   vmlinux                  exit_sighand
c011ef40 1        188919        5.3e-04     99.9355    (no location information)   vmlinux                  __constant_copy_from_user
c011d880 1        188920        5.3e-04     99.9360    (no location information)   vmlinux                  do_sysctl_strategy
c011d5c0 1        188921        5.3e-04     99.9365    (no location information)   vmlinux                  do_sysctl
c011cfd0 1        188922        5.3e-04     99.9371    (no location information)   vmlinux                  cpu_raise_softirq
c011ceb0 1        188923        5.3e-04     99.9376    (no location information)   vmlinux                  __run_task_queue
c011c2c0 1        188924        5.3e-04     99.9381    (no location information)   vmlinux                  sys_time
c0114da0 1        188925        5.3e-04     99.9386    (no location information)   vmlinux                  schedule_timeout
c0113dc0 1        188926        5.3e-04     99.9392    (no location information)   vmlinux                  si_meminfo
c010e0b0 1        188927        5.3e-04     99.9397    (no location information)   vmlinux                  save_i387_fxsave
c010d6e0 1        188928        5.3e-04     99.9402    (no location information)   vmlinux                  restore_fpu
c010af13 1        188929        5.3e-04     99.9408    (no location information)   vmlinux                  call_do_IRQ
c010a240 1        188930        5.3e-04     99.9413    (no location information)   vmlinux                  release_x86_irqs
c0108940 1        188931        5.3e-04     99.9418    (no location information)   vmlinux                  enable_irq
c0107140 1        188932        5.3e-04     99.9423    (no location information)   vmlinux                  sigorsets
c0105bc0 1        188933        5.3e-04     99.9429    (no location information)   vmlinux                  sys_fork
c01057d0 1        188934        5.3e-04     99.9434    (no location information)   vmlinux                  flush_thread
080ca668 1        188935        5.3e-04     99.9439    (no location information)   python                   _fini
080c6eb4 1        188936        5.3e-04     99.9445    frameobject.c:531           python                   _PyFrame_Init
080c5ae0 1        188937        5.3e-04     99.9450    descrobject.c:792           python                   proxy_dealloc
080c5910 1        188938        5.3e-04     99.9455    descrobject.c:637           python                   PyDescr_NewGetSet
080c3364 1        188939        5.3e-04     99.9460    cobject.c:104               python                   PyCObject_dealloc
080c1fdc 1        188940        5.3e-04     99.9466    parser.c:97                 python                   PyParser_Delete
080c1eec 1        188941        5.3e-04     99.9471    parser.c:31                 python                   s_reset
080b58b0 1        188942        5.3e-04     99.9476    posixmodule.c:403           python                   posix_error_with_allocated_filename
080b3fc4 1        188943        5.3e-04     99.9482    gcmodule.c:986              python                   PyGC_Collect
080b27e8 1        188944        5.3e-04     99.9487    getpath.c:220               python                   copy_absolute
080b2450 1        188945        5.3e-04     99.9492    thread.c:164                python                   find_key
080b17b8 1        188946        5.3e-04     99.9497    traceback.c:31              python                   tb_getattr
080b1360 1        188947        5.3e-04     99.9503    sysmodule.c:1089            python                   PySys_SetPath
080ad884 1        188948        5.3e-04     99.9508    pystate.c:262               python                   PyThreadState_Swap
080ad38c 1        188949        5.3e-04     99.9513    pystate.c:104               python                   PyInterpreterState_Delete
080ad164 1        188950        5.3e-04     99.9519    mysnprintf.c:55             python                   PyOS_vsnprintf
080ad0cc 1        188951        5.3e-04     99.9524    mystrtoul.c:129             python                   PyOS_strtol
080a6f4c 1        188952        5.3e-04     99.9529    import.c:223                python                   _PyImport_Fini
080a3ca0 1        188953        5.3e-04     99.9534    errors.c:262                python                   PyErr_SetFromErrnoWithFilenameObject
080a0bf4 1        188954        5.3e-04     99.9540    compile.c:4742              python                   symtable_update_flags
080a06b8 1        188955        5.3e-04     99.9545    compile.c:4525              python                   symtable_init_info
0809fe64 1        188956        5.3e-04     99.9550    compile.c:4216              python                   dict_keys_inorder
0809ee84 1        188957        5.3e-04     99.9556    compile.c:3537              python                   get_rawdocstring
0809d0e0 1        188958        5.3e-04     99.9561    compile.c:2374              python                   com_comparison
0809ca00 1        188959        5.3e-04     99.9566    compile.c:2132              python                   com_factor
0809c854 1        188960        5.3e-04     99.9572    compile.c:2052              python                   com_power
0809aa40 1        188961        5.3e-04     99.9577    compile.c:1006              python                   com_addname
08099f08 1        188962        5.3e-04     99.9582    compile.c:574               python                   is_free
08093ce0 1        188963        5.3e-04     99.9587    ceval.c:184                 python                   gen_dealloc
0809098c 1        188964        5.3e-04     99.9593    bltinmodule.c:1888          python                   builtin_issubclass
0809093c 1        188965        5.3e-04     99.9598    bltinmodule.c:1863          python                   builtin_isinstance
0808f6ac 1        188966        5.3e-04     99.9603    bltinmodule.c:1085          python                   builtin_locals
080841b0 1        188967        5.3e-04     99.9609    unicodeobject.c:228         python                   unicode_dealloc
0807e2b0 1        188968        5.3e-04     99.9614    typeobject.c:3314           python                   wrap_binaryfunc
0807c344 1        188969        5.3e-04     99.9619    typeobject.c:2336           python                   object_get_class
0807bcf0 1        188970        5.3e-04     99.9624    typeobject.c:1976           python                   type_getattro
08078764 1        188971        5.3e-04     99.9630    tupleobject.c:275           python                   tupleitem
080766e0 1        188972        5.3e-04     99.9635    stringobject.c:3156         python                   string_mod
080765bc 1        188973        5.3e-04     99.9640    stringobject.c:3110         python                   string_new
08071a00 1        188974        5.3e-04     99.9646    object.c:2133               python                   Py_ReprEnter
08070038 1        188975        5.3e-04     99.9651    object.c:642                python                   default_3way_compare
0806a6c0 1        188976        5.3e-04     99.9656    longobject.c:1508           python                   long_compare
0806755c 1        188977        5.3e-04     99.9661    listobject.c:1648           python                   merge_compute_minrun
08067508 1        188978        5.3e-04     99.9667    listobject.c:1622           python                   merge_force_collapse
080666c8 1        188979        5.3e-04     99.9672    listobject.c:771            python                   reverse_slice
08064858 1        188980        5.3e-04     99.9677    intobject.c:829             python                   int_or
08060ef8 1        188981        5.3e-04     99.9683    fileobject.c:2017           python                   PyFile_SoftSpace
08060afc 1        188982        5.3e-04     99.9688    fileobject.c:1742           python                   drop_readahead
08059d80 1        188983        5.3e-04     99.9693    abstract.c:1988             python                   abstract_issubclass
08058f9c 1        188984        5.3e-04     99.9698    abstract.c:1288             python                   PySequence_SetSlice
080582b4 1        188985        5.3e-04     99.9704    abstract.c:735              python                   binary_iop1
08057a7c 1        188986        5.3e-04     99.9709    abstract.c:421              python                   binary_op
08055d64 1        188987        5.3e-04     99.9714    tokenizer.c:520             python                   buf_ungetc
0804e530 1        188988        5.3e-04     99.9720    (no location information)   oprofiled                xrealloc
0804c5f8 1        188989        5.3e-04     99.9725    db_manage.c:153             oprofiled                odb_open
0804bf40 1        188990        5.3e-04     99.9730    oprofiled.c:466             oprofiled                opd_do_notes
0804ad2c 1        188991        5.3e-04     99.9736    opd_mapping.c:60            oprofiled                opd_init_maps
0804ac58 1        188992        5.3e-04     99.9741    opd_image.c:314             oprofiled                opd_get_image_by_hash
0804a9d4 1        188993        5.3e-04     99.9746    opd_image.c:153             oprofiled                opd_check_image_mtime
0804a794 1        188994        5.3e-04     99.9751    opd_proc.c:552              oprofiled                opd_remove_kernel_mapping
0804a5e0 1        188995        5.3e-04     99.9757    opd_proc.c:432              oprofiled                opd_handle_fork
0804a214 1        188996        5.3e-04     99.9762    opd_proc.c:180              oprofiled                opd_add_proc
08049ef8 1        188997        5.3e-04     99.9767    opd_kernel.c:398            oprofiled                opd_handle_kernel_sample
08049e1c 1        188998        5.3e-04     99.9773    opd_kernel.c:333            oprofiled                opd_find_module_by_eip
08049168 1        188999        5.3e-04     99.9778    (no location information)   oprofiled                anonymous symbol from section .plt
00000000 1        189000        5.3e-04     99.9783    (no location information)   libnecko.so              (no symbols)
00000000 1        189001        5.3e-04     99.9788    (no location information)   libjsdom.so              (no symbols)
00000000 1        189002        5.3e-04     99.9794    (no location information)   libcookie.so             (no symbols)
00000000 1        189003        5.3e-04     99.9799    (no location information)   libappcomps.so           (no symbols)
00000000 1        189004        5.3e-04     99.9804    (no location information)   libgconf-2.so.4.1.0      (no symbols)
00000000 1        189005        5.3e-04     99.9810    (no location information)   libORBit-2.so.0.0.0      (no symbols)
00000000 1        189006        5.3e-04     99.9815    (no location information)   galeon-bin               (no symbols)
00000000 1        189007        5.3e-04     99.9820    (no location information)   libgconfbackend-xml.so   (no symbols)
00000000 1        189008        5.3e-04     99.9825    (no location information)   libXaw.so.7.0            (no symbols)
00000000 1        189009        5.3e-04     99.9831    (no location information)   init                     (no symbols)
00003a40 1        189010        5.3e-04     99.9836    (no location information)   oprofile.o               my_sys_exit
00003530 1        189011        5.3e-04     99.9841    (no location information)   oprofile.o               out_mmap
000002b0 1        189012        5.3e-04     99.9847    (no location information)   iptable_nat.o            ip_nat_local_fn
00000000 1        189013        5.3e-04     99.9852    (no location information)   iptable_nat.o            ip_nat_fn
00002b10 1        189014        5.3e-04     99.9857    (no location information)   ip_conntrack.o           resolve_normal_ct
00000460 1        189015        5.3e-04     99.9862    (no location information)   ip_conntrack.o           ip_conntrack_local
000dea90 1        189016        5.3e-04     99.9868    (no location information)   nvidia.o                 __nvsym00630
000dbb10 1        189017        5.3e-04     99.9873    (no location information)   nvidia.o                 __nvsym03976
000b8e38 1        189018        5.3e-04     99.9878    (no location information)   nvidia.o                 __nvsym03792
000448cc 1        189019        5.3e-04     99.9884    (no location information)   nvidia.o                 __nvsym01364
00043f24 1        189020        5.3e-04     99.9889    (no location information)   nvidia.o                 __nvsym00721
00040020 1        189021        5.3e-04     99.9894    (no location information)   nvidia.o                 __nvsym01359
0003e1c4 1        189022        5.3e-04     99.9899    (no location information)   nvidia.o                 __nvsym01591
000222ec 1        189023        5.3e-04     99.9905    (no location information)   nvidia.o                 __nvsym01451
00017648 1        189024        5.3e-04     99.9910    (no location information)   nvidia.o                 __nvsym00667
000161d0 1        189025        5.3e-04     99.9915    (no location information)   nvidia.o                 __nvsym00237
0000e4ec 1        189026        5.3e-04     99.9921    (no location information)   nvidia.o                 __nvsym00345
000018e0 1        189027        5.3e-04     99.9926    (no location information)   8139too.o                rtl8139_interrupt
00001430 1        189028        5.3e-04     99.9931    (no location information)   8139too.o                rtl8139_rx_interrupt
0000b8a0 1        189029        5.3e-04     99.9937    (no location information)   libpthread-0.10.so       _fini
0000ae32 1        189030        5.3e-04     99.9942    (no location information)   libpthread-0.10.so       thread_self
0000a4e7 1        189031        5.3e-04     99.9947    (no location information)   libpthread-0.10.so       rwlock_have_already
0000a4b5 1        189032        5.3e-04     99.9952    (no location information)   libpthread-0.10.so       rwlock_can_rdlock
00008841 1        189033        5.3e-04     99.9958    (no location information)   libpthread-0.10.so       pthread_getspecific
000087b3 1        189034        5.3e-04     99.9963    (no location information)   libpthread-0.10.so       __pthread_setspecific
0000734a 1        189035        5.3e-04     99.9968    (no location information)   libpthread-0.10.so       __pthread_init_max_stacksize
0000721c 1        189036        5.3e-04     99.9974    (no location information)   libpthread-0.10.so       init_rtsigs
000053b6 1        189037        5.3e-04     99.9979    (no location information)   libpthread-0.10.so       thread_self
0000de8c 1        189038        5.3e-04     99.9984    (no location information)   ld-2.3.1.so              memmove
0000d940 1        189039        5.3e-04     99.9989    (no location information)   ld-2.3.1.so              _setjmp
00000af0 1        189040        5.3e-04     99.9995    (no location information)   ld-2.3.1.so              anonymous symbol from section .text
00000000 1        189041        5.3e-04     100.0000   (no location information)   sleep                    (no symbols)