123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256 |
- {
- Copyright (c) 2014 by Florian Klaempfl
- Symbol table overrides for x86
- 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 symx86;
- {$i fpcdefs.inc}
- interface
- uses
- globtype, cclasses,
- symconst, symtype,symdef,symsym;
- type
- tx86pointerdef = class(tpointerdef)
- protected
- procedure ppuload_platform(ppufile: tcompilerppufile); override;
- procedure ppuwrite_platform(ppufile: tcompilerppufile); override;
- public
- x86pointertyp : tx86pointertyp;
- constructor create(def: tdef); override;
- constructor createx86(def:tdef;x86typ:tx86pointertyp);virtual;
- function size: asizeint; override;
- function getcopy: tstoreddef; override;
- function GetTypeName: string; override;
- class function default_x86_data_pointer_type: tx86pointertyp; virtual;
- end;
- tx86pointerdefclass = class of tx86pointerdef;
- tx86PtrDefKey = packed record
- def: tdef;
- x86typ:tx86pointertyp;
- end;
- { tx86PtrDefHashSet }
- tx86PtrDefHashSet = class(TPtrDefHashSet)
- private
- class procedure Key2FullKey(Key: Pointer; out FullKey: tx86PtrDefKey);
- public
- function Find(Key: Pointer; KeyLen: Integer): PHashSetItem;override;
- function FindOrAdd(Key: Pointer; KeyLen: Integer;
- var Found: Boolean): PHashSetItem;override;
- function FindOrAdd(Key: Pointer; KeyLen: Integer): PHashSetItem;override;
- function Get(Key: Pointer; KeyLen: Integer): TObject;override;
- end;
- { returns a pointerdef for def, reusing an existing one in case it exists
- in the current module }
- function getx86pointerdef(def: tdef;x86typ:tx86pointertyp): tpointerdef;
- implementation
- uses
- globals, verbose,
- symbase, fmodule;
- function getx86pointerdef(def: tdef;x86typ:tx86pointertyp): tpointerdef;
- var
- res: PHashSetItem;
- oldsymtablestack: tsymtablestack;
- key: tx86PtrDefKey;
- begin
- if not assigned(current_module) then
- internalerror(2011071101);
- key.def:=def;
- key.x86typ:=x86typ;
- res:=current_module.ptrdefs.FindOrAdd(@key,sizeof(key));
- if not assigned(res^.Data) then
- begin
- { since these pointerdefs can be reused anywhere in the current
- unit, add them to the global/staticsymtable }
- oldsymtablestack:=symtablestack;
- { do not simply push/pop current_module.localsymtable, because
- that can have side-effects (e.g., it removes helpers) }
- symtablestack:=nil;
- res^.Data:=tx86pointerdefclass(cpointerdef).createx86(def,x86typ);
- if assigned(current_module.localsymtable) then
- current_module.localsymtable.insertdef(tdef(res^.Data))
- else
- current_module.globalsymtable.insertdef(tdef(res^.Data));
- symtablestack:=oldsymtablestack;
- end;
- result:=tpointerdef(res^.Data);
- end;
- {****************************************************************************
- tx86pointerdef
- ****************************************************************************}
- procedure tx86pointerdef.ppuload_platform(ppufile: tcompilerppufile);
- begin
- inherited;
- x86pointertyp:=tx86pointertyp(ppufile.getbyte);
- end;
- procedure tx86pointerdef.ppuwrite_platform(ppufile: tcompilerppufile);
- begin
- inherited;
- ppufile.putbyte(byte(x86pointertyp));
- end;
- constructor tx86pointerdef.create(def: tdef);
- begin
- inherited create(def);
- x86pointertyp := default_x86_data_pointer_type;
- end;
- constructor tx86pointerdef.createx86(def: tdef; x86typ: tx86pointertyp);
- begin
- tabstractpointerdef(self).create(pointerdef,def);
- x86pointertyp := x86typ;
- has_pointer_math:=cs_pointermath in current_settings.localswitches;
- end;
- function tx86pointerdef.size: asizeint;
- begin
- if x86pointertyp in [x86pt_far,x86pt_huge] then
- result:=sizeof(pint)+2
- else
- result:=inherited;
- end;
- function tx86pointerdef.getcopy: tstoreddef;
- begin
- result:=inherited;
- tx86pointerdef(result).x86pointertyp:=x86pointertyp;
- end;
- function tx86pointerdef.GetTypeName: string;
- begin
- result:=inherited;
- if x86pointertyp<>default_x86_data_pointer_type then
- begin
- case x86pointertyp of
- x86pt_near:
- result:=result+';near';
- x86pt_near_cs:
- result:=result+';near ''CS''';
- x86pt_near_ds:
- result:=result+';near ''DS''';
- x86pt_near_ss:
- result:=result+';near ''SS''';
- x86pt_near_es:
- result:=result+';near ''ES''';
- x86pt_near_fs:
- result:=result+';near ''FS''';
- x86pt_near_gs:
- result:=result+';near ''GS''';
- x86pt_far:
- result:=result+';far';
- x86pt_huge:
- result:=result+';huge';
- else
- internalerror(2013050301);
- end;
- end;
- end;
- class function tx86pointerdef.default_x86_data_pointer_type: tx86pointertyp;
- begin
- result:=x86pt_near;
- end;
- {****************************************************************************
- tx86PtrDefHashSet
- ****************************************************************************}
- class procedure tx86PtrDefHashSet.Key2FullKey(Key: Pointer; out FullKey: tx86PtrDefKey);
- type
- pdef=^tdef;
- begin
- FullKey.def:=pdef(Key)^;
- FullKey.x86typ:=tx86pointerdefclass(cpointerdef).default_x86_data_pointer_type;
- end;
- function tx86PtrDefHashSet.Find(Key: Pointer; KeyLen: Integer): PHashSetItem;
- var
- FullKey: tx86PtrDefKey;
- begin
- if KeyLen=SizeOf(tdef) then
- begin
- Key2FullKey(Key, FullKey);
- Result:=inherited Find(@FullKey, SizeOf(FullKey));
- end
- else
- Result:=inherited Find(Key, KeyLen);
- end;
- function tx86PtrDefHashSet.FindOrAdd(Key: Pointer; KeyLen: Integer; var Found: Boolean): PHashSetItem;
- var
- FullKey: tx86PtrDefKey;
- begin
- if KeyLen=SizeOf(tdef) then
- begin
- Key2FullKey(Key, FullKey);
- Result:=inherited FindOrAdd(@FullKey, SizeOf(FullKey), Found);
- end
- else
- Result:=inherited FindOrAdd(Key, KeyLen, Found);
- end;
- function tx86PtrDefHashSet.FindOrAdd(Key: Pointer; KeyLen: Integer): PHashSetItem;
- var
- FullKey: tx86PtrDefKey;
- begin
- if KeyLen=SizeOf(tdef) then
- begin
- Key2FullKey(Key, FullKey);
- Result:=inherited FindOrAdd(@FullKey, SizeOf(FullKey));
- end
- else
- Result:=inherited FindOrAdd(Key, KeyLen);
- end;
- function tx86PtrDefHashSet.Get(Key: Pointer; KeyLen: Integer): TObject;
- var
- FullKey: tx86PtrDefKey;
- begin
- if KeyLen=SizeOf(tdef) then
- begin
- Key2FullKey(Key, FullKey);
- Result:=inherited Get(@FullKey, SizeOf(FullKey));
- end
- else
- Result:=inherited Get(Key, KeyLen);
- end;
- end.
|