See now why I don't merge this kind of rewrites without careful reviewing and testing
(emphasis mine)
The routines themselves went through Joey's extra-strong test suite, but I forgot that Joey's testcase contains its own C protoypes for the routines, and the code just
happened to work with the compilation options of the TPR. Add -mregparm and the testcase starts failing.
You're making the case of what we have stated for several months: TIGCC's test suite is dauntingly and appallingly incomplete. Fact.
You haven't run it for years, otherwise you'd have found and fixed no less than four or five problems. Fact.
You haven't backported most of our fixes to TIGCC, months after we made them. Fact.
We've started increasing the test coverage in GCC4TI. Fact. But it will take a lot of effort to raise GCC4TI up from the low-quality code base inherited from TIGCC.
(which I didn't have the time for so far for Joey's routines)?
You didn't _spend_ the time for Joey's routines so far. That's
very different
So you converted the C code to assembly and micro-optimized a few instructions in it.
for very little gain.
These "micro-optimisations" represent a quarter of the size of both bsearch and qsort, and besides the size optimization, they're also speed optimizations (as demonstrated by the qsort test program I added to the repository).
Sprite* routines are both smaller and faster, while supporting 1 additional drawing mode, than the current TIGCC ones. The TIGCC ones have remained the same since the beginning, despite the first optimizations to the C version of the Sprite* routines being contributed by myself in
2002, further optimizations to the C version being contributed by myself in
2003, and Joey's contributions of
2005.
as it reduces maintainability significantly
Well, maybe, though I left the original C code on purpose. However, note that we added a
test program for qsort, thereby filling one of the many many blanks of the TIGCC test suite
In addition, why did you put the assembly code in an asm block in a .c file? Assembly functions should be in .s files!
Judging by the way you complained when rebuilding the TIGCC IDE by Delphi 7 changed a few bitmaps, I thought you hated diff pollution by non-functional changes ? This is exactly what the change you're suggesting would yield in the TPR, and I fail to see a good reason for that change: assembly blocks in C files work just fine, they have worked just fine for years, and it would be a bug if they stopped working.
And finally, I cannot merge your bsearch.c because it uses code under the BSD license which is not compatible with the TIGCCLIB license. (The BSD license requires documentation of binary-only programs to carry the copyright notice for the used code, which is a requirement not in the TIGCCLIB license's GPL exception.)
The assembly code in bsearch is a hand optimization of the compiler output of some BSD-licensed code, of which I retained only the
algorithm (which happens to be better than that used by Zeljko).
Even if you don't want to merge our bsearch.c as is for whatever reason, you still had better fix, sooner than later, the bsearch.c in TIGCC (which has been broken since before the TIGCC CVS repository was created), and credit PpHd for finding the bug while doing the job that yourself didn't do:
testing the routine (for PedroM)
