fpc/tests/test/tcg1.pp
sergei 34fc366d64 * test/opt/tretopt.pp, test/tasmread.pp: fixed GOT calculation
* test/tcg1.pp: rewrote without PIC, was having the same issue (GOT off by 1), additionally Intel syntax part won't compile anyway. This test is about push/pop encoding, not about PIC.

git-svn-id: trunk@21811 -
2012-07-07 12:03:13 +00:00

74 lines
1.2 KiB
ObjectPascal

{ %CPU=i386 }
{$R-}
program test_register_pushing;
const
haserror : boolean = false;
procedure dotest;
var
wpush,lpush: longint;
begin
{$asmmode att}
asm
movl %esp,wpush
pushw %es
subl %esp,wpush
popw %es
end;
if wpush<>2 then
begin
Writeln('Compiler does not push "pushw %es" into 2 bytes');
haserror:=true;
end;
asm
movl %esp,lpush
pushl %es
subl %esp,lpush
popl %es
end;
if lpush<>4 then
begin
Writeln('Compiler does not push "pushl %es" into 4 bytes');
haserror:=true;
end;
asm
movl %esp,wpush
pushw %gs
subl %esp,wpush
popw %gs
end;
if wpush<>2 then
begin
Writeln('Compiler does not push "pushw %gs" into 2 bytes');
haserror:=true;
end;
asm
movl %esp,lpush
pushl %gs
subl %esp,lpush
popl %gs
end;
if lpush<>4 then
begin
Writeln('Compiler does not push "pushl %gs" into 4 bytes');
haserror:=true;
end;
{$asmmode intel}
asm
mov lpush,esp
push es
sub lpush,esp
pop es
end;
Writeln('Intel "push es" uses ',lpush,' bytes');
if haserror then
Halt(1);
end;
begin
dotest;
end.