McIntyre: Scanning for assembly code in Free Software packages
McIntyre: Scanning for assembly code in Free Software packages
Posted Apr 2, 2013 13:19 UTC (Tue) by stevem (subscriber, #1512)In reply to: McIntyre: Scanning for assembly code in Free Software packages by ssam
Parent article: McIntyre: Scanning for assembly code in Free Software packages
There *are* places where assembly wins, and there always will be: if you know your algorithm so well, a general-purpose compiler will struggle to match you. However, it would be good to minimise the spread of such code to enhance maintainability.
Posted Apr 2, 2013 17:32 UTC (Tue)
by butlerm (subscriber, #13312)
[Link] (16 responses)
Posted Apr 2, 2013 17:46 UTC (Tue)
by stevem (subscriber, #1512)
[Link] (11 responses)
Atomics is a good example. BUT: I think there's no excuse for lots and lots of people all using assembly for locking directly in their code, with all the attendant porting and maintenance problems. The compiler should have working builtins for whatever you need here, on any platform the compiler supports. If it doesn't (or they're too slow, or whatever), then that's a bug and it's easily fixable once - not in every program out there.
A lot of the other uses of assembly are similar, from what I've seen in this study. I was shocked to see how many people were using x86 assembly for trivial bitops or byte-swapping.
Posted Apr 2, 2013 18:23 UTC (Tue)
by JoeBuck (subscriber, #2330)
[Link] (10 responses)
If you think that you need to write assembly language because you need atomic operations, you should first read the GCC manual and learn about the __sync and __atomic builtins (these are also supported by LLVM and Intel's compiler, so you aren't locking yourself into GCC). The compiler will then choose the correct implementation for the target architecture, so your program works on ARM and Sparc even if you don't know the assembly language for those architectures.
There will still be specialized cases where assembly language might help, but it makes the program less portable (unless fallback C/C++ code is provided, and then maybe it makes sense to try to reduce the gap between the C++ and the assembly performance by improving the code or possibly by helping the GCC folks to improve the compiler by providing good bug reports).
Posted Apr 2, 2013 19:03 UTC (Tue)
by Aliasundercover (guest, #69009)
[Link] (9 responses)
Posted Apr 2, 2013 20:22 UTC (Tue)
by justincormack (subscriber, #70439)
[Link] (1 responses)
Posted Apr 2, 2013 22:55 UTC (Tue)
by robert_s (subscriber, #42402)
[Link]
(Debian & OpenSSL for those who don't remember)
Posted Apr 2, 2013 21:15 UTC (Tue)
by FranTaylor (guest, #80190)
[Link] (6 responses)
To put finer point on it, incomprehensible code that "just works" should be put high up on the list of things to FIX, not "leave alone".
Honestly your "old saw" about "leaving things alone" is just POOR ENGINEERING PRACTICE.
---
Programs must be written for people to read, and only incidentally for machines to execute.
- H. Abelson and G. Sussman (in "The Structure and Interpretation of Computer Programs)
Posted Apr 2, 2013 21:24 UTC (Tue)
by dlang (guest, #313)
[Link] (1 responses)
But in any case, if you re-write incomprehensible code, you are almost guaranteed that the result is code that doesn't do the job that the original did, because you don't fully understand the problems that the code is solving.
You probably understand the more obvious problems, but the subtle problems and corner cases will bite you.
That doesn't mean that you should never re-write something, but rather than when you do so, you need to recognize that you aren't going to get it right in the first try, and you need to be sure that the value of having the new code (leaner/faster/better documented/etc) is greater than the effort to re-write the code AND then debug the code after it hits the real world (including whatever damage the bugs can do)
Posted Apr 3, 2013 3:45 UTC (Wed)
by rsidd (subscriber, #2582)
[Link]
Posted Apr 2, 2013 22:13 UTC (Tue)
by Aliasundercover (guest, #69009)
[Link] (3 responses)
There is a reason why software has a reputation for mickey mouse engineering. Even the things that did once work break in the endless update churn. Other fields respect leaving working designs alone until there is a genuine need to change them and time to verify those changes are correct.
Even this field respected leaving working things alone before security paranoia set in. Now we have an endless arms race with the hackers and a new set of patches every time you look away. Only hack resistance is served while all other measures of quality suffer.
Since you liked my last old saw so much I have another for you. There is no such thing as portable software, only software that has been ported.
Posted Apr 2, 2013 22:24 UTC (Tue)
by xbobx (subscriber, #51363)
[Link] (1 responses)
> There is a reason why software has a reputation for mickey mouse engineering.
Both are true. In mechanical or civil engineering, just because a bridge hasn't fallen over yet doesn't mean that it doesn't need to be monitored for flaws and maintained to stay up to code. Then again, a perfectly good concrete bridge doesn't need to be replaced by a fancy new suspension bridge just because suspension bridges are all the rage nowadays.
Engineering is the practice of applying judgement to decide when the current solution is sufficient and can be left alone, or needs refinement and to what extent. Doing either extreme by default is going to bite you.
Posted Apr 3, 2013 20:56 UTC (Wed)
by man_ls (guest, #15091)
[Link]
Posted Apr 3, 2013 8:57 UTC (Wed)
by ssam (guest, #46587)
[Link]
so modifying any code is potentially dangerous, and needs to be tested. translating asm to C may introduce a subtle behaviour change. but if the change is in a corner case, its quite possible that it was doing the wrong thing in asm and no one ever noticed.
maybe the asm version is fast because it does not check for alignment, or that something is non-zero (maybe poor examples). maybe when the asm was written all the data was aligned, and x was never zero, but that assumption might not always be true.
so replacing a fragile bit of asm with a robust bit of C might be a very good thing. (not that all asm is fragile, or all c is robust. but i am sure the compiler and static analysis tools can give you much better warnings for the C).
Posted Apr 2, 2013 18:45 UTC (Tue)
by jreiser (subscriber, #11027)
[Link] (3 responses)
Amen. However, sometimes ((unsigned)(x+y) < (unsigned)x) plus a comment is good enough (courtesy of MIPS, which has no Carry in hardware.)
That still isn't good enough for decoding a big-endian bitstream, which wants both CarryOut and Zero after ((x<<=1)|CarryIn).
Posted Apr 2, 2013 19:24 UTC (Tue)
by brunowolff (guest, #71160)
[Link] (1 responses)
Posted Apr 2, 2013 20:14 UTC (Tue)
by pbonzini (subscriber, #60935)
[Link]
Posted Apr 3, 2013 3:28 UTC (Wed)
by tterribe (guest, #66972)
[Link]
Conveniently, x<<=1 can be implemented as x=(unsigned)x+(unsigned)x, which reduces this to a previously solved problem. But honestly if you're decoding a bitstream a bit at a time, there are better optimizations to be done.
McIntyre: Scanning for assembly code in Free Software packages
McIntyre: Scanning for assembly code in Free Software packages
If you have an older package that uses assembly language for performance, it might be worth re-evaluating whether the assembly code still beats the GCC output.
McIntyre: Scanning for assembly code in Free Software packages
McIntyre: Scanning for assembly code in Free Software packages
McIntyre: Scanning for assembly code in Free Software packages
McIntyre: Scanning for assembly code in Free Software packages
McIntyre: Scanning for assembly code in Free Software packages
McIntyre: Scanning for assembly code in Free Software packages
McIntyre: Scanning for assembly code in Free Software packages
McIntyre: Scanning for assembly code in Free Software packages
McIntyre: Scanning for assembly code in Free Software packages
QotW
Engineering is the practice of applying judgement to decide when the current solution is sufficient and can be left alone, or needs refinement and to what extent. Doing either extreme by default is going to bite you.
Good Quote of the Week, if you ask me.
McIntyre: Scanning for assembly code in Free Software packages
the inability of C code to take advantage of the carry bit
Lack of CarryOut in C
Lack of CarryOut in C
Not for Lack of CarryOut in C
((unsigned)x+(unsigned)(y) < (unsigned)x). jreiser almost got it right.
Lack of CarryOut in C
