c - Can I make __udivdi3 and __umoddi3 part of the calling function in gprof? -


my program produces profile:

flat profile:  each sample counts 0.01 seconds.   %   cumulative   self              self     total             time   seconds   seconds    calls  ms/call  ms/call  name      29.79      0.14     0.14   227764     0.00     0.00  standardize_state  21.28      0.24     0.10                             __udivdi3  14.89      0.31     0.07                             __umoddi3   8.51      0.35     0.04   170971     0.00     0.00  make_negative_child   6.38      0.38     0.03  8266194     0.00     0.00  mypow ... 

my cursory googling tells me __udivdi3 , __umoddi3 generated / , %. , yes there alot of / , % in program.

however it's kind of useless in profile, prefer calls listed part of calling function.

is there way can this, or otherwise make gprof more applicable scenario.


Comments

Popular posts from this blog

python - Subclassed QStyledItemDelegate ignores Stylesheet -

java - HttpClient 3.1 Connection pooling vs HttpClient 4.3.2 -

SQL: Divide the sum of values in one table with the count of rows in another -