Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Neither of those work in general.

W.r.t. 1, the compiler's definition of no optimization today is not the same thing as it was last version, or will be next version. For instance, on IA-64 there are things the compiler has to do that are typically considered optimizations.

W.r.t. 2, you have to make sure there is no link-time optimization happening.



Lto does not work on assembly, it only works if some IR is stored in the .o files (like gimple for gcc) iirc.


Currently.

However, that is not an inherent restriction - that is only a restriction on current compilers. It is entirely possible for a compiler to read the assembly of things being linked and optimize based on that.


You could also dynamically link.


That does not solve the problem. That only hides it and means it will be deadly later.

For instance, when someone runs it in an emulator for backwards compatibility purposes. Or when someone runs it in a JITter. Or even just if the compiler decides to special-case for the existing link target.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: