mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-14 23:30:43 +02:00
* patch from mazen to fix zero extending of register moves where the destination
size is larger than the source size git-svn-id: trunk@7090 -
This commit is contained in:
parent
1a2ff69193
commit
1f7cde0306
@ -578,12 +578,27 @@ implementation
|
|||||||
begin
|
begin
|
||||||
if reg1<>reg2 then
|
if reg1<>reg2 then
|
||||||
begin
|
begin
|
||||||
{ same size, only a register mov required }
|
if tcgsize2size[tosize] > tcgsize2size[fromsize] then
|
||||||
instr:=taicpu.op_reg_reg(A_MOV,reg1,reg2);
|
begin
|
||||||
list.Concat(instr);
|
list.concat(taicpu.op_reg_const_reg(A_SLL,reg1,24,reg2));
|
||||||
{ Notify the register allocator that we have written a move instruction so
|
case fromsize of
|
||||||
it can try to eliminate it. }
|
OS_8,
|
||||||
add_move_instruction(instr);
|
OS_16 :
|
||||||
|
list.concat(taicpu.op_reg_const_reg(A_SRL,reg2,24,reg2));
|
||||||
|
OS_S8,
|
||||||
|
OS_S16 :
|
||||||
|
list.concat(taicpu.op_reg_const_reg(A_SRA,reg2,24,reg2));
|
||||||
|
end;
|
||||||
|
end
|
||||||
|
else
|
||||||
|
begin
|
||||||
|
{ same size, only a register mov required }
|
||||||
|
instr:=taicpu.op_reg_reg(A_MOV,reg1,reg2);
|
||||||
|
list.Concat(instr);
|
||||||
|
{ Notify the register allocator that we have written a move instruction so
|
||||||
|
it can try to eliminate it. }
|
||||||
|
add_move_instruction(instr);
|
||||||
|
end;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
Loading…
Reference in New Issue
Block a user