mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-07-05 21:46:10 +02:00
* newcg is compiling
* fixed the dup id problem reported by Paul Y.
This commit is contained in:
parent
0281bed8a7
commit
df41d1395c
@ -74,7 +74,7 @@ unit cgbase;
|
|||||||
{ firsttemp position }
|
{ firsttemp position }
|
||||||
firsttemp_offset : longint;
|
firsttemp_offset : longint;
|
||||||
{ parameter offset }
|
{ parameter offset }
|
||||||
call_offset : longint;
|
para_offset : longint;
|
||||||
|
|
||||||
{ every register which must be saved by the entry code }
|
{ every register which must be saved by the entry code }
|
||||||
{ (and restored by the exit code) must be in that set }
|
{ (and restored by the exit code) must be in that set }
|
||||||
@ -329,7 +329,7 @@ unit cgbase;
|
|||||||
selfpointer_offset:=0;
|
selfpointer_offset:=0;
|
||||||
return_offset:=0;
|
return_offset:=0;
|
||||||
firsttemp_offset:=0;
|
firsttemp_offset:=0;
|
||||||
call_offset:=0;
|
para_offset:=0;
|
||||||
registerstosave:=[];
|
registerstosave:=[];
|
||||||
flags:=0;
|
flags:=0;
|
||||||
framepointer:=R_NO;
|
framepointer:=R_NO;
|
||||||
@ -515,7 +515,11 @@ unit cgbase;
|
|||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.16 2000-02-17 14:48:36 florian
|
Revision 1.17 2000-02-20 20:49:46 florian
|
||||||
|
* newcg is compiling
|
||||||
|
* fixed the dup id problem reported by Paul Y.
|
||||||
|
|
||||||
|
Revision 1.16 2000/02/17 14:48:36 florian
|
||||||
* updated to use old firstpass
|
* updated to use old firstpass
|
||||||
|
|
||||||
Revision 1.15 2000/01/07 01:14:52 peter
|
Revision 1.15 2000/01/07 01:14:52 peter
|
||||||
|
@ -485,7 +485,7 @@ unit cgobj;
|
|||||||
a_param_ref_addr(list,hr,2);
|
a_param_ref_addr(list,hr,2);
|
||||||
reset_reference(hr);
|
reset_reference(hr);
|
||||||
hr.base:=procinfo^.framepointer;
|
hr.base:=procinfo^.framepointer;
|
||||||
hr.offset:=pvarsym(p)^.address+procinfo^.call_offset;
|
hr.offset:=pvarsym(p)^.address+procinfo^.para_offset;
|
||||||
a_param_ref_addr(list,hr,1);
|
a_param_ref_addr(list,hr,1);
|
||||||
reset_reference(hr);
|
reset_reference(hr);
|
||||||
a_call_name(list,'FPC_ADDREF',0);
|
a_call_name(list,'FPC_ADDREF',0);
|
||||||
@ -523,7 +523,7 @@ unit cgobj;
|
|||||||
parasymtable:
|
parasymtable:
|
||||||
begin
|
begin
|
||||||
hr.base:=procinfo^.framepointer;
|
hr.base:=procinfo^.framepointer;
|
||||||
hr.offset:=pvarsym(p)^.address+procinfo^.call_offset;
|
hr.offset:=pvarsym(p)^.address+procinfo^.para_offset;
|
||||||
end;
|
end;
|
||||||
else
|
else
|
||||||
hr.symbol:=newasmsymbol(pvarsym(p)^.mangledname);
|
hr.symbol:=newasmsymbol(pvarsym(p)^.mangledname);
|
||||||
@ -644,14 +644,14 @@ unit cgobj;
|
|||||||
if (aktprocsym^.definition^.proctypeoption in [potype_unitinit,potype_proginit,potype_unitfinalize]) then
|
if (aktprocsym^.definition^.proctypeoption in [potype_unitinit,potype_proginit,potype_unitfinalize]) then
|
||||||
parasize:=0
|
parasize:=0
|
||||||
else
|
else
|
||||||
parasize:=aktprocsym^.definition^.parast^.datasize+procinfo^.call_offset-pointersize;
|
parasize:=aktprocsym^.definition^.parast^.datasize+procinfo^.para_offset-pointersize;
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
begin
|
begin
|
||||||
if (aktprocsym^.definition^.proctypeoption in [potype_unitinit,potype_proginit,potype_unitfinalize]) then
|
if (aktprocsym^.definition^.proctypeoption in [potype_unitinit,potype_proginit,potype_unitfinalize]) then
|
||||||
parasize:=0
|
parasize:=0
|
||||||
else
|
else
|
||||||
parasize:=aktprocsym^.definition^.parast^.datasize+procinfo^.call_offset-pointersize*2;
|
parasize:=aktprocsym^.definition^.parast^.datasize+procinfo^.para_offset-pointersize*2;
|
||||||
nostackframe:=false;
|
nostackframe:=false;
|
||||||
|
|
||||||
if (po_interrupt in aktprocsym^.definition^.procoptions) then
|
if (po_interrupt in aktprocsym^.definition^.procoptions) then
|
||||||
@ -1116,7 +1116,11 @@ unit cgobj;
|
|||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.33 2000-01-07 01:14:53 peter
|
Revision 1.34 2000-02-20 20:49:46 florian
|
||||||
|
* newcg is compiling
|
||||||
|
* fixed the dup id problem reported by Paul Y.
|
||||||
|
|
||||||
|
Revision 1.33 2000/01/07 01:14:53 peter
|
||||||
* updated copyright to 2000
|
* updated copyright to 2000
|
||||||
|
|
||||||
Revision 1.32 1999/12/01 12:42:33 peter
|
Revision 1.32 1999/12/01 12:42:33 peter
|
||||||
@ -1225,4 +1229,3 @@ end.
|
|||||||
+ first version, derived from old routines
|
+ first version, derived from old routines
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -31,7 +31,7 @@ uses
|
|||||||
|
|
||||||
{ produces assembler for the expression in variable p }
|
{ produces assembler for the expression in variable p }
|
||||||
{ and produces an assembler node at the end }
|
{ and produces an assembler node at the end }
|
||||||
procedure generatecode(var p : pnode);
|
procedure generatecode(var _p : ptree);
|
||||||
|
|
||||||
{ produces the actual code }
|
{ produces the actual code }
|
||||||
function do_secondpass(p : pnode) : boolean;
|
function do_secondpass(p : pnode) : boolean;
|
||||||
@ -44,7 +44,7 @@ implementation
|
|||||||
globtype,systems,
|
globtype,systems,
|
||||||
cobjects,verbose,comphook,globals,files,
|
cobjects,verbose,comphook,globals,files,
|
||||||
symconst,symtable,types,aasm,scanner,
|
symconst,symtable,types,aasm,scanner,
|
||||||
pass_1,tgobj,cgbase,cgobj,tgcpu,cpuasm,cpubase
|
pass_1,tgobj,cgbase,cgobj,tgcpu,cpuasm,cpubase,convtree
|
||||||
{$ifdef GDB}
|
{$ifdef GDB}
|
||||||
,gdb
|
,gdb
|
||||||
{$endif}
|
{$endif}
|
||||||
@ -259,13 +259,14 @@ implementation
|
|||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure generatecode(var p : pnode);
|
procedure generatecode(var _p : ptree);
|
||||||
var
|
var
|
||||||
i : longint;
|
i : longint;
|
||||||
hr : preference;
|
hr : preference;
|
||||||
{$ifdef i386}
|
{$ifdef i386}
|
||||||
regsize : topsize;
|
regsize : topsize;
|
||||||
{$endif i386}
|
{$endif i386}
|
||||||
|
p : pnode;
|
||||||
|
|
||||||
label
|
label
|
||||||
nextreg;
|
nextreg;
|
||||||
@ -282,8 +283,9 @@ implementation
|
|||||||
tg.clearregistercount;
|
tg.clearregistercount;
|
||||||
use_esp_stackframe:=false;
|
use_esp_stackframe:=false;
|
||||||
|
|
||||||
if not(do_firstpassnode(p)) then
|
if not(do_firstpass(_p)) then
|
||||||
begin
|
begin
|
||||||
|
p:=convtree2node(_p);
|
||||||
{ max. optimizations }
|
{ max. optimizations }
|
||||||
{ only if no asm is used }
|
{ only if no asm is used }
|
||||||
{ and no try statement }
|
{ and no try statement }
|
||||||
@ -318,8 +320,8 @@ implementation
|
|||||||
if procinfo^.return_offset>=0 then
|
if procinfo^.return_offset>=0 then
|
||||||
dec(procinfo^.return_offset,4);
|
dec(procinfo^.return_offset,4);
|
||||||
|
|
||||||
dec(procinfo^.call_offset,4);
|
dec(procinfo^.para_offset,4);
|
||||||
aktprocsym^.definition^.parast^.address_fixup:=procinfo^.call_offset;
|
aktprocsym^.definition^.parast^.address_fixup:=procinfo^.para_offset;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
if (p^.registersint<maxvarregs) then
|
if (p^.registersint<maxvarregs) then
|
||||||
@ -413,7 +415,7 @@ implementation
|
|||||||
{ when loading parameter to reg }
|
{ when loading parameter to reg }
|
||||||
new(hr);
|
new(hr);
|
||||||
reset_reference(hr^);
|
reset_reference(hr^);
|
||||||
hr^.offset:=pvarsym(regvars[i])^.address+procinfo^.call_offset;
|
hr^.offset:=pvarsym(regvars[i])^.address+procinfo^.para_offset;
|
||||||
hr^.base:=procinfo^.framepointer;
|
hr^.base:=procinfo^.framepointer;
|
||||||
{$ifdef i386}
|
{$ifdef i386}
|
||||||
procinfo^.aktentrycode^.concat(new(paicpu,op_ref_reg(A_MOV,regsize,
|
procinfo^.aktentrycode^.concat(new(paicpu,op_ref_reg(A_MOV,regsize,
|
||||||
@ -464,7 +466,11 @@ implementation
|
|||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.10 2000-01-07 01:14:54 peter
|
Revision 1.11 2000-02-20 20:49:46 florian
|
||||||
|
* newcg is compiling
|
||||||
|
* fixed the dup id problem reported by Paul Y.
|
||||||
|
|
||||||
|
Revision 1.10 2000/01/07 01:14:54 peter
|
||||||
* updated copyright to 2000
|
* updated copyright to 2000
|
||||||
|
|
||||||
Revision 1.9 1999/12/06 18:17:10 peter
|
Revision 1.9 1999/12/06 18:17:10 peter
|
||||||
@ -495,4 +501,4 @@ end.
|
|||||||
Revision 1.1 1999/08/03 00:07:16 florian
|
Revision 1.1 1999/08/03 00:07:16 florian
|
||||||
* initial revision
|
* initial revision
|
||||||
|
|
||||||
}
|
}
|
@ -26,6 +26,7 @@ unit tgeni386;
|
|||||||
|
|
||||||
procedure cleartempgen;
|
procedure cleartempgen;
|
||||||
procedure resettempgen;
|
procedure resettempgen;
|
||||||
|
procedure resetusableregisters;
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
|
||||||
@ -44,10 +45,19 @@ unit tgeni386;
|
|||||||
tg.resettempgen;
|
tg.resettempgen;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
procedure resetusableregisters;
|
||||||
|
|
||||||
|
begin
|
||||||
|
tg.resetusableregisters;
|
||||||
|
end;
|
||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.3 2000-01-07 01:14:54 peter
|
Revision 1.4 2000-02-20 20:49:46 florian
|
||||||
|
* newcg is compiling
|
||||||
|
* fixed the dup id problem reported by Paul Y.
|
||||||
|
|
||||||
|
Revision 1.3 2000/01/07 01:14:54 peter
|
||||||
* updated copyright to 2000
|
* updated copyright to 2000
|
||||||
|
|
||||||
Revision 1.2 1999/08/02 21:29:09 florian
|
Revision 1.2 1999/08/02 21:29:09 florian
|
||||||
@ -57,4 +67,4 @@ end.
|
|||||||
Revision 1.1 1999/08/02 17:15:05 florian
|
Revision 1.1 1999/08/02 17:15:05 florian
|
||||||
* dummy implementation
|
* dummy implementation
|
||||||
|
|
||||||
}
|
}
|
119
compiler/nodeh.inc
Normal file
119
compiler/nodeh.inc
Normal file
@ -0,0 +1,119 @@
|
|||||||
|
{
|
||||||
|
$Id$
|
||||||
|
Copyright (c) 1999-2000 by Florian Klaempfl
|
||||||
|
|
||||||
|
The declarations of the nodes for the new code generator
|
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 2 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program; if not, write to the Free Software
|
||||||
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
|
||||||
|
****************************************************************************
|
||||||
|
}
|
||||||
|
type
|
||||||
|
tnodeflags = (nf_needs_truefalselabel,tf_callunique);
|
||||||
|
|
||||||
|
tnodeflagset = set of tnodeflags;
|
||||||
|
|
||||||
|
pnode = ^tnode;
|
||||||
|
tnode = object(tlinkedlist_item)
|
||||||
|
treetype : ttreetyp;
|
||||||
|
{ the location of the result of this node }
|
||||||
|
location : tlocation;
|
||||||
|
{ do we need to parse childs to set var state }
|
||||||
|
varstateset : boolean;
|
||||||
|
{ the parent node of this is node }
|
||||||
|
{ this field is set by concattolist }
|
||||||
|
parent : pnode;
|
||||||
|
{ there are some properties about the node stored }
|
||||||
|
flags : tnodeflagset;
|
||||||
|
{ the number of registers needed to evalute the node }
|
||||||
|
registersint,registersfpu : longint; { must be longint !!!! }
|
||||||
|
{$ifdef SUPPORT_MMX}
|
||||||
|
registersmmx,registerskni : longint;
|
||||||
|
{$endif SUPPORT_MMX}
|
||||||
|
resulttype : pdef;
|
||||||
|
fileinfo : tfileposinfo;
|
||||||
|
localswitches : tlocalswitches;
|
||||||
|
{$ifdef extdebug}
|
||||||
|
firstpasscount : longint;
|
||||||
|
{$endif extdebug}
|
||||||
|
error : boolean;
|
||||||
|
list : paasmoutput;
|
||||||
|
constructor init;
|
||||||
|
destructor done;virtual;
|
||||||
|
{ runs det_resulttype and det_temp }
|
||||||
|
procedure pass_1;
|
||||||
|
{ dermines the resulttype of the node }
|
||||||
|
procedure det_resulttype;virtual;
|
||||||
|
{ dermines the number of necessary temp. locations to evaluate
|
||||||
|
the node }
|
||||||
|
procedure det_temp;virtual;
|
||||||
|
procedure secondpass;virtual;
|
||||||
|
{$ifdef EXTDEBUG}
|
||||||
|
{ writes a node for debugging purpose, shouldn't be called }
|
||||||
|
{ direct, because there is no test for nil, use writenode }
|
||||||
|
{ to write a complete tree }
|
||||||
|
procedure dowrite;virtual;
|
||||||
|
{$endif EXTDEBUG}
|
||||||
|
procedure concattolist(l : plinkedlist);virtual;
|
||||||
|
function ischild(p : pnode) : boolean;virtual;
|
||||||
|
end;
|
||||||
|
|
||||||
|
{ this node is the anchestor for all classes with at least }
|
||||||
|
{ one child, you have to use it if you want to use }
|
||||||
|
{ true- and falselabel }
|
||||||
|
punarynode = ^tunarynode;
|
||||||
|
tunarynode = object(tnode)
|
||||||
|
left : pnode;
|
||||||
|
truelabel,falselabel : pasmlabel;
|
||||||
|
{$ifdef extdebug}
|
||||||
|
procedure dowrite;virtual;
|
||||||
|
{$endif extdebug}
|
||||||
|
constructor init(l : pnode);
|
||||||
|
procedure concattolist(l : plinkedlist);virtual;
|
||||||
|
function ischild(p : pnode) : boolean;virtual;
|
||||||
|
procedure det_resulttype;virtual;
|
||||||
|
procedure det_temp;virtual;
|
||||||
|
end;
|
||||||
|
|
||||||
|
pbinarynode = ^tbinarynode;
|
||||||
|
tbinarynode = object(tunarynode)
|
||||||
|
right : pnode;
|
||||||
|
constructor init(l,r : pnode);
|
||||||
|
procedure concattolist(l : plinkedlist);virtual;
|
||||||
|
function ischild(p : pnode) : boolean;virtual;
|
||||||
|
procedure det_resulttype;virtual;
|
||||||
|
procedure det_temp;virtual;
|
||||||
|
end;
|
||||||
|
|
||||||
|
pvecnode = ^tvecnode;
|
||||||
|
tvecnode = object(tbinarynode)
|
||||||
|
end;
|
||||||
|
|
||||||
|
|
||||||
|
pbinopnode = ^tbinopnode;
|
||||||
|
tbinopnode = object(tbinarynode)
|
||||||
|
{ is true, if the right and left operand are swaped }
|
||||||
|
{ against the original order }
|
||||||
|
swaped : boolean;
|
||||||
|
constructor init(l,r : pnode);
|
||||||
|
end;
|
||||||
|
|
||||||
|
{
|
||||||
|
$Log$
|
||||||
|
Revision 1.1 2000-02-20 20:49:45 florian
|
||||||
|
* newcg is compiling
|
||||||
|
* fixed the dup id problem reported by Paul Y.
|
||||||
|
|
||||||
|
}
|
@ -832,7 +832,11 @@ implementation
|
|||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.57 2000-02-10 23:44:43 florian
|
Revision 1.58 2000-02-20 20:49:45 florian
|
||||||
|
* newcg is compiling
|
||||||
|
* fixed the dup id problem reported by Paul Y.
|
||||||
|
|
||||||
|
Revision 1.57 2000/02/10 23:44:43 florian
|
||||||
* big update for exception handling code generation: possible mem holes
|
* big update for exception handling code generation: possible mem holes
|
||||||
fixed, break/continue/exit should work always now as expected
|
fixed, break/continue/exit should work always now as expected
|
||||||
|
|
||||||
@ -917,4 +921,4 @@ end.
|
|||||||
Revision 1.35 1999/08/27 10:46:26 pierre
|
Revision 1.35 1999/08/27 10:46:26 pierre
|
||||||
+ some EXTTEMPREGDEBUG code added
|
+ some EXTTEMPREGDEBUG code added
|
||||||
|
|
||||||
}
|
}
|
@ -53,7 +53,7 @@ uses
|
|||||||
scanner,aasm,tree,types,
|
scanner,aasm,tree,types,
|
||||||
import,gendef,
|
import,gendef,
|
||||||
{$ifdef newcg}
|
{$ifdef newcg}
|
||||||
cgbase,tgcpu,
|
cgbase,
|
||||||
{$else newcg}
|
{$else newcg}
|
||||||
hcodegen,temp_gen,
|
hcodegen,temp_gen,
|
||||||
{$endif newcg}
|
{$endif newcg}
|
||||||
@ -1391,7 +1391,7 @@ var
|
|||||||
oldaktmaxfpuregisters,localmaxfpuregisters : longint;
|
oldaktmaxfpuregisters,localmaxfpuregisters : longint;
|
||||||
{ code for the subroutine as tree }
|
{ code for the subroutine as tree }
|
||||||
{$ifdef newcg}
|
{$ifdef newcg}
|
||||||
code:pnode;
|
code:ptree;
|
||||||
{$else newcg}
|
{$else newcg}
|
||||||
code:ptree;
|
code:ptree;
|
||||||
{$endif newcg}
|
{$endif newcg}
|
||||||
@ -1481,11 +1481,18 @@ begin
|
|||||||
entryswitches:=aktlocalswitches;
|
entryswitches:=aktlocalswitches;
|
||||||
localmaxfpuregisters:=aktmaxfpuregisters;
|
localmaxfpuregisters:=aktmaxfpuregisters;
|
||||||
{$ifdef newcg}
|
{$ifdef newcg}
|
||||||
|
{$ifdef dummy}
|
||||||
{ parse the code ... }
|
{ parse the code ... }
|
||||||
if (po_assembler in aktprocsym^.definition^.procoptions) then
|
if (po_assembler in aktprocsym^.definition^.procoptions) then
|
||||||
code:=convtree2node(assembler_block)
|
code:=convtree2node(assembler_block)
|
||||||
else
|
else
|
||||||
code:=convtree2node(block(current_module^.islibrary));
|
code:=convtree2node(block(current_module^.islibrary));
|
||||||
|
{$endif dummy}
|
||||||
|
{ parse the code ... }
|
||||||
|
if (po_assembler in aktprocsym^.definition^.procoptions) then
|
||||||
|
code:=assembler_block
|
||||||
|
else
|
||||||
|
code:=block(current_module^.islibrary);
|
||||||
{$else newcg}
|
{$else newcg}
|
||||||
{ parse the code ... }
|
{ parse the code ... }
|
||||||
if (po_assembler in aktprocsym^.definition^.procoptions) then
|
if (po_assembler in aktprocsym^.definition^.procoptions) then
|
||||||
@ -1526,7 +1533,8 @@ begin
|
|||||||
aktmaxfpuregisters:=localmaxfpuregisters;
|
aktmaxfpuregisters:=localmaxfpuregisters;
|
||||||
{$ifndef NOPASS2}
|
{$ifndef NOPASS2}
|
||||||
{$ifdef newcg}
|
{$ifdef newcg}
|
||||||
tg.setfirsttemp(procinfo^.firsttemp_offset);
|
if assigned(code) then
|
||||||
|
generatecode(code);
|
||||||
{$else newcg}
|
{$else newcg}
|
||||||
if assigned(code) then
|
if assigned(code) then
|
||||||
generatecode(code);
|
generatecode(code);
|
||||||
@ -1648,15 +1656,23 @@ begin
|
|||||||
aktprocsym^.definition^.localst:=nil;
|
aktprocsym^.definition^.localst:=nil;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
{$ifdef newcg}
|
||||||
|
{ all registers can be used again }
|
||||||
|
tg.resetusableregisters;
|
||||||
|
{ only now we can remove the temps }
|
||||||
|
tg.resettempgen;
|
||||||
|
{$else newcg}
|
||||||
{ all registers can be used again }
|
{ all registers can be used again }
|
||||||
resetusableregisters;
|
resetusableregisters;
|
||||||
{ only now we can remove the temps }
|
{ only now we can remove the temps }
|
||||||
resettempgen;
|
resettempgen;
|
||||||
|
{$endif newcg}
|
||||||
|
|
||||||
{ remove code tree, if not inline procedure }
|
{ remove code tree, if not inline procedure }
|
||||||
if assigned(code) and not(pocall_inline in aktprocsym^.definition^.proccalloptions) then
|
if assigned(code) and not(pocall_inline in aktprocsym^.definition^.proccalloptions) then
|
||||||
{$ifdef newcg}
|
{$ifdef newcg}
|
||||||
dispose(code,done);
|
{!!!!!!! dispose(code,done); }
|
||||||
|
disposetree(code);
|
||||||
{$else newcg}
|
{$else newcg}
|
||||||
disposetree(code);
|
disposetree(code);
|
||||||
{$endif newcg}
|
{$endif newcg}
|
||||||
@ -1970,7 +1986,11 @@ end.
|
|||||||
|
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.49 2000-02-17 14:53:42 florian
|
Revision 1.50 2000-02-20 20:49:45 florian
|
||||||
|
* newcg is compiling
|
||||||
|
* fixed the dup id problem reported by Paul Y.
|
||||||
|
|
||||||
|
Revision 1.49 2000/02/17 14:53:42 florian
|
||||||
* some updates for the newcg
|
* some updates for the newcg
|
||||||
|
|
||||||
Revision 1.48 2000/02/09 13:23:00 peter
|
Revision 1.48 2000/02/09 13:23:00 peter
|
||||||
|
@ -1770,10 +1770,13 @@ implementation
|
|||||||
hp:=hp^.next;
|
hp:=hp^.next;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
{ check the current symtable }
|
||||||
{ check for duplicate id in local and parsymtable symtable }
|
hsym:=search(sym^.name);
|
||||||
|
if assigned(hsym) then
|
||||||
|
DuplicateSym(hsym);
|
||||||
|
{ check for duplicate id in local and parasymtable symtable }
|
||||||
if (symtabletype=localsymtable) then
|
if (symtabletype=localsymtable) then
|
||||||
{ to be on the sure side: }
|
{ to be on the save side: }
|
||||||
begin
|
begin
|
||||||
if assigned(next) and
|
if assigned(next) and
|
||||||
(next^.symtabletype=parasymtable) then
|
(next^.symtabletype=parasymtable) then
|
||||||
@ -2781,7 +2784,11 @@ implementation
|
|||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.77 2000-02-11 13:53:49 pierre
|
Revision 1.78 2000-02-20 20:49:45 florian
|
||||||
|
* newcg is compiling
|
||||||
|
* fixed the dup id problem reported by Paul Y.
|
||||||
|
|
||||||
|
Revision 1.77 2000/02/11 13:53:49 pierre
|
||||||
* avoid stack overflow in tref.done (bug 846)
|
* avoid stack overflow in tref.done (bug 846)
|
||||||
|
|
||||||
Revision 1.76 2000/02/09 13:23:05 peter
|
Revision 1.76 2000/02/09 13:23:05 peter
|
||||||
|
@ -346,7 +346,7 @@ unit tree;
|
|||||||
{$I innr.inc}
|
{$I innr.inc}
|
||||||
|
|
||||||
{$ifdef newcg}
|
{$ifdef newcg}
|
||||||
{$I nodeh.inc}
|
{$I new/nodeh.inc}
|
||||||
{$endif newcg}
|
{$endif newcg}
|
||||||
implementation
|
implementation
|
||||||
|
|
||||||
@ -1924,12 +1924,16 @@ unit tree;
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
{$ifdef newcg}
|
{$ifdef newcg}
|
||||||
{$I node.inc}
|
{$I new/node.inc}
|
||||||
{$endif newcg}
|
{$endif newcg}
|
||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.112 2000-02-17 14:53:43 florian
|
Revision 1.113 2000-02-20 20:49:46 florian
|
||||||
|
* newcg is compiling
|
||||||
|
* fixed the dup id problem reported by Paul Y.
|
||||||
|
|
||||||
|
Revision 1.112 2000/02/17 14:53:43 florian
|
||||||
* some updates for the newcg
|
* some updates for the newcg
|
||||||
|
|
||||||
Revision 1.111 2000/02/09 13:23:09 peter
|
Revision 1.111 2000/02/09 13:23:09 peter
|
||||||
|
Loading…
Reference in New Issue
Block a user