|
@@ -23,27 +23,25 @@
|
|
|
}
|
|
|
unit cgobj;
|
|
|
|
|
|
+{$i defines.inc}
|
|
|
+
|
|
|
interface
|
|
|
|
|
|
uses
|
|
|
- cclasses,aasm,cpuasm,cpubase,cpuinfo,
|
|
|
- cgconst,cgbase,
|
|
|
- tainst,
|
|
|
- symtable,symconst,symbase,symtype,symsym;
|
|
|
+ cclasses,aasm,symtable,cpuasm,cpubase,cgbase,cpuinfo,
|
|
|
+ symconst,symbase,symtype;
|
|
|
|
|
|
type
|
|
|
talignment = (AM_NATURAL,AM_NONE,AM_2BYTE,AM_4BYTE,AM_8BYTE);
|
|
|
|
|
|
- pcg = ^tcg;
|
|
|
- tcg = object
|
|
|
+ tcg = class
|
|
|
scratch_register_array_pointer : aword;
|
|
|
unusedscratchregisters : tregisterset;
|
|
|
|
|
|
alignment : talignment;
|
|
|
{************************************************}
|
|
|
{ basic routines }
|
|
|
- constructor init;
|
|
|
- destructor done;virtual;
|
|
|
+ constructor create;
|
|
|
|
|
|
procedure a_label(list : taasmoutput;l : tasmlabel);virtual;
|
|
|
|
|
@@ -73,14 +71,14 @@ unit cgobj;
|
|
|
{ helper routines }
|
|
|
procedure g_initialize_data(list : taasmoutput;p : tsym);
|
|
|
procedure g_incr_data(list : taasmoutput;p : tsym);
|
|
|
- procedure g_finalize_data(list : taasmoutput;p : tindexarray);
|
|
|
- procedure g_copyvalueparas(list : taasmoutput;p : tindexarray);
|
|
|
+ procedure g_finalize_data(list : taasmoutput;p : tnamedindexitem);
|
|
|
+ procedure g_copyvalueparas(list : taasmoutput;p : tnamedindexitem);
|
|
|
procedure g_finalizetempansistrings(list : taasmoutput);
|
|
|
|
|
|
- procedure g_entrycode(list : taasmoutput;
|
|
|
- const proc_names : tstringlist;make_global : boolean;
|
|
|
- stackframe : longint;var parasize : longint;
|
|
|
- var nostackframe : boolean;inlined : boolean);
|
|
|
+ procedure g_entrycode(alist : TAAsmoutput;make_global:boolean;
|
|
|
+ stackframe:longint;
|
|
|
+ var parasize:longint;var nostackframe:boolean;
|
|
|
+ inlined : boolean);
|
|
|
|
|
|
procedure g_exitcode(list : taasmoutput;parasize : longint;
|
|
|
nostackframe,inlined : boolean);
|
|
@@ -95,7 +93,7 @@ unit cgobj;
|
|
|
{ left to right), this allows to move the parameter to }
|
|
|
{ register, if the cpu supports register calling }
|
|
|
{ conventions }
|
|
|
- procedure a_param_reg(list : taasmoutput;size : tcgsize;r : tregister;nr : longint);virtual;
|
|
|
+ procedure a_param_reg(list : taasmoutput;size : tcgsize;r : tregister;nr : longint);virtual; abstract;
|
|
|
procedure a_param_const(list : taasmoutput;size : tcgsize;a : aword;nr : longint);virtual;
|
|
|
procedure a_param_ref(list : taasmoutput;size : tcgsize;const r : treference;nr : longint);virtual;
|
|
|
procedure a_paramaddr_ref(list : taasmoutput;const r : treference;nr : longint);virtual;
|
|
@@ -121,41 +119,63 @@ unit cgobj;
|
|
|
}
|
|
|
|
|
|
procedure a_call_name(list : taasmoutput;const s : string;
|
|
|
- offset : longint);virtual;
|
|
|
+ offset : longint);virtual; abstract;
|
|
|
|
|
|
{ move instructions }
|
|
|
- procedure a_load_const_reg(list : taasmoutput;size : tcgsize;a : aword;register : tregister);virtual;
|
|
|
+ procedure a_load_const_reg(list : taasmoutput;size : tcgsize;a : aword;register : tregister);virtual; abstract;
|
|
|
procedure a_load_const_ref(list : taasmoutput;size : tcgsize;a : aword;const ref : treference);virtual;
|
|
|
- procedure a_load_reg_ref(list : taasmoutput;size : tcgsize;register : tregister;const ref : treference);virtual;
|
|
|
- procedure a_load_ref_reg(list : taasmoutput;size : tcgsize;const ref : treference;register : tregister);virtual;
|
|
|
- procedure a_load_reg_reg(list : taasmoutput;size : tcgsize;reg1,reg2 : tregister);virtual;
|
|
|
+ procedure a_load_reg_ref(list : taasmoutput;size : tcgsize;register : tregister;const ref : treference);virtual; abstract;
|
|
|
+ procedure a_load_ref_reg(list : taasmoutput;size : tcgsize;const ref : treference;register : tregister);virtual; abstract;
|
|
|
+ procedure a_load_reg_reg(list : taasmoutput;size : tcgsize;reg1,reg2 : tregister);virtual; abstract;
|
|
|
+ procedure a_load_loc_reg(list : taasmoutput;size : tcgsize;const loc: tlocation; reg : tregister);
|
|
|
+
|
|
|
+
|
|
|
+ { basic arithmetic operations }
|
|
|
+ { note: for operators which require only one argument (not, neg), use }
|
|
|
+ { the op_reg_reg, op_reg_reg or op_reg_loc methods and keep in mind }
|
|
|
+ { that in this case the *second* operand is used as both source and }
|
|
|
+ { destination (JM) }
|
|
|
+ procedure a_op_const_reg(list : taasmoutput; Op: TOpCG; a: AWord; reg: TRegister); virtual; abstract;
|
|
|
+ procedure a_op_const_ref(list : taasmoutput; Op: TOpCG; size: TCGSize; a: AWord; const ref: TReference); virtual;
|
|
|
+ procedure a_op_const_loc(list : taasmoutput; Op: TOpCG; size: TCGSize; a: AWord; const loc: tlocation);
|
|
|
+ procedure a_op_reg_reg(list : taasmoutput; Op: TOpCG; size: TCGSize; reg1, reg2: TRegister); virtual; abstract;
|
|
|
+ procedure a_op_reg_ref(list : taasmoutput; Op: TOpCG; size: TCGSize; reg: TRegister; const ref: TReference); virtual;
|
|
|
+ procedure a_op_ref_reg(list : taasmoutput; Op: TOpCG; size: TCGSize; const ref: TReference; reg: TRegister); virtual;
|
|
|
+ procedure a_op_reg_loc(list : taasmoutput; Op: TOpCG; size: TCGSize; reg: tregister; const loc: tlocation);
|
|
|
+ procedure a_op_ref_loc(list : taasmoutput; Op: TOpCG; size: TCGSize; const ref: TReference; const loc: tlocation);
|
|
|
|
|
|
{ comparison operations }
|
|
|
- procedure a_cmp_reg_const_label(list : taasmoutput;size : tcgsize;cmp_op : topcmp;a : aword;reg : tregister;
|
|
|
- l : tasmlabel);virtual;
|
|
|
- procedure a_cmp_reg_reg_label(list : taasmoutput;size : tcgsize;cmp_op : topcmp;reg1,reg2 : tregister;l : tasmlabel);
|
|
|
- procedure a_cmp_reg_ref_label(list : taasmoutput;size : tcgsize;cmp_op : topcmp;reg : tregister;l : tasmlabel);
|
|
|
- procedure a_cmp_ref_const_label(list : taasmoutput;size : tcgsize;cmp_op : topcmp;a : aword;reg : tregister;
|
|
|
+ procedure a_cmp_const_reg_label(list : taasmoutput;size : tcgsize;cmp_op : topcmp;a : aword;reg : tregister;
|
|
|
+ l : tasmlabel);virtual; abstract;
|
|
|
+ procedure a_cmp_const_ref_label(list : taasmoutput;size : tcgsize;cmp_op : topcmp;a : aword;const ref : treference;
|
|
|
+ l : tasmlabel); virtual;
|
|
|
+ procedure a_cmp_const_loc_label(list: taasmoutput; size: tcgsize;cmp_op: topcmp; a: aword; const loc: tlocation;
|
|
|
+ l : tasmlabel); virtual;
|
|
|
+ procedure a_cmp_reg_reg_label(list : taasmoutput;size : tcgsize;cmp_op : topcmp;reg1,reg2 : tregister;l : tasmlabel); virtual; abstract;
|
|
|
+ procedure a_cmp_ref_reg_label(list : taasmoutput;size : tcgsize;cmp_op : topcmp; const ref: treference; reg : tregister; l : tasmlabel); virtual;
|
|
|
+ procedure a_cmp_ref_loc_label(list: taasmoutput; size: tcgsize;cmp_op: topcmp; const ref: treference; const loc: tlocation;
|
|
|
l : tasmlabel);
|
|
|
|
|
|
- procedure a_jmp_cond(list : taasmoutput;cond : TOpCmp;l: tasmlabel);
|
|
|
+ procedure a_jmp_cond(list : taasmoutput;cond : TOpCmp;l: tasmlabel); virtual; abstract;
|
|
|
+
|
|
|
+ procedure g_flags2reg(list: taasmoutput; const f: tresflags; reg: TRegister); virtual; abstract;
|
|
|
|
|
|
- procedure a_loadaddress_ref_reg(list : taasmoutput;const ref : treference;r : tregister);virtual;
|
|
|
- procedure g_stackframe_entry(list : taasmoutput;localsize : longint);virtual;
|
|
|
+ procedure a_loadaddress_ref_reg(list : taasmoutput;const ref : treference;r : tregister);virtual; abstract;
|
|
|
+ procedure g_stackframe_entry(list : taasmoutput;localsize : longint);virtual; abstract;
|
|
|
{ restores the frame pointer at procedure exit, for the }
|
|
|
{ i386 it generates a simple leave }
|
|
|
- procedure g_restore_frame_pointer(list : taasmoutput);virtual;
|
|
|
+ procedure g_restore_frame_pointer(list : taasmoutput);virtual; abstract;
|
|
|
|
|
|
{ some processors like the PPC doesn't allow to change the stack in }
|
|
|
{ a procedure, so we need to maintain an extra stack for the }
|
|
|
{ result values of setjmp in exception code }
|
|
|
{ this two procedures are for pushing an exception value, }
|
|
|
{ they can use the scratch registers }
|
|
|
- procedure g_push_exception_value_reg(list : taasmoutput;reg : tregister);virtual;
|
|
|
- procedure g_push_exception_value_const(list : taasmoutput;reg : tregister);virtual;
|
|
|
+ procedure g_push_exception_value_reg(list : taasmoutput;reg : tregister);virtual; abstract;
|
|
|
+ procedure g_push_exception_value_const(list : taasmoutput;reg : tregister);virtual; abstract;
|
|
|
{ that procedure pops a exception value }
|
|
|
- procedure g_pop_exception_value_reg(list : taasmoutput;reg : tregister);virtual;
|
|
|
- procedure g_return_from_proc(list : taasmoutput;parasize : aword);virtual;
|
|
|
+ procedure g_pop_exception_value_reg(list : taasmoutput;reg : tregister);virtual; abstract;
|
|
|
+ procedure g_return_from_proc(list : taasmoutput;parasize : aword);virtual; abstract;
|
|
|
{********************************************************}
|
|
|
{ these methods can be overriden for extra functionality }
|
|
|
|
|
@@ -166,46 +186,50 @@ unit cgobj;
|
|
|
procedure g_profilecode(list : taasmoutput);virtual;
|
|
|
procedure g_stackcheck(list : taasmoutput;stackframesize : longint);virtual;
|
|
|
|
|
|
- procedure g_maybe_loadself(list : taasmoutput);virtual;
|
|
|
+ procedure g_maybe_loadself(list : taasmoutput);virtual; abstract;
|
|
|
{ copies len bytes from the source to destination, if }
|
|
|
{ loadref is true, it assumes that it first must load }
|
|
|
{ the source address from the memory location where }
|
|
|
{ source points to }
|
|
|
- procedure g_concatcopy(list : taasmoutput;const source,dest : treference;len : aword;loadref : boolean);virtual;
|
|
|
+ procedure g_concatcopy(list : taasmoutput;const source,dest : treference;len : aword;delsource,loadref : boolean);virtual; abstract;
|
|
|
|
|
|
- { uses the addr of ref as param, was emitpushreferenceaddr }
|
|
|
- procedure a_param_ref_addr(list : taasmoutput;r : treference;nr : longint);virtual;
|
|
|
+{$ifdef i386}
|
|
|
+ { this one is only necessary due the the restrictions of the 80x86, }
|
|
|
+ { so make it a special case (JM) }
|
|
|
+ function makeregsize(var reg: tregister; size: tcgsize): topsize; virtual; abstract;
|
|
|
+{$endif i386}
|
|
|
end;
|
|
|
|
|
|
var
|
|
|
- cg : pcg; { this is the main code generator class }
|
|
|
+ cg : tcg; { this is the main code generator class }
|
|
|
|
|
|
implementation
|
|
|
|
|
|
uses
|
|
|
- strings,globals,globtype,options,gdb,systems,
|
|
|
- ppu,verbose,types,temp_gen,tgcpu;
|
|
|
+ strings,globals,globtype,options,{files,}gdb,systems,
|
|
|
+ ppu,verbose,types,{tgobj,}tgcpu,symdef,symsym,cga
|
|
|
+ {$IFDEF NEWST}
|
|
|
+ ,symbols,defs,symtablt
|
|
|
+ {$ENDIF NEWST};
|
|
|
+
|
|
|
+ const
|
|
|
+ max_scratch_regs = high(scratch_regs) - low(scratch_regs) + 1;
|
|
|
|
|
|
{*****************************************************************************
|
|
|
basic functionallity
|
|
|
******************************************************************************}
|
|
|
|
|
|
- constructor tcg.init;
|
|
|
+ constructor tcg.create;
|
|
|
|
|
|
var
|
|
|
i : longint;
|
|
|
|
|
|
begin
|
|
|
scratch_register_array_pointer:=1;
|
|
|
- for i:=1 to max_scratch_regs do
|
|
|
+ for i:=low(scratch_regs) to high(scratch_regs) do
|
|
|
include(unusedscratchregisters,scratch_regs[i]);
|
|
|
end;
|
|
|
|
|
|
- destructor tcg.done;
|
|
|
-
|
|
|
- begin
|
|
|
- end;
|
|
|
-
|
|
|
procedure tcg.a_reg_alloc(list : taasmoutput;r : tregister);
|
|
|
|
|
|
begin
|
|
@@ -235,7 +259,7 @@ unit cgobj;
|
|
|
internalerror(68996);
|
|
|
|
|
|
for i:=scratch_register_array_pointer to
|
|
|
- (scratch_register_array_pointer+max_scratch_regs) do
|
|
|
+ (scratch_register_array_pointer+max_scratch_regs-1) do
|
|
|
if scratch_regs[(i mod max_scratch_regs)+1] in unusedscratchregisters then
|
|
|
begin
|
|
|
r:=scratch_regs[(i mod max_scratch_regs)+1];
|
|
@@ -252,7 +276,7 @@ unit cgobj;
|
|
|
procedure tcg.free_scratch_reg(list : taasmoutput;r : tregister);
|
|
|
|
|
|
begin
|
|
|
- include(unusedscratchregisters,r);
|
|
|
+ include(unusedscratchregisters,makereg32(r));
|
|
|
a_reg_dealloc(list,r);
|
|
|
end;
|
|
|
|
|
@@ -303,7 +327,7 @@ unit cgobj;
|
|
|
free_scratch_reg(list,hr);
|
|
|
end;
|
|
|
|
|
|
- procedure tcg.a_param_ref_addr(list : taasmoutput;r : treference;nr : longint);
|
|
|
+ procedure tcg.a_paramaddr_ref(list : taasmoutput;const r : treference;nr : longint);
|
|
|
|
|
|
var
|
|
|
hr : tregister;
|
|
@@ -322,51 +346,36 @@ unit cgobj;
|
|
|
a_call_name(list,'FPC_STACKCHECK',0);
|
|
|
end;
|
|
|
|
|
|
- procedure tcg.a_load_const_ref(list : taasmoutput;size : tcgsize;a : aword;const ref : treference);
|
|
|
-
|
|
|
- var
|
|
|
- hr : tregister;
|
|
|
-
|
|
|
- begin
|
|
|
- hr:=get_scratch_reg(list);
|
|
|
- a_load_const_reg(list,size,a,hr);
|
|
|
- a_load_reg_ref(list,size,hr,ref);
|
|
|
- free_scratch_reg(list,hr);
|
|
|
- end;
|
|
|
-
|
|
|
-
|
|
|
- procedure tcg.g_concatcopy(list : taasmoutput;const source,dest : treference;len : aword;loadref : boolean);
|
|
|
-
|
|
|
- begin
|
|
|
- abstract;
|
|
|
- end;
|
|
|
-
|
|
|
-
|
|
|
{*****************************************************************************
|
|
|
String helper routines
|
|
|
*****************************************************************************}
|
|
|
|
|
|
procedure tcg.g_removetemps(list : taasmoutput;p : tlinkedlist);
|
|
|
|
|
|
+(*
|
|
|
var
|
|
|
hp : ptemptodestroy;
|
|
|
pushedregs : tpushed;
|
|
|
+*)
|
|
|
|
|
|
begin
|
|
|
- hp:=ttemptodestroy(p.first);
|
|
|
+(*
|
|
|
+ hp:=ptemptodestroy(p^.first);
|
|
|
if not(assigned(hp)) then
|
|
|
exit;
|
|
|
- pushusedregisters(pushedregs,$ff);
|
|
|
+ tg.pushusedregisters(pushedregs,$ff);
|
|
|
while assigned(hp) do
|
|
|
begin
|
|
|
if is_ansistring(hp^.typ) then
|
|
|
begin
|
|
|
- g_decrstrref(list,hp.address,hp^.typ);
|
|
|
- ungetiftemp(hp^.address);
|
|
|
+ g_decrstrref(list,hp^.address,hp^.typ);
|
|
|
+ tg.ungetiftemp(hp^.address);
|
|
|
end;
|
|
|
hp:=ptemptodestroy(hp^.next);
|
|
|
end;
|
|
|
- popusedregisters(pushedregs);
|
|
|
+ tg.popusedregisters(pushedregs);
|
|
|
+*)
|
|
|
+ runerror(211);
|
|
|
end;
|
|
|
|
|
|
procedure tcg.g_decrstrref(list : taasmoutput;const ref : treference;t : tdef);
|
|
@@ -375,14 +384,17 @@ unit cgobj;
|
|
|
pushedregs : tpushed;
|
|
|
|
|
|
begin
|
|
|
- pushusedregisters(pushedregs,$ff);
|
|
|
+(*
|
|
|
+ tg.pushusedregisters(pushedregs,$ff);
|
|
|
a_param_ref_addr(list,ref,1);
|
|
|
if is_ansistring(t) then
|
|
|
a_call_name(list,'FPC_ANSISTR_DECR_REF',0)
|
|
|
else if is_widestring(t) then
|
|
|
a_call_name(list,'FPC_WIDESTR_DECR_REF',0)
|
|
|
else internalerror(58993);
|
|
|
- popusedregisters(pushedregs);
|
|
|
+ tg.popusedregisters(pushedregs);
|
|
|
+*)
|
|
|
+ runerror(211);
|
|
|
end;
|
|
|
|
|
|
{*****************************************************************************
|
|
@@ -398,6 +410,7 @@ unit cgobj;
|
|
|
hr : treference;
|
|
|
|
|
|
begin
|
|
|
+(*
|
|
|
if is_ansistring(t) or
|
|
|
is_widestring(t) then
|
|
|
a_load_const_ref(list,OS_8,0,ref)
|
|
@@ -412,6 +425,8 @@ unit cgobj;
|
|
|
a_param_ref_addr(list,ref,1);
|
|
|
a_call_name(list,'FPC_INITIALIZE',0);
|
|
|
end;
|
|
|
+*)
|
|
|
+ runerror(211);
|
|
|
end;
|
|
|
|
|
|
procedure tcg.g_finalize(list : taasmoutput;t : tdef;const ref : treference;is_already_ref : boolean);
|
|
@@ -420,6 +435,7 @@ unit cgobj;
|
|
|
r : treference;
|
|
|
|
|
|
begin
|
|
|
+(*
|
|
|
if is_ansistring(t) or
|
|
|
is_widestring(t) then
|
|
|
begin
|
|
@@ -436,6 +452,8 @@ unit cgobj;
|
|
|
a_param_ref_addr(list,ref,1);
|
|
|
a_call_name(list,'FPC_FINALIZE',0);
|
|
|
end;
|
|
|
+*)
|
|
|
+ runerror(211);
|
|
|
end;
|
|
|
|
|
|
{ generates the code for initialisation of local data }
|
|
@@ -445,25 +463,50 @@ unit cgobj;
|
|
|
hr : treference;
|
|
|
|
|
|
begin
|
|
|
- if (tsym(p).typ=varsym) and
|
|
|
- assigned(tvarsym(p).vartype.def) and
|
|
|
- not((tvarsym(p).vartype.def^.deftype=objectdef) and
|
|
|
- tobjectdef(tvarsym(p).vartype.def)^.is_class) and
|
|
|
- tvarsym(p).vartype.def.needs_inittable then
|
|
|
+(*
|
|
|
+ {$IFDEF NEWST}
|
|
|
+ if (typeof(p^)=typeof(Tvarsym)) and
|
|
|
+ assigned(pvarsym(p)^.definition) and
|
|
|
+ not((typeof((pvarsym(p)^.definition^))=typeof(Tobjectdef)) and
|
|
|
+ (oo_is_class in pobjectdef(pvarsym(p)^.definition)^.options)) and
|
|
|
+ pvarsym(p)^.definition^.needs_inittable then
|
|
|
+ begin
|
|
|
+ procinfo^.flags:=procinfo^.flags or pi_needs_implicit_finally;
|
|
|
+ reset_reference(hr);
|
|
|
+ if typeof((tsym(p)^.owner^))=typeof(Tprocsymtable) then
|
|
|
+ begin
|
|
|
+ hr.base:=procinfo^.framepointer;
|
|
|
+ hr.offset:=-pvarsym(p)^.address;
|
|
|
+ end
|
|
|
+ else
|
|
|
+ begin
|
|
|
+ hr.symbol:=newasmsymbol(pvarsym(p)^.mangledname);
|
|
|
+ end;
|
|
|
+ g_initialize(list,pvarsym(p)^.definition,hr,false);
|
|
|
+ end;
|
|
|
+ {$ELSE}
|
|
|
+ if (tsym(p)^.typ=varsym) and
|
|
|
+ assigned(pvarsym(p)^.vartype.def) and
|
|
|
+ not((pvarsym(p)^.vartype.def^.deftype=objectdef) and
|
|
|
+ pobjectdef(pvarsym(p)^.vartype.def)^.is_class) and
|
|
|
+ pvarsym(p)^.vartype.def^.needs_inittable then
|
|
|
begin
|
|
|
procinfo^.flags:=procinfo^.flags or pi_needs_implicit_finally;
|
|
|
reset_reference(hr);
|
|
|
if tsym(p)^.owner^.symtabletype=localsymtable then
|
|
|
begin
|
|
|
hr.base:=procinfo^.framepointer;
|
|
|
- hr.offset:=-tvarsym(p)^.address;
|
|
|
+ hr.offset:=-pvarsym(p)^.address;
|
|
|
end
|
|
|
else
|
|
|
begin
|
|
|
- hr.symbol:=newasmsymbol(tvarsym(p)^.mangledname);
|
|
|
+ hr.symbol:=newasmsymbol(pvarsym(p)^.mangledname);
|
|
|
end;
|
|
|
- g_initialize(list,tvarsym(p)^.vartype.def,hr,false);
|
|
|
+ g_initialize(list,pvarsym(p)^.vartype.def,hr,false);
|
|
|
end;
|
|
|
+ {$ENDIF NEWST}
|
|
|
+*)
|
|
|
+ runerror(211);
|
|
|
end;
|
|
|
|
|
|
|
|
@@ -474,72 +517,130 @@ unit cgobj;
|
|
|
hr : treference;
|
|
|
|
|
|
begin
|
|
|
- if (tsym(p).typ=varsym) and
|
|
|
- not((tvarsym(p).vartype.def.deftype=objectdef) and
|
|
|
- tobjectdef(tvarsym(p).vartype.def).is_class) and
|
|
|
- tvarsym(p).vartype.def.needs_inittable and
|
|
|
- ((tvarsym(p).varspez=vs_value)) then
|
|
|
+(*
|
|
|
+ {$IFDEF NEWST}
|
|
|
+ if (typeof((tsym(p)^))=typeof(Tparamsym)) and
|
|
|
+ not((typeof((Pparamsym(p)^.definition^))=typeof(Tobjectdef)) and
|
|
|
+ (oo_is_class in pobjectdef(pvarsym(p)^.definition)^.options)) and
|
|
|
+ Pparamsym(p)^.definition^.needs_inittable and
|
|
|
+ ((Pparamsym(p)^.varspez=vs_value)) then
|
|
|
+ begin
|
|
|
+ procinfo^.flags:=procinfo^.flags or pi_needs_implicit_finally;
|
|
|
+ reset_reference(hr);
|
|
|
+ hr.symbol:=pvarsym(p)^.definition^.get_inittable_label;
|
|
|
+ a_param_ref_addr(list,hr,2);
|
|
|
+ reset_reference(hr);
|
|
|
+ hr.base:=procinfo^.framepointer;
|
|
|
+ hr.offset:=pvarsym(p)^.address+procinfo^.para_offset;
|
|
|
+ a_param_ref_addr(list,hr,1);
|
|
|
+ reset_reference(hr);
|
|
|
+ a_call_name(list,'FPC_ADDREF',0);
|
|
|
+ end;
|
|
|
+ {$ELSE}
|
|
|
+ if (tsym(p)^.typ=varsym) and
|
|
|
+ not((pvarsym(p)^.vartype.def^.deftype=objectdef) and
|
|
|
+ pobjectdef(pvarsym(p)^.vartype.def)^.is_class) and
|
|
|
+ pvarsym(p)^.vartype.def^.needs_inittable and
|
|
|
+ ((pvarsym(p)^.varspez=vs_value)) then
|
|
|
begin
|
|
|
procinfo^.flags:=procinfo^.flags or pi_needs_implicit_finally;
|
|
|
reset_reference(hr);
|
|
|
- hr.symbol:=tvarsym(p)^.vartype.def^.get_inittable_label;
|
|
|
+ hr.symbol:=pvarsym(p)^.vartype.def^.get_inittable_label;
|
|
|
a_param_ref_addr(list,hr,2);
|
|
|
reset_reference(hr);
|
|
|
hr.base:=procinfo^.framepointer;
|
|
|
- hr.offset:=tvarsym(p)^.address+procinfo^.para_offset;
|
|
|
+ hr.offset:=pvarsym(p)^.address+procinfo^.para_offset;
|
|
|
a_param_ref_addr(list,hr,1);
|
|
|
reset_reference(hr);
|
|
|
a_call_name(list,'FPC_ADDREF',0);
|
|
|
end;
|
|
|
+ {$ENDIF NEWST}
|
|
|
+*)
|
|
|
+ runerror(211);
|
|
|
end;
|
|
|
|
|
|
|
|
|
{ generates the code for finalisation of local data }
|
|
|
- procedure tcg.g_finalize_data(list : taasmoutput;p : tnamedindex);
|
|
|
+ procedure tcg.g_finalize_data(list : taasmoutput;p : tnamedindexitem);
|
|
|
|
|
|
var
|
|
|
hr : treference;
|
|
|
|
|
|
begin
|
|
|
- if (tsym(p).typ=varsym) and
|
|
|
- assigned(tvarsym(p).vartype.def) and
|
|
|
- not((tvarsym(p).vartype.def.deftype=objectdef) and
|
|
|
- tobjectdef(tvarsym(p).vartype.def).is_class) and
|
|
|
- tvarsym(p).vartype.def.needs_inittable then
|
|
|
+(*
|
|
|
+ {$IFDEF NEWST}
|
|
|
+ if (typeof((tsym(p)^))=typeof(Tvarsym)) and
|
|
|
+ assigned(pvarsym(p)^.definition) and
|
|
|
+ not((typeof((pvarsym(p)^.definition^))=typeof(Tobjectdef)) and
|
|
|
+ (oo_is_class in pobjectdef(pvarsym(p)^.definition)^.options)) and
|
|
|
+ pvarsym(p)^.definition^.needs_inittable then
|
|
|
begin
|
|
|
{ not all kind of parameters need to be finalized }
|
|
|
- if (tsym(p).owner.symtabletype=parasymtable) and
|
|
|
- ((tvarsym(p).varspez=vs_var) or
|
|
|
- (tvarsym(p).varspez=vs_const) { and
|
|
|
- (dont_copy_const_param(tvarsym(p)^.definition)) } ) then
|
|
|
+ if (typeof((tsym(p)^.owner^))=typeof(Tprocsymtable)) and
|
|
|
+ ((pparamsym(p)^.varspez=vs_var) or
|
|
|
+ (Pparamsym(p)^.varspez=vs_const) { and
|
|
|
+ (dont_copy_const_param(pvarsym(p)^.definition)) } ) then
|
|
|
exit;
|
|
|
procinfo^.flags:=procinfo^.flags or pi_needs_implicit_finally;
|
|
|
reset_reference(hr);
|
|
|
- case tsym(p).owner^.symtabletype of
|
|
|
+ if typeof((tsym(p)^.owner^))=typeof(Tprocsymtable) then
|
|
|
+ begin
|
|
|
+ hr.base:=procinfo^.framepointer;
|
|
|
+ hr.offset:=-pvarsym(p)^.address;
|
|
|
+ end
|
|
|
+ else if typeof((tsym(p)^.owner^))=typeof(Tprocsymtable) then
|
|
|
+ begin
|
|
|
+ hr.base:=procinfo^.framepointer;
|
|
|
+ hr.offset:=pvarsym(p)^.address+procinfo^.para_offset;
|
|
|
+ end
|
|
|
+ else
|
|
|
+ hr.symbol:=newasmsymbol(pvarsym(p)^.mangledname);
|
|
|
+ g_finalize(list,pvarsym(p)^.definition,hr,false);
|
|
|
+ end;
|
|
|
+ {$ELSE}
|
|
|
+ if (tsym(p)^.typ=varsym) and
|
|
|
+ assigned(pvarsym(p)^.vartype.def) and
|
|
|
+ not((pvarsym(p)^.vartype.def^.deftype=objectdef) and
|
|
|
+ pobjectdef(pvarsym(p)^.vartype.def)^.is_class) and
|
|
|
+ pvarsym(p)^.vartype.def^.needs_inittable then
|
|
|
+ begin
|
|
|
+ { not all kind of parameters need to be finalized }
|
|
|
+ if (tsym(p)^.owner^.symtabletype=parasymtable) and
|
|
|
+ ((pvarsym(p)^.varspez=vs_var) or
|
|
|
+ (pvarsym(p)^.varspez=vs_const) { and
|
|
|
+ (dont_copy_const_param(pvarsym(p)^.definition)) } ) then
|
|
|
+ exit;
|
|
|
+ procinfo^.flags:=procinfo^.flags or pi_needs_implicit_finally;
|
|
|
+ reset_reference(hr);
|
|
|
+ case tsym(p)^.owner^.symtabletype of
|
|
|
localsymtable:
|
|
|
begin
|
|
|
hr.base:=procinfo^.framepointer;
|
|
|
- hr.offset:=-tvarsym(p).address;
|
|
|
+ hr.offset:=-pvarsym(p)^.address;
|
|
|
end;
|
|
|
parasymtable:
|
|
|
begin
|
|
|
hr.base:=procinfo^.framepointer;
|
|
|
- hr.offset:=tvarsym(p).address+procinfo^.para_offset;
|
|
|
+ hr.offset:=pvarsym(p)^.address+procinfo^.para_offset;
|
|
|
end;
|
|
|
else
|
|
|
- hr.symbol:=newasmsymbol(tvarsym(p).mangledname);
|
|
|
+ hr.symbol:=newasmsymbol(pvarsym(p)^.mangledname);
|
|
|
end;
|
|
|
- g_finalize(list,tvarsym(p).vartype.def,hr,false);
|
|
|
+ g_finalize(list,pvarsym(p)^.vartype.def,hr,false);
|
|
|
end;
|
|
|
+ {$ENDIF NEWST}
|
|
|
+*)
|
|
|
+ runerror(211);
|
|
|
end;
|
|
|
|
|
|
|
|
|
{ generates the code to make local copies of the value parameters }
|
|
|
- procedure tcg.g_copyvalueparas(list : taasmoutput;p : pnamedindexobject);
|
|
|
+ procedure tcg.g_copyvalueparas(list : taasmoutput;p : tnamedindexitem);
|
|
|
begin
|
|
|
runerror(255);
|
|
|
end;
|
|
|
|
|
|
+(*
|
|
|
var
|
|
|
_list : taasmoutput;
|
|
|
|
|
@@ -547,21 +648,25 @@ unit cgobj;
|
|
|
{ of objects }
|
|
|
|
|
|
{$IFNDEF NEWST}
|
|
|
- procedure _copyvalueparas(s : pnamedindexobject);{$ifndef FPC}far;{$endif}
|
|
|
+ procedure _copyvalueparas(s : tnamedindexitem);{$ifndef FPC}far;{$endif}
|
|
|
|
|
|
begin
|
|
|
cg^.g_copyvalueparas(_list,s);
|
|
|
end;
|
|
|
{$ENDIF NEWST}
|
|
|
+*)
|
|
|
|
|
|
procedure tcg.g_finalizetempansistrings(list : taasmoutput);
|
|
|
|
|
|
+(*
|
|
|
var
|
|
|
hp : ptemprecord;
|
|
|
hr : treference;
|
|
|
+*)
|
|
|
|
|
|
begin
|
|
|
- hp:=templist;
|
|
|
+(*
|
|
|
+ hp:=tg.templist;
|
|
|
while assigned(hp) do
|
|
|
begin
|
|
|
if hp^.temptype in [tt_ansistring,tt_freeansistring] then
|
|
@@ -575,31 +680,65 @@ unit cgobj;
|
|
|
end;
|
|
|
hp:=hp^.next;
|
|
|
end;
|
|
|
+*)
|
|
|
+ runerror(211);
|
|
|
end;
|
|
|
|
|
|
- procedure _finalize_data(s : pnamedindexobject);{$ifndef FPC}far;{$endif}
|
|
|
+(*
|
|
|
+ {$IFDEF NEWST}
|
|
|
+ procedure _initialize_local(s:tnamedindexitem);{$IFNDEF FPC}far;{$ENDIF}
|
|
|
+
|
|
|
+ begin
|
|
|
+ if typeof(s^)=typeof(Tparamsym) then
|
|
|
+ cg^.g_incr_data(_list,tsym(s))
|
|
|
+ else
|
|
|
+ cg^.g_initialize_data(_list,tsym(s));
|
|
|
+ end;
|
|
|
+
|
|
|
+ procedure _finalize_data(s : tnamedindexitem);{$ifndef FPC}far;{$endif}
|
|
|
+
|
|
|
+ begin
|
|
|
+ if typeof(s^)=typeof(Tvarsym) then
|
|
|
+ cg^.g_finalize_data(_list,s);
|
|
|
+ end;
|
|
|
+
|
|
|
+ {$ELSE}
|
|
|
+ procedure _finalize_data(s : tnamedindexitem);{$ifndef FPC}far;{$endif}
|
|
|
|
|
|
begin
|
|
|
cg^.g_finalize_data(_list,s);
|
|
|
end;
|
|
|
|
|
|
- procedure _incr_data(s : pnamedindexobject);{$ifndef FPC}far;{$endif}
|
|
|
+ procedure _incr_data(s : tnamedindexitem);{$ifndef FPC}far;{$endif}
|
|
|
|
|
|
begin
|
|
|
cg^.g_incr_data(_list,tsym(s));
|
|
|
end;
|
|
|
|
|
|
- procedure _initialize_data(s : pnamedindexobject);{$ifndef FPC}far;{$endif}
|
|
|
+ procedure _initialize_data(s : tnamedindexitem);{$ifndef FPC}far;{$endif}
|
|
|
|
|
|
begin
|
|
|
cg^.g_initialize_data(_list,tsym(s));
|
|
|
end;
|
|
|
+ {$ENDIF NEWST}
|
|
|
+*)
|
|
|
|
|
|
{ generates the entry code for a procedure }
|
|
|
- procedure tcg.g_entrycode(list : taasmoutput;const proc_names:Tstringcontainer;make_global:boolean;
|
|
|
- stackframe:longint;var parasize:longint;var nostackframe:boolean;
|
|
|
- inlined : boolean);
|
|
|
+ procedure tcg.g_entrycode(alist : TAAsmoutput;make_global:boolean;
|
|
|
+ stackframe:longint;
|
|
|
+ var parasize:longint;var nostackframe:boolean;
|
|
|
+ inlined : boolean);
|
|
|
+
|
|
|
+
|
|
|
+ {$IFDEF NEWST}
|
|
|
+ procedure _copyvalueparas(s:Pparamsym);{$ifndef FPC}far;{$endif}
|
|
|
+
|
|
|
+ begin
|
|
|
+ cg^.g_copyvalueparas(_list,s);
|
|
|
+ end;
|
|
|
+ {$ENDIF NEWST}
|
|
|
|
|
|
+(*
|
|
|
var
|
|
|
hs : string;
|
|
|
hp : pused_unit;
|
|
@@ -609,8 +748,10 @@ unit cgobj;
|
|
|
{$endif GDB}
|
|
|
hr : treference;
|
|
|
r : tregister;
|
|
|
+*)
|
|
|
|
|
|
begin
|
|
|
+(*
|
|
|
{ Align }
|
|
|
if (not inlined) then
|
|
|
begin
|
|
@@ -844,6 +985,8 @@ unit cgobj;
|
|
|
aktprocsym^.isstabwritten:=true;
|
|
|
end;
|
|
|
{$endif GDB}
|
|
|
+*)
|
|
|
+ runerror(211);
|
|
|
end;
|
|
|
|
|
|
procedure tcg.g_exitcode(list : taasmoutput;parasize:longint;nostackframe,inlined:boolean);
|
|
@@ -858,6 +1001,7 @@ unit cgobj;
|
|
|
r : tregister;
|
|
|
|
|
|
begin
|
|
|
+(*
|
|
|
if aktexitlabel^.is_used then
|
|
|
list^.insert(new(pai_label,init(aktexitlabel)));
|
|
|
|
|
@@ -927,7 +1071,7 @@ unit cgobj;
|
|
|
a_call_name(list,'FPC_POPADDRSTACK',0);
|
|
|
a_reg_alloc(list,accumulator);
|
|
|
g_pop_exception_value_reg(list,accumulator);
|
|
|
- a_cmp_reg_const_label(list,OS_32,OC_EQ,0,accumulator,noreraiselabel);
|
|
|
+ a_cmp_const_reg_label(list,OS_32,OC_EQ,0,accumulator,noreraiselabel);
|
|
|
a_reg_dealloc(list,accumulator);
|
|
|
|
|
|
{$IFDEF NEWST}
|
|
@@ -1086,279 +1230,260 @@ unit cgobj;
|
|
|
+aktprocsym^.definition^.mangledname+'_end'))));}
|
|
|
end;
|
|
|
{$endif GDB}
|
|
|
+*)
|
|
|
+ runerror(211);
|
|
|
end;
|
|
|
|
|
|
{*****************************************************************************
|
|
|
- some abstract definitions
|
|
|
+ some generic implementations
|
|
|
****************************************************************************}
|
|
|
|
|
|
- procedure tcg.a_call_name(list : taasmoutput;const s : string;
|
|
|
- offset : longint);
|
|
|
|
|
|
- begin
|
|
|
- abstract;
|
|
|
- end;
|
|
|
+ procedure tcg.a_load_const_ref(list : taasmoutput;size : tcgsize;a : aword;const ref : treference);
|
|
|
|
|
|
- procedure tcg.g_stackframe_entry(list : taasmoutput;localsize : longint);
|
|
|
+ var
|
|
|
+ tmpreg: tregister;
|
|
|
|
|
|
begin
|
|
|
- abstract;
|
|
|
+ tmpreg := get_scratch_reg(list);
|
|
|
+ a_load_const_reg(list,size,a,tmpreg);
|
|
|
+ a_load_reg_ref(list,size,tmpreg,ref);
|
|
|
+ free_scratch_reg(list,tmpreg);
|
|
|
end;
|
|
|
|
|
|
- procedure tcg.g_maybe_loadself(list : taasmoutput);
|
|
|
+ procedure tcg.a_load_loc_reg(list : taasmoutput;size : tcgsize;const loc: tlocation; reg : tregister);
|
|
|
|
|
|
begin
|
|
|
- abstract;
|
|
|
+ case loc.loc of
|
|
|
+ LOC_REFERENCE,LOC_MEM:
|
|
|
+ a_load_ref_reg(list,size,loc.reference,reg);
|
|
|
+ LOC_REGISTER,LOC_CREGISTER:
|
|
|
+ a_load_reg_reg(list,size,loc.register,reg);
|
|
|
+ else
|
|
|
+ internalerror(200109092);
|
|
|
+ end;
|
|
|
end;
|
|
|
|
|
|
- procedure tcg.g_restore_frame_pointer(list : taasmoutput);
|
|
|
|
|
|
- begin
|
|
|
- abstract;
|
|
|
- end;
|
|
|
+ procedure tcg.a_op_const_ref(list : taasmoutput; Op: TOpCG; size: TCGSize; a: AWord; const ref: TReference);
|
|
|
|
|
|
- procedure g_return_from_proc(list : taasmoutput;parasize : aword);
|
|
|
+ var
|
|
|
+ tmpreg: tregister;
|
|
|
|
|
|
begin
|
|
|
- abstract;
|
|
|
+ tmpreg := get_scratch_reg(list);
|
|
|
+ a_load_ref_reg(list,size,ref,tmpreg);
|
|
|
+ a_op_const_reg(list,op,a,tmpreg);
|
|
|
+ a_load_reg_ref(list,size,tmpreg,ref);
|
|
|
+ free_scratch_reg(list,tmpreg);
|
|
|
end;
|
|
|
|
|
|
- procedure tcg.a_loadaddress_ref_reg(list : taasmoutput;const ref : treference;r : tregister);
|
|
|
-
|
|
|
- begin
|
|
|
- abstract;
|
|
|
- end;
|
|
|
|
|
|
- procedure tcg.g_push_exception_value_reg(list : taasmoutput;reg : tregister);
|
|
|
+ procedure tcg.a_op_const_loc(list : taasmoutput; Op: TOpCG; size: TCGSize; a: AWord; const loc: tlocation);
|
|
|
|
|
|
begin
|
|
|
- abstract;
|
|
|
+ case loc.loc of
|
|
|
+ LOC_REGISTER, LOC_CREGISTER:
|
|
|
+ a_op_const_reg(list,op,a,loc.register);
|
|
|
+ LOC_REFERENCE, LOC_MEM:
|
|
|
+ a_op_const_ref(list,op,size,a,loc.reference);
|
|
|
+ else
|
|
|
+ internalerror(200109061);
|
|
|
+ end;
|
|
|
end;
|
|
|
|
|
|
- procedure tcg.g_push_exception_value_const(list : taasmoutput;reg : tregister);
|
|
|
|
|
|
- begin
|
|
|
- abstract;
|
|
|
- end;
|
|
|
+ procedure tcg.a_op_reg_ref(list : taasmoutput; Op: TOpCG; size: TCGSize;reg: TRegister; const ref: TReference);
|
|
|
|
|
|
- procedure tcg.g_pop_exception_value_reg(list : taasmoutput;reg : tregister);
|
|
|
+ var
|
|
|
+ tmpreg: tregister;
|
|
|
|
|
|
begin
|
|
|
- abstract;
|
|
|
+ tmpreg := get_scratch_reg(list);
|
|
|
+ a_load_ref_reg(list,size,ref,tmpreg);
|
|
|
+ a_op_reg_reg(list,op,size,reg,tmpreg);
|
|
|
+ a_load_reg_ref(list,size,tmpreg,ref);
|
|
|
+ free_scratch_reg(list,tmpreg);
|
|
|
end;
|
|
|
|
|
|
- procedure tcg.a_load_const_reg(list : taasmoutput;size : tcgsize;a : aword;register : tregister);
|
|
|
|
|
|
- begin
|
|
|
- abstract;
|
|
|
- end;
|
|
|
+ procedure tcg.a_op_ref_reg(list : taasmoutput; Op: TOpCG; size: TCGSize; const ref: TReference; reg: TRegister);
|
|
|
|
|
|
- procedure tcg.a_load_reg_ref(list : taasmoutput;size : tcgsize;register : tregister;const ref : treference);
|
|
|
+ var
|
|
|
+ tmpreg: tregister;
|
|
|
|
|
|
begin
|
|
|
- abstract;
|
|
|
+ case op of
|
|
|
+ OP_NOT,OP_NEG:
|
|
|
+ { handle it as "load ref,reg; op reg" }
|
|
|
+ begin
|
|
|
+ a_load_ref_reg(list,size,ref,reg);
|
|
|
+ a_op_reg_reg(list,op,size,reg,reg);
|
|
|
+ end;
|
|
|
+ else
|
|
|
+ begin
|
|
|
+ tmpreg := get_scratch_reg(list);
|
|
|
+ a_load_ref_reg(list,size,ref,tmpreg);
|
|
|
+ a_op_reg_reg(list,op,size,tmpreg,reg);
|
|
|
+ free_scratch_reg(list,tmpreg);
|
|
|
+ end;
|
|
|
+ end;
|
|
|
end;
|
|
|
|
|
|
- procedure tcg.a_load_ref_reg(list : taasmoutput;size : tcgsize;const ref : treference;register : tregister);
|
|
|
-
|
|
|
- begin
|
|
|
- abstract;
|
|
|
- end;
|
|
|
|
|
|
- procedure tcg.a_load_reg_reg(list : taasmoutput;size : tcgsize;reg1,reg2 : tregister);
|
|
|
+ procedure tcg.a_op_reg_loc(list : taasmoutput; Op: TOpCG; size: TCGSize; reg: tregister; const loc: tlocation);
|
|
|
|
|
|
begin
|
|
|
- abstract;
|
|
|
+ case loc.loc of
|
|
|
+ LOC_REGISTER, LOC_CREGISTER:
|
|
|
+ a_op_reg_reg(list,op,size,reg,loc.register);
|
|
|
+ LOC_REFERENCE, LOC_MEM:
|
|
|
+ a_op_reg_ref(list,op,size,reg,loc.reference);
|
|
|
+ else
|
|
|
+ internalerror(200109061);
|
|
|
+ end;
|
|
|
end;
|
|
|
|
|
|
- procedure tcg.a_cmp_reg_const_label(list : taasmoutput;size : tcgsize;cmp_op : topcmp;a : aword;reg : tregister;
|
|
|
- l : tasmlabel);
|
|
|
|
|
|
- begin
|
|
|
- abstract;
|
|
|
- end;
|
|
|
+ procedure tcg.a_op_ref_loc(list : taasmoutput; Op: TOpCG; size: TCGSize; const ref: TReference; const loc: tlocation);
|
|
|
|
|
|
- procedure tcg.a_cmp_reg_reg_label(list : taasmoutput;size : tcgsize;cmp_op : topcmp;reg1,reg2 : tregister;l : tasmlabel);
|
|
|
+ var
|
|
|
+ tmpreg: tregister;
|
|
|
|
|
|
begin
|
|
|
- abstract;
|
|
|
+ case loc.loc of
|
|
|
+ LOC_REGISTER,LOC_CREGISTER:
|
|
|
+ a_op_ref_reg(list,op,size,ref,loc.register);
|
|
|
+ LOC_REFERENCE,LOC_MEM:
|
|
|
+ begin
|
|
|
+ tmpreg := get_scratch_reg(list);
|
|
|
+{$ifdef i386}
|
|
|
+ makeregsize(tmpreg,size);
|
|
|
+{$endif i386}
|
|
|
+ a_load_ref_reg(list,size,ref,tmpreg);
|
|
|
+ a_op_reg_ref(list,op,size,tmpreg,loc.reference);
|
|
|
+ free_scratch_reg(list,tmpreg);
|
|
|
+ end;
|
|
|
+ else
|
|
|
+ internalerror(200109061);
|
|
|
+ end;
|
|
|
end;
|
|
|
|
|
|
- procedure tcg.a_cmp_reg_ref_label(list : taasmoutput;size : tcgsize;cmp_op : topcmp;reg : tregister;l : tasmlabel);
|
|
|
-
|
|
|
- begin
|
|
|
- abstract;
|
|
|
- end;
|
|
|
|
|
|
- procedure tcg.a_cmp_ref_const_label(list : taasmoutput;size : tcgsize;cmp_op : topcmp;a : aword;reg : tregister;
|
|
|
+ procedure tcg.a_cmp_const_ref_label(list : taasmoutput;size : tcgsize;cmp_op : topcmp;a : aword;const ref : treference;
|
|
|
l : tasmlabel);
|
|
|
|
|
|
- begin
|
|
|
- abstract;
|
|
|
- end;
|
|
|
-
|
|
|
- procedure tcg.a_jmp_cond(list : taasmoutput;cond : TOpCmp;l: tasmlabel);
|
|
|
+ var
|
|
|
+ tmpreg: tregister;
|
|
|
|
|
|
begin
|
|
|
- abstract;
|
|
|
+ tmpreg := get_scratch_reg(list);
|
|
|
+ a_load_ref_reg(list,size,ref,tmpreg);
|
|
|
+ a_cmp_const_reg_label(list,size,cmp_op,a,tmpreg,l);
|
|
|
+ free_scratch_reg(list,tmpreg);
|
|
|
end;
|
|
|
|
|
|
- procedure tcg.g_return_from_proc(list : taasmoutput;parasize : aword);
|
|
|
+ procedure tcg.a_cmp_const_loc_label(list : taasmoutput;size : tcgsize;cmp_op : topcmp;a : aword;const loc : tlocation;
|
|
|
+ l : tasmlabel);
|
|
|
|
|
|
begin
|
|
|
- abstract;
|
|
|
+ case loc.loc of
|
|
|
+ LOC_REGISTER,LOC_CREGISTER:
|
|
|
+ a_cmp_const_reg_label(list,size,cmp_op,a,loc.register,l);
|
|
|
+ LOC_REFERENCE,LOC_MEM:
|
|
|
+ a_cmp_const_ref_label(list,size,cmp_op,a,loc.reference,l);
|
|
|
+ else
|
|
|
+ internalerror(200109061);
|
|
|
+ end;
|
|
|
end;
|
|
|
|
|
|
- procedure tcg.a_param_reg(list : taasmoutput;size : tcgsize;r : tregister;nr : longint);
|
|
|
+ procedure tcg.a_cmp_ref_reg_label(list : taasmoutput;size : tcgsize;cmp_op : topcmp; const ref: treference; reg : tregister; l : tasmlabel);
|
|
|
+
|
|
|
+ var
|
|
|
+ tmpreg: tregister;
|
|
|
|
|
|
begin
|
|
|
- abstract;
|
|
|
+ tmpreg := get_scratch_reg(list);
|
|
|
+ a_load_ref_reg(list,size,ref,tmpreg);
|
|
|
+ a_cmp_reg_reg_label(list,size,cmp_op,tmpreg,reg,l);
|
|
|
+ free_scratch_reg(list,tmpreg);
|
|
|
end;
|
|
|
|
|
|
- procedure tcg.a_paramaddr_ref(list : taasmoutput;const r : treference;nr : longint);
|
|
|
+ procedure tcg.a_cmp_ref_loc_label(list : taasmoutput;size : tcgsize;cmp_op : topcmp;const ref: treference;const loc : tlocation;
|
|
|
+ l : tasmlabel);
|
|
|
+
|
|
|
+ var
|
|
|
+ tmpreg: tregister;
|
|
|
|
|
|
begin
|
|
|
- abstract;
|
|
|
+ case loc.loc of
|
|
|
+ LOC_REGISTER,LOC_CREGISTER:
|
|
|
+ a_cmp_ref_reg_label(list,size,cmp_op,ref,loc.register,l);
|
|
|
+ LOC_REFERENCE,LOC_MEM:
|
|
|
+ begin
|
|
|
+{$ifdef i386}
|
|
|
+ { the following is done with defines to avoid a speed penalty, }
|
|
|
+ { since all this is only necessary for the 80x86 (because EDI }
|
|
|
+ { doesn't have an 8bit component which is directly addressable) }
|
|
|
+ if size in [OS_8,OS_S8] then
|
|
|
+ tmpreg := getregister32
|
|
|
+ else
|
|
|
+{$endif i386}
|
|
|
+ tmpreg := get_scratch_reg(list);
|
|
|
+{$ifdef i386}
|
|
|
+ makeregsize(tmpreg,size);
|
|
|
+{$endif i386}
|
|
|
+ a_load_ref_reg(list,size,loc.reference,tmpreg);
|
|
|
+ a_cmp_ref_reg_label(list,size,cmp_op,ref,tmpreg,l);
|
|
|
+{$ifdef i386}
|
|
|
+ if makereg32(tmpreg) <> R_EDI then
|
|
|
+ ungetregister(tmpreg)
|
|
|
+ else
|
|
|
+{$endif i386}
|
|
|
+ free_scratch_reg(list,tmpreg);
|
|
|
+ end
|
|
|
+ else
|
|
|
+ internalerror(200109061);
|
|
|
+ end;
|
|
|
end;
|
|
|
|
|
|
+finalization
|
|
|
+ cg.free;
|
|
|
end.
|
|
|
{
|
|
|
$Log$
|
|
|
- Revision 1.1 2001-08-26 13:36:37 florian
|
|
|
+ Revision 1.2 2001-09-28 20:39:32 jonas
|
|
|
+ * changed all flow control structures (except for exception handling
|
|
|
+ related things) to processor independent code (in new ncgflw unit)
|
|
|
+ + generic cgobj unit which contains lots of code generator helpers with
|
|
|
+ global "cg" class instance variable
|
|
|
+ + cgcpu unit for i386 (implements processor specific routines of the above
|
|
|
+ unit)
|
|
|
+ * updated cgbase and cpubase for the new code generator units
|
|
|
+ * include ncgflw unit in cpunode unit
|
|
|
+
|
|
|
+ Revision 1.5 2001/09/09 17:10:26 jonas
|
|
|
+ * some more things implemented
|
|
|
+
|
|
|
+ Revision 1.4 2001/09/06 15:25:55 jonas
|
|
|
+ * changed type of tcg from object to class -> abstract methods are now
|
|
|
+ a lot cleaner :)
|
|
|
+ + more updates: load_*_loc methods, op_*_* methods, g_flags2reg method
|
|
|
+ (if possible with geenric implementation and necessary ppc
|
|
|
+ implementations)
|
|
|
+ * worked a bit further on cgflw, now working on exitnode
|
|
|
+
|
|
|
+ Revision 1.3 2001/09/05 20:21:03 jonas
|
|
|
+ * new cgflow based on n386flw with all nodes until forn "translated"
|
|
|
+ + a_cmp_loc_*_label methods for tcg
|
|
|
+ + base implementatino for a_cmp_ref_*_label methods
|
|
|
+ * small bugfixes to powerpc cg
|
|
|
+
|
|
|
+ Revision 1.2 2001/08/26 13:37:04 florian
|
|
|
* some cg reorganisation
|
|
|
* some PPC updates
|
|
|
|
|
|
Revision 1.1 2000/07/13 06:30:07 michael
|
|
|
+ Initial import
|
|
|
|
|
|
- Revision 1.38 2000/04/29 09:01:06 jonas
|
|
|
- * nmem compiles again (at least for powerpc)
|
|
|
-
|
|
|
- Revision 1.37 2000/04/22 14:25:03 jonas
|
|
|
- * aasm.pas: pai_align instead of pai_align_abstract if cpu <> i386
|
|
|
- + systems.pas: info for macos/ppc
|
|
|
- * new/cgobj.pas: compiles again without newst define
|
|
|
- * new/powerpc/cgcpu: generate different entry/exit code depending on
|
|
|
- whether target_os is MacOs or Linux
|
|
|
-
|
|
|
- Revision 1.36 2000/03/11 21:11:24 daniel
|
|
|
- * Ported hcgdata to new symtable.
|
|
|
- * Alignment code changed as suggested by Peter
|
|
|
- + Usage of my is operator replacement, is_object
|
|
|
-
|
|
|
- Revision 1.35 2000/03/01 15:36:13 florian
|
|
|
- * some new stuff for the new cg
|
|
|
-
|
|
|
- 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
|
|
|
-
|
|
|
- Revision 1.32 1999/12/01 12:42:33 peter
|
|
|
- * fixed bug 698
|
|
|
- * removed some notes about unused vars
|
|
|
-
|
|
|
- Revision 1.31 1999/11/05 13:15:00 florian
|
|
|
- * some fixes to get the new cg compiling again
|
|
|
-
|
|
|
- Revision 1.30 1999/11/05 07:05:56 jonas
|
|
|
- + a_jmp_cond()
|
|
|
-
|
|
|
- Revision 1.29 1999/10/21 16:41:41 florian
|
|
|
- * problems with readln fixed: esi wasn't restored correctly when
|
|
|
- reading ordinal fields of objects futher the register allocation
|
|
|
- didn't take care of the extra register when reading ordinal values
|
|
|
- * enumerations can now be used in constant indexes of properties
|
|
|
-
|
|
|
- Revision 1.28 1999/10/12 21:20:46 florian
|
|
|
- * new codegenerator compiles again
|
|
|
-
|
|
|
- Revision 1.27 1999/09/29 11:46:20 florian
|
|
|
- * fixed bug 292 from bugs directory
|
|
|
-
|
|
|
- Revision 1.26 1999/09/14 11:16:09 florian
|
|
|
- * only small updates to work with the current compiler
|
|
|
-
|
|
|
- Revision 1.25 1999/09/03 13:09:09 jonas
|
|
|
- * fixed typo regarding scratchregs pointer
|
|
|
-
|
|
|
- Revision 1.24 1999/08/26 14:51:54 jonas
|
|
|
- * changed get_scratch_reg so it actually uses the
|
|
|
- scratch_reg_array_pointer
|
|
|
-
|
|
|
- Revision 1.23 1999/08/25 12:00:11 jonas
|
|
|
- * changed pai386, paippc and paiapha (same for tai*) to paicpu (taicpu)
|
|
|
-
|
|
|
- Revision 1.22 1999/08/18 17:05:55 florian
|
|
|
- + implemented initilizing of data for the new code generator
|
|
|
- so it should compile now simple programs
|
|
|
-
|
|
|
- Revision 1.21 1999/08/07 14:21:08 florian
|
|
|
- * some small problems fixed
|
|
|
-
|
|
|
- Revision 1.20 1999/08/06 18:05:52 florian
|
|
|
- * implemented some stuff for assignments
|
|
|
-
|
|
|
- Revision 1.19 1999/08/06 17:00:54 florian
|
|
|
- + definition of concatcopy
|
|
|
-
|
|
|
- Revision 1.18 1999/08/06 16:37:45 jonas
|
|
|
- * completed bugfix done by Florian o I wouldn't get conflicts :)
|
|
|
-
|
|
|
- Revision 1.17 1999/08/06 16:27:26 florian
|
|
|
- * for Jonas: else he will get conflicts
|
|
|
-
|
|
|
- Revision 1.16 1999/08/06 16:04:05 michael
|
|
|
- + introduced tainstruction
|
|
|
-
|
|
|
- Revision 1.15 1999/08/06 15:53:50 florian
|
|
|
- * made the alpha version compilable
|
|
|
-
|
|
|
- Revision 1.14 1999/08/06 14:15:51 florian
|
|
|
- * made the alpha version compilable
|
|
|
-
|
|
|
- Revision 1.13 1999/08/06 13:26:50 florian
|
|
|
- * more changes ...
|
|
|
-
|
|
|
- Revision 1.12 1999/08/05 17:10:56 florian
|
|
|
- * some more additions, especially procedure
|
|
|
- exit code generation
|
|
|
-
|
|
|
- Revision 1.11 1999/08/05 14:58:11 florian
|
|
|
- * some fixes for the floating point registers
|
|
|
- * more things for the new code generator
|
|
|
-
|
|
|
- Revision 1.10 1999/08/04 00:23:52 florian
|
|
|
- * renamed i386asm and i386base to cpuasm and cpubase
|
|
|
-
|
|
|
- Revision 1.9 1999/08/02 23:13:21 florian
|
|
|
- * more changes to compile for the Alpha
|
|
|
-
|
|
|
- Revision 1.8 1999/08/02 17:14:07 florian
|
|
|
- + changed the temp. generator to an object
|
|
|
-
|
|
|
- Revision 1.7 1999/08/01 23:05:55 florian
|
|
|
- * changes to compile with FPC
|
|
|
-
|
|
|
- Revision 1.6 1999/08/01 18:22:33 florian
|
|
|
- * made it again compilable
|
|
|
-
|
|
|
- Revision 1.5 1999/01/23 23:29:46 florian
|
|
|
- * first running version of the new code generator
|
|
|
- * when compiling exceptions under Linux fixed
|
|
|
-
|
|
|
- Revision 1.4 1999/01/13 22:52:36 florian
|
|
|
- + YES, finally the new code generator is compilable, but it doesn't run yet :(
|
|
|
-
|
|
|
- Revision 1.3 1998/12/26 15:20:30 florian
|
|
|
- + more changes for the new version
|
|
|
-
|
|
|
- Revision 1.2 1998/12/15 22:18:55 florian
|
|
|
- * some code added
|
|
|
-
|
|
|
- Revision 1.1 1998/12/15 16:32:58 florian
|
|
|
- + first version, derived from old routines
|
|
|
-
|
|
|
}
|