문제

I am attempting to build a decompiler for x86 executables and was wondering if I can safely assume that function preambles/prologues will remain intact. Is it possible compilers could optimize them out of the assembly?

도움이 되었습니까?

해결책

Yes, things like leaf functions (see here) might be optimized, as well as any function that doesn't use any local variables.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top