This is the mail archive of the libc-hacker@sourceware.cygnus.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: assert (! "unexpected dynamic reloc type");


Roland McGrath <roland@frob.com> writes:

> Say what??  This is code that is never even reached unless there is a fatal
> problem.  

You have to look how gcc generates code.  Since gcc so far does not use
block reordering, code for ifs are generated like this:

	cmp
	jump if not to label

	code for if

label:

Therefore a larger `if code' is polluting the icache significantly.

-- 
---------------.      drepper at gnu.org  ,-.   1325 Chesapeake Terrace
Ulrich Drepper  \    ,-------------------'   \  Sunnyvale, CA 94089 USA
Cygnus Solutions `--' drepper at cygnus.com   `------------------------

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]