vote up 0 vote down star

Hello,

I have a question about performance difference (from the perspective of Cycles consumed) between a static library and shared library(windows - dll).

I have a static library for some code. I also have a dynamic library for the same code. I have linked these two libraries to a application.

Will there be any difference in performance(Cycles consumed,Cache hits/missed, etc..) if I profile the two libraries.(Profiling conditions, parameters are same for both libraries)

If yes, what could be the causes for the differences in performances of the two?

Thank You.

-AD.

flag

19% accept rate

2 Answers

vote up 0 vote down

If I may “answer” this with a related sub-question: do shared libraries cause slower program launches due to busier disk access patterns? I have often wondered if the collection-of-files approach with shared libraries would mean more disk seeks and less sequential access than with a single monolithic executable. Granted, you may potentially save I/O by sharing the code, but I wonder if increased seeking would more than negate this benefit in general.

Then again, with demand paging, the entire executable may not be read when it is run anyway, which would mean less of a difference between shared and static in terms of time spent loading code from disk. I’m sure this will vary considerably from OS to OS. Perhaps someone with a better understanding of operating systems and paging can explain this further!

link|flag
vote up 1 vote down

Once the routines in the DLL have been thunked in, there is no performance difference other than an additional CALL/RET when calling them.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.