* fixes taking the address of an assembler block defined label

* create short jumps also for asm blocks, thanks to Sergej Gorelkin for the patch, resolves #11638

git-svn-id: trunk@12043 -
This commit is contained in:
florian 2008-11-09 21:14:45 +00:00
parent 49195b0ac0
commit 53ffda14f3
5 changed files with 26 additions and 1 deletions

1
.gitattributes vendored
View File

@ -8574,6 +8574,7 @@ tests/webtbs/tw11568.pp svneol=native#text/plain
tests/webtbs/tw1157.pp svneol=native#text/plain
tests/webtbs/tw1157b.pp svneol=native#text/plain
tests/webtbs/tw11619.pp svneol=native#text/plain
tests/webtbs/tw11638.pp svneol=native#text/plain
tests/webtbs/tw11711.pp svneol=native#text/plain
tests/webtbs/tw11762.pp svneol=native#text/plain
tests/webtbs/tw11763.pp svneol=native#text/plain

View File

@ -510,7 +510,10 @@ implementation
end;
end;
labelsym :
location.reference.symbol:=tcglabelnode((tlabelsym(symtableentry).code)).getasmlabel;
if assigned(tlabelsym(symtableentry).asmblocklabel) then
location.reference.symbol:=tlabelsym(symtableentry).asmblocklabel
else
location.reference.symbol:=tcglabelnode((tlabelsym(symtableentry).code)).getasmlabel;
else internalerror(200510032);
end;
end;

View File

@ -1003,6 +1003,8 @@ implementation
ot:=OT_IMM8 or OT_SIGNED
else
ot:=OT_IMMEDIATE or opsize_2_type[i,opsize];
if (val=1) and (i=1) then
ot := ot or OT_ONENESS;
end;
top_none :
begin

View File

@ -754,6 +754,10 @@ begin
{ Condition ? }
if condition<>C_None then
ai.SetCondition(condition);
{ Set is_jmp, it enables asmwriter to emit short jumps if appropriate }
if (opcode=A_JMP) or (opcode=A_JCC) then
ai.is_jmp := True;
{ Concat the opcode or give an error }
if assigned(ai) then

15
tests/webtbs/tw11638.pp Normal file
View File

@ -0,0 +1,15 @@
{ %cpu=i386 }
{$goto on}
label
l1,l2;
begin
if PtrInt(@l2-@l1)>3 then
halt(1);
halt(0);
asm
l1:
JMP l1 // E9 01000000 instead EB 01
NOP
l2:
end;
end.