gas replaces instructions on sparc

Ilya Basin basinilya@gmail.com
Sun Jul 7 16:51:00 GMT 2013


>>> I have this in my .S file:
>>>     clr  %o3
>>> but in the compiled .o file I have:
>>>     mov  %g0, %o3
>>> Why does it happen?

EB>> Because clr isn't a SPARC instruction, it's a "synthethic" instruction which 
EB>> is a "or %g0,%g0," under the hood.  And mov isn't a SPARC instruction either, 
EB>> it's also a "synthethic" instruction which is a "or %g0," under the hood.

IB> I need to recreate the instruction that is disassembled by gdb like
IB> this:
IB> 96 10 20 00    clr  %o3

IB> But both "clr" and "or %g0,%g0" give me this:
IB> 96 10 00 00    mov  %g0, %o3

By the analogy with this:
    96 10 20 d2    mov  0xd2, %o3
I figured out that I need to write: mov 0,%o3


-- 



More information about the Binutils mailing list