This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: memcmp-sse4.S EqualHappy bug


On 06/18/2015 02:12 PM, Dr. David Alan Gilbert wrote:
>    c) I worry if there's anything where a strcmp could get optimised
>     into a memcmp and then hit this case, but I agree it's difficult to
>     find a situation where it would have been safe anyway.

Exactly. It would not have been safe.
 
> IMHO it would be safer to abort than to return 0, but that's probably
> an equally controvercial result.

Not really.

It's undefined behaviour, we can do anything.

I agree with aborting, but only as long as the hot path's performance
is not impacted and I haven't thought about how to do that.

Per "Bugs in the user program" convention:
https://sourceware.org/glibc/wiki/Style_and_Conventions#Bugs_in_the_user_program

---
9.2. Bugs in the user program

If it's user code invoking undefined behavior, then it should fail early and catastrophically so that developers don't get the false impression that their code is OK when it happens not to break the use cases they test adequately. (Said another way, so that we avoid giving developers an excuse to complain when a future implementation change "breaks" their programs that were always broken, but theretofore ignorably so.) That too trades off against any runtime cost of detecting the case. I'd say the allowance for cost of detection is marginally higher than in the case of library bugs, because we expect user bugs to be more common that library bugs. But it's still not much, since correct programs performing better is more important to us than buggy programs being easier to debug. 
---

Cheers,
Carlos.


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