summaryrefslogtreecommitdiffstats
path: root/sys/pccard/cardinfo.h
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2001-07-28 01:59:58 +0000
committerobrien <obrien@FreeBSD.org>2001-07-28 01:59:58 +0000
commit759849ef4cf64b51bc688f2c4454ef0031970195 (patch)
treee285c427e0c986a4eb2f4f00c2c37eb2e4f426cb /sys/pccard/cardinfo.h
parent7e27c49b6de1aac4731b453c0d80b7002dd58bf0 (diff)
downloadFreeBSD-src-759849ef4cf64b51bc688f2c4454ef0031970195.zip
FreeBSD-src-759849ef4cf64b51bc688f2c4454ef0031970195.tar.gz
Remove s_strl*(). I am not sure what was thought they accomplished.
When reading the code I had to stop, say "ok, what does *these* modifications of strl*() do? Pull out grep. Oh, not in add/, maybe above in ../lib/? Yep. So what do they do? Comments above them are misleading, guess I'll have to read the code. Oh, they just test strl* against the size and return the result of the test. Now I can continue to read the code I was. The uses of s_strl*() then test that result and errx()'s. Lets think about the "optimized" code I am removing: In general the compiler pushes the three args to strl* onto the stack and calls s_strl*. s_strl* has to indirectly access 3 args from the stack. Then push them on the stack a 2nd time for the real strl* call. s_strl* then pops the return from strl* off the stack; or moves it from the register it was returned in, to the register where tests can happen. s_strl* then pops the three arguments to strl*. Perform the test, push the result of the test, or move it from the result register to the return value register. The caller to s_strl* now has to either pop the return value of s_strl* or move it from the return value register to the test register. The caller then pops the three args to s_strl* off the stack (the same args that s_strl* itself had to pop off after the real call to strl*). The s_strl* caller then performs a simular test to what has already been done, and conditionally jumps. By doing things this way, we've given the compiler optimizer less to work with. Also, please don't forget the that call to s_strl* has possibly jumped to code not in the cache due to being far away from the calling code, thus causing a pipeline stall. So where is the "optimization" from s_strl*? It isn't code clarity. It isn't code execution speed. It isn't code size either.
Diffstat (limited to 'sys/pccard/cardinfo.h')
0 files changed, 0 insertions, 0 deletions
OpenPOWER on IntegriCloud