In the following assembly code that I dumped out using objdump:
lea 0x0(%esi,%eiz,1),%esi
What is register %eiz? What does the preceding code mean?
In the following assembly code that I dumped out using objdump:
lea 0x0(%esi,%eiz,1),%esi
What is register %eiz? What does the preceding code mean?
Apparently
%eizis a pseudo-register that just evaluates to zero at all times (liker0on MIPS).