mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-27 08:13:42 +02:00
460 lines
14 KiB
ObjectPascal
460 lines
14 KiB
ObjectPascal
{
|
|
$Id$
|
|
Copyright (C) 1993-98 by Florian Klaempfl
|
|
|
|
This unit handles the temporary variables stuff for i386
|
|
|
|
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.
|
|
|
|
****************************************************************************
|
|
}
|
|
unit tgeni386;
|
|
|
|
interface
|
|
|
|
uses
|
|
cobjects,globals,tree,hcodegen,verbose,files,aasm
|
|
{$ifdef i386}
|
|
{$ifdef ag386bin}
|
|
,i386base,i386asm
|
|
{$else}
|
|
,i386
|
|
{$endif}
|
|
{$endif}
|
|
;
|
|
|
|
type
|
|
tregisterset = set of tregister;
|
|
|
|
tpushed = array[R_EAX..R_MM6] of boolean;
|
|
|
|
const
|
|
usablereg32 : byte = 4;
|
|
{$ifdef SUPPORT_MMX}
|
|
usableregmmx : byte = 8;
|
|
{$endif SUPPORT_MMX}
|
|
|
|
function getregister32 : tregister;
|
|
procedure ungetregister32(r : tregister);
|
|
{ tries to allocate the passed register, if possible }
|
|
function getexplicitregister32(r : tregister) : tregister;
|
|
{$ifdef SUPPORT_MMX}
|
|
function getregistermmx : tregister;
|
|
procedure ungetregistermmx(r : tregister);
|
|
{$endif SUPPORT_MMX}
|
|
|
|
procedure ungetregister(r : tregister);
|
|
|
|
procedure cleartempgen;
|
|
procedure del_reference(const ref : treference);
|
|
procedure del_locref(const location : tlocation);
|
|
|
|
|
|
{ pushs and restores registers }
|
|
procedure pushusedregisters(var pushed : tpushed;b : byte);
|
|
procedure popusedregisters(const pushed : tpushed);
|
|
|
|
procedure clearregistercount;
|
|
procedure resetusableregisters;
|
|
|
|
var
|
|
unused,usableregs : tregisterset;
|
|
c_usableregs : longint;
|
|
|
|
{ uses only 1 byte while a set uses in FPC 32 bytes }
|
|
usedinproc : byte;
|
|
|
|
{ count, how much a register must be pushed if it is used as register }
|
|
{ variable }
|
|
{$ifdef SUPPORT_MMX}
|
|
reg_pushes : array[R_EAX..R_MM6] of longint;
|
|
is_reg_var : array[R_EAX..R_MM6] of boolean;
|
|
{$else SUPPORT_MMX}
|
|
reg_pushes : array[R_EAX..R_EDI] of longint;
|
|
is_reg_var : array[R_EAX..R_EDI] of boolean;
|
|
{$endif SUPPORT_MMX}
|
|
|
|
|
|
implementation
|
|
|
|
uses
|
|
globtype;
|
|
|
|
procedure pushusedregisters(var pushed : tpushed;b : byte);
|
|
|
|
var
|
|
r : tregister;
|
|
{$ifdef SUPPORT_MMX}
|
|
hr : preference;
|
|
{$endif SUPPORT_MMX}
|
|
|
|
begin
|
|
usedinproc:=usedinproc or b;
|
|
for r:=R_EAX to R_EBX do
|
|
begin
|
|
pushed[r]:=false;
|
|
{ if the register is used by the calling subroutine }
|
|
if ((b and ($80 shr byte(r)))<>0) then
|
|
begin
|
|
{ and is present in use }
|
|
if not(r in unused) then
|
|
begin
|
|
{ then save it }
|
|
exprasmlist^.concat(new(pai386,op_reg(A_PUSH,S_L,r)));
|
|
{ here was a big problem !!!!!}
|
|
{ you cannot do that for a register that is
|
|
globally assigned to a var
|
|
this also means that you must push it much more
|
|
often, but there must be a better way
|
|
maybe by putting the value back to the stack !! }
|
|
if not(is_reg_var[r]) then
|
|
unused:=unused+[r];
|
|
pushed[r]:=true;
|
|
end;
|
|
end;
|
|
end;
|
|
{$ifdef SUPPORT_MMX}
|
|
for r:=R_MM0 to R_MM6 do
|
|
begin
|
|
pushed[r]:=false;
|
|
{ if the mmx register is in use, save it }
|
|
if not(r in unused) then
|
|
begin
|
|
exprasmlist^.concat(new(pai386,op_const_reg(
|
|
A_SUB,S_L,8,R_ESP)));
|
|
new(hr);
|
|
reset_reference(hr^);
|
|
hr^.base:=R_ESP;
|
|
exprasmlist^.concat(new(pai386,op_reg_ref(
|
|
A_MOVQ,S_NO,r,hr)));
|
|
if not(is_reg_var[r]) then
|
|
unused:=unused+[r];
|
|
pushed[r]:=true;
|
|
end;
|
|
end;
|
|
{$endif SUPPORT_MMX}
|
|
end;
|
|
|
|
procedure popusedregisters(const pushed : tpushed);
|
|
|
|
var
|
|
r : tregister;
|
|
{$ifdef SUPPORT_MMX}
|
|
hr : preference;
|
|
{$endif SUPPORT_MMX}
|
|
begin
|
|
{ restore in reverse order: }
|
|
{$ifdef SUPPORT_MMX}
|
|
for r:=R_MM6 downto R_MM0 do
|
|
begin
|
|
if pushed[r] then
|
|
begin
|
|
new(hr);
|
|
reset_reference(hr^);
|
|
hr^.base:=R_ESP;
|
|
exprasmlist^.concat(new(pai386,op_ref_reg(
|
|
A_MOVQ,S_NO,hr,r)));
|
|
exprasmlist^.concat(new(pai386,op_const_reg(
|
|
A_ADD,S_L,8,R_ESP)));
|
|
unused:=unused-[r];
|
|
end;
|
|
end;
|
|
{$endif SUPPORT_MMX}
|
|
for r:=R_EBX downto R_EAX do
|
|
if pushed[r] then
|
|
begin
|
|
exprasmlist^.concat(new(pai386,op_reg(A_POP,S_L,r)));
|
|
unused:=unused-[r];
|
|
end;
|
|
end;
|
|
|
|
procedure ungetregister(r : tregister);
|
|
|
|
begin
|
|
if r in [R_EAX,R_ECX,R_EDX,R_EBX,R_ESP,R_EBP,R_ESI,R_EDI] then
|
|
ungetregister32(r)
|
|
else if r in [R_AX,R_CX,R_DX,R_BX,R_SP,R_BP,R_SI,R_DI] then
|
|
ungetregister32(reg16toreg32(r))
|
|
else if r in [R_AL,R_BL,R_CL,R_DL] then
|
|
ungetregister32(reg8toreg32(r))
|
|
{$ifdef SUPPORT_MMX}
|
|
else if r in [R_MM0..R_MM6] then
|
|
ungetregistermmx(r)
|
|
{$endif SUPPORT_MMX}
|
|
else internalerror(18);
|
|
end;
|
|
|
|
procedure ungetregister32(r : tregister);
|
|
|
|
begin
|
|
if cs_regalloc in aktglobalswitches then
|
|
begin
|
|
{ takes much time }
|
|
if not(r in usableregs) then
|
|
exit;
|
|
unused:=unused+[r];
|
|
inc(usablereg32);
|
|
end
|
|
else
|
|
begin
|
|
if not(r in [R_EAX,R_EBX,R_ECX,R_EDX]) then
|
|
exit;
|
|
unused:=unused+[r];
|
|
inc(usablereg32);
|
|
end;
|
|
exprasmlist^.concat(new(pairegdealloc,init(r)));
|
|
end;
|
|
|
|
{$ifdef SUPPORT_MMX}
|
|
function getregistermmx : tregister;
|
|
|
|
var
|
|
r : tregister;
|
|
|
|
begin
|
|
dec(usableregmmx);
|
|
for r:=R_MM0 to R_MM6 do
|
|
if r in unused then
|
|
begin
|
|
unused:=unused-[r];
|
|
usedinproc:=usedinproc or ($80 shr byte(R_EAX));
|
|
getregistermmx:=r;
|
|
exit;
|
|
end;
|
|
internalerror(10);
|
|
end;
|
|
|
|
procedure ungetregistermmx(r : tregister);
|
|
|
|
begin
|
|
if cs_regalloc in aktglobalswitches then
|
|
begin
|
|
{ takes much time }
|
|
if not(r in usableregs) then
|
|
exit;
|
|
unused:=unused+[r];
|
|
inc(usableregmmx);
|
|
end
|
|
else
|
|
begin
|
|
unused:=unused+[r];
|
|
inc(usableregmmx);
|
|
end;
|
|
end;
|
|
{$endif SUPPORT_MMX}
|
|
|
|
procedure del_reference(const ref : treference);
|
|
|
|
begin
|
|
if ref.is_immediate then
|
|
exit;
|
|
ungetregister32(ref.base);
|
|
ungetregister32(ref.index);
|
|
end;
|
|
|
|
procedure del_locref(const location : tlocation);
|
|
|
|
begin
|
|
if (location.loc<>loc_mem) and (location.loc<>loc_reference) then
|
|
exit;
|
|
if location.reference.is_immediate then
|
|
exit;
|
|
ungetregister32(location.reference.base);
|
|
ungetregister32(location.reference.index);
|
|
{ ref.segment:=R_DEFAULT_SEG; }
|
|
end;
|
|
|
|
function getregister32 : tregister;
|
|
|
|
begin
|
|
if usablereg32=0 then
|
|
internalerror(10);
|
|
dec(usablereg32);
|
|
if R_EAX in unused then
|
|
begin
|
|
unused:=unused-[R_EAX];
|
|
usedinproc:=usedinproc or ($80 shr byte(R_EAX));
|
|
getregister32:=R_EAX;
|
|
exprasmlist^.concat(new(pairegalloc,init(R_EAX)));
|
|
end
|
|
else if R_EDX in unused then
|
|
begin
|
|
unused:=unused-[R_EDX];
|
|
usedinproc:=usedinproc or ($80 shr byte(R_EDX));
|
|
getregister32:=R_EDX;
|
|
exprasmlist^.concat(new(pairegalloc,init(R_EDX)));
|
|
end
|
|
else if R_EBX in unused then
|
|
begin
|
|
unused:=unused-[R_EBX];
|
|
usedinproc:=usedinproc or ($80 shr byte(R_EBX));
|
|
getregister32:=R_EBX;
|
|
exprasmlist^.concat(new(pairegalloc,init(R_EBX)));
|
|
end
|
|
else if R_ECX in unused then
|
|
begin
|
|
unused:=unused-[R_ECX];
|
|
usedinproc:=usedinproc or ($80 shr byte(R_ECX));
|
|
getregister32:=R_ECX;
|
|
exprasmlist^.concat(new(pairegalloc,init(R_ECX)));
|
|
end
|
|
else internalerror(10);
|
|
end;
|
|
|
|
function getexplicitregister32(r : tregister) : tregister;
|
|
|
|
begin
|
|
if r in unused then
|
|
begin
|
|
dec(usablereg32);
|
|
unused:=unused-[r];
|
|
usedinproc:=usedinproc or ($80 shr byte(r));
|
|
getexplicitregister32:=R_ECX;
|
|
exprasmlist^.concat(new(pairegalloc,init(r)));
|
|
getexplicitregister32:=r;
|
|
end
|
|
else
|
|
getexplicitregister32:=getregister32;
|
|
end;
|
|
|
|
procedure cleartempgen;
|
|
|
|
begin
|
|
unused:=usableregs;
|
|
usablereg32:=c_usableregs;
|
|
end;
|
|
|
|
|
|
procedure clearregistercount;
|
|
var
|
|
regi : tregister;
|
|
begin
|
|
{$ifdef SUPPORT_MMX}
|
|
for regi:=R_EAX to R_MM6 do
|
|
begin
|
|
reg_pushes[regi]:=0;
|
|
is_reg_var[regi]:=false;
|
|
end;
|
|
{$else SUPPORT_MMX}
|
|
for regi:=R_EAX to R_EDI do
|
|
begin
|
|
reg_pushes[regi]:=0;
|
|
is_reg_var[regi]:=false;
|
|
end;
|
|
{$endif SUPPORT_MMX}
|
|
end;
|
|
|
|
procedure resetusableregisters;
|
|
begin
|
|
{$ifdef SUPPORT_MMX}
|
|
usableregs:=[R_EAX,R_EBX,R_ECX,R_EDX,R_MM0..R_MM6];
|
|
c_usableregs:=4;
|
|
usableregmmx:=8;
|
|
{$else}
|
|
usableregs:=[R_EAX,R_EBX,R_ECX,R_EDX];
|
|
c_usableregs:=4;
|
|
{$endif SUPPORT_MMX}
|
|
end;
|
|
|
|
begin
|
|
resetusableregisters;
|
|
end.
|
|
{
|
|
$Log$
|
|
Revision 1.20 1999-02-25 21:02:55 peter
|
|
* ag386bin updates
|
|
+ coff writer
|
|
|
|
Revision 1.19 1999/02/22 02:15:58 peter
|
|
* updates for ag386bin
|
|
|
|
Revision 1.18 1999/01/18 16:02:20 pierre
|
|
* better error info with -Co
|
|
|
|
Revision 1.17 1998/12/11 23:36:09 florian
|
|
+ again more stuff for int64/qword:
|
|
- comparision operators
|
|
- code generation for: str, read(ln), write(ln)
|
|
|
|
Revision 1.16 1998/12/11 17:22:40 florian
|
|
* fixed previous commit bug fix of getexplicitregister32
|
|
(usableregs32 was decremented twice, thnaks Pierre for that hint)
|
|
|
|
Revision 1.15 1998/12/11 16:10:13 florian
|
|
+ shifting for 64 bit ints added
|
|
* bug in getexplicitregister32 fixed: usableregs wasn't decremented !!
|
|
|
|
Revision 1.14 1998/12/11 00:03:59 peter
|
|
+ globtype,tokens,version unit splitted from globals
|
|
|
|
Revision 1.13 1998/10/21 08:40:03 florian
|
|
+ ansistring operator +
|
|
+ $h and string[n] for n>255 added
|
|
* small problem with TP fixed
|
|
|
|
Revision 1.12 1998/09/20 17:11:24 jonas
|
|
* released REGALLOC
|
|
|
|
Revision 1.11 1998/09/16 17:58:33 jonas
|
|
* fixed -dRegAlloc and -dDRegalloc problems
|
|
|
|
Revision 1.10 1998/09/01 09:03:47 peter
|
|
+ resetregistercount, resetusableregisters
|
|
|
|
Revision 1.9 1998/08/19 16:07:56 jonas
|
|
* changed optimizer switches + cleanup of DestroyRefs in daopt386.pas
|
|
|
|
Revision 1.8 1998/08/10 14:50:34 peter
|
|
+ localswitches, moduleswitches, globalswitches splitting
|
|
|
|
Revision 1.7 1998/06/08 13:13:47 pierre
|
|
+ temporary variables now in temp_gen.pas unit
|
|
because it is processor independent
|
|
* mppc68k.bat modified to undefine i386 and support_mmx
|
|
(which are defaults for i386)
|
|
|
|
Revision 1.6 1998/05/20 09:42:38 pierre
|
|
+ UseTokenInfo now default
|
|
* unit in interface uses and implementation uses gives error now
|
|
* only one error for unknown symbol (uses lastsymknown boolean)
|
|
the problem came from the label code !
|
|
+ first inlined procedures and function work
|
|
(warning there might be allowed cases were the result is still wrong !!)
|
|
* UseBrower updated gives a global list of all position of all used symbols
|
|
with switch -gb
|
|
|
|
Revision 1.5 1998/05/11 13:07:58 peter
|
|
+ $ifdef NEWPPU for the new ppuformat
|
|
+ $define GDB not longer required
|
|
* removed all warnings and stripped some log comments
|
|
* no findfirst/findnext anymore to remove smartlink *.o files
|
|
|
|
Revision 1.4 1998/04/29 10:34:08 pierre
|
|
+ added some code for ansistring (not complete nor working yet)
|
|
* corrected operator overloading
|
|
* corrected nasm output
|
|
+ started inline procedures
|
|
+ added starstarn : use ** for exponentiation (^ gave problems)
|
|
+ started UseTokenInfo cond to get accurate positions
|
|
|
|
Revision 1.3 1998/04/09 22:16:36 florian
|
|
* problem with previous REGALLOC solved
|
|
* improved property support
|
|
|
|
Revision 1.2 1998/04/09 15:46:39 florian
|
|
+ register allocation tracing stuff added
|
|
}
|
|
|