_dl_runtime_resolve -- When do the shared objects get loaded in to memory?

Posted by windfinder on Stack Overflow See other posts from Stack Overflow or by windfinder
Published on 2010-06-15T22:13:09Z Indexed on 2010/06/15 22:22 UTC
Read the original article Hit count: 303

Filed under:
|
|

We have a message processing system with high performance demands. Recently we have noticed that the first message takes many times longer then subsequent messages. A bunch of transformation and message augmentation happens as this goes through our system, much of it done by way of external lib.

I just profiled this issue (using callgrind), comparing a "run" of just one message with a "run" of many messages (providing a baseline of comparison).

The main difference I see is the function "do_lookup_x" taking up a huge amount of time. Looking at the various calls to this function, they all seem to be called by the common function: _dl_runtime_resolve. Not sure what this function does, but to me this looks like the first time the various shared libraries are being used, and are then being loaded in to memory by the ld.

Is this a correct assumption? That the binary will not load the shared libraries in to memory until they are being prepped for use, therefore we will see a massive slowdown on the first message, but on none of the subsequent?

How do we go about avoiding this?

Note: We operate on the microsecond scale.

© Stack Overflow or respective owner

Related posts about c++

Related posts about linux