123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284 |
- {
- $Id$
- Copyright (c) 1993-98 by the FPC development team
- Support routines for getting browser info in collections
- 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.
- ****************************************************************************
- }
- {$ifdef TP}
- {$N+,E+}
- {$endif}
- unit browcol;
- interface
- uses
- objects,symtable;
- const
- SymbolTypLen : integer = 6;
- RecordTypes : set of tsymtyp =
- ([typesym,unitsym,programsym]);
- sfRecord = $00000001;
- sfObject = $00000002;
- sfClass = $00000004;
- type
- TStoreCollection = object(TStringCollection)
- function Add(const S: string): PString;
- end;
- PModuleNameCollection = ^TModuleNameCollection;
- TModuleNameCollection = object(TStoreCollection)
- end;
- PTypeNameCollection = ^TTypeNameCollection;
- TTypeNameCollection = object(TStoreCollection)
- end;
- PSymbolCollection = ^TSymbolCollection;
- PSortedSymbolCollection = ^TSortedSymbolCollection;
- PReferenceCollection = ^TReferenceCollection;
- PReference = ^TReference;
- TReference = object(TObject)
- FileName : PString;
- Position : TPoint;
- constructor Init(AFileName: PString; ALine, AColumn: Sw_integer);
- function GetFileName: string;
- destructor Done; virtual;
- end;
- PSymbolMemInfo = ^TSymbolMemInfo;
- TSymbolMemInfo = record
- Addr : longint;
- LocalAddr : longint;
- Size : longint;
- PushSize : longint;
- end;
- PSymbol = ^TSymbol;
- TSymbol = object(TObject)
- Name : PString;
- Typ : tsymtyp;
- Params : PString;
- References : PReferenceCollection;
- Items : PSymbolCollection;
- DType : PString;
- VType : PString;
- ObjectID : longint;
- AncestorID : longint;
- Ancestor : PSymbol;
- Flags : longint;
- MemInfo : PSymbolMemInfo;
- constructor Init(const AName: string; ATyp: tsymtyp; AParams: string; AMemInfo: PSymbolMemInfo);
- procedure SetMemInfo(const AMemInfo: TSymbolMemInfo);
- function GetReferenceCount: Sw_integer;
- function GetReference(Index: Sw_integer): PReference;
- function GetItemCount: Sw_integer;
- function GetItem(Index: Sw_integer): PSymbol;
- function GetName: string;
- function GetText: string;
- function GetTypeName: string;
- destructor Done; virtual;
- end;
- PObjectSymbolCollection = ^TObjectSymbolCollection;
- PObjectSymbol = ^TObjectSymbol;
- TObjectSymbol = object(TObject)
- Parent : PObjectSymbol;
- Symbol : PSymbol;
- Expanded : boolean;
- constructor Init(AParent: PObjectSymbol; ASymbol: PSymbol);
- constructor InitName(const AName: string);
- function GetName: string;
- function GetDescendantCount: sw_integer;
- function GetDescendant(Index: sw_integer): PObjectSymbol;
- procedure AddDescendant(P: PObjectSymbol);
- destructor Done; virtual;
- private
- Name: PString;
- Descendants: PObjectSymbolCollection;
- end;
- TSymbolCollection = object(TSortedCollection)
- function At(Index: Sw_Integer): PSymbol;
- procedure Insert(Item: Pointer); virtual;
- function LookUp(const S: string; var Idx: sw_integer): string; virtual;
- end;
- TSortedSymbolCollection = object(TSymbolCollection)
- function Compare(Key1, Key2: Pointer): Sw_Integer; virtual;
- procedure Insert(Item: Pointer); virtual;
- function LookUp(const S: string; var Idx: sw_integer): string; virtual;
- end;
- PIDSortedSymbolCollection = ^TIDSortedSymbolCollection;
- TIDSortedSymbolCollection = object(TSymbolCollection)
- function Compare(Key1, Key2: Pointer): Sw_Integer; virtual;
- procedure Insert(Item: Pointer); virtual;
- function SearchSymbolByID(AID: longint): PSymbol;
- end;
- TObjectSymbolCollection = object(TSortedCollection)
- function Compare(Key1, Key2: Pointer): Sw_Integer; virtual;
- function LookUp(const S: string; var Idx: sw_integer): string; virtual;
- function At(Index: Sw_Integer): PObjectSymbol;
- end;
- TReferenceCollection = object(TCollection)
- function At(Index: Sw_Integer): PReference;
- end;
- const
- Modules : PSymbolCollection = nil;
- ModuleNames : PModuleNameCollection = nil;
- TypeNames : PTypeNameCollection = nil;
- ObjectTree : PObjectSymbol = nil;
- procedure DisposeBrowserCol;
- procedure NewBrowserCol;
- procedure CreateBrowserCol;
- procedure InitBrowserCol;
- procedure DoneBrowserCol;
- procedure BuildObjectInfo;
- function SearchObjectForSymbol(O: PSymbol): PObjectSymbol;
- implementation
- uses
- Drivers,Views,App,
- aasm,globtype,globals,files,comphook;
- {****************************************************************************
- Helpers
- ****************************************************************************}
- function GetStr(P: PString): string;
- begin
- if P=nil then
- GetStr:=''
- else
- GetStr:=P^;
- end;
- function IntToStr(L: longint): string;
- var S: string;
- begin
- Str(L,S);
- IntToStr:=S;
- end;
- function UpcaseStr(S: string): string;
- var I: integer;
- begin
- for I:=1 to length(S) do
- S[I]:=Upcase(S[I]);
- UpcaseStr:=S;
- end;
- function FloatToStr(E: extended): string;
- var S: string;
- begin
- Str(E:0:24,S);
- if Pos('.',S)>0 then
- begin
- while (length(S)>0) and (S[length(S)]='0') do
- Delete(S,length(S),1);
- if (length(S)>0) and (S[length(S)]='.') then
- Delete(S,length(S),1);
- end;
- if S='' then S:='0';
- FloatToStr:=S;
- end;
- {****************************************************************************
- TStoreCollection
- ****************************************************************************}
- function TStoreCollection.Add(const S: string): PString;
- var P: PString;
- Index: Sw_integer;
- begin
- if S='' then P:=nil else
- if Search(@S,Index) then P:=At(Index) else
- begin
- P:=NewStr(S);
- Insert(P);
- end;
- Add:=P;
- end;
- {****************************************************************************
- TSymbolCollection
- ****************************************************************************}
- function TSymbolCollection.At(Index: Sw_Integer): PSymbol;
- begin
- At:=inherited At(Index);
- end;
- procedure TSymbolCollection.Insert(Item: Pointer);
- begin
- TCollection.Insert(Item);
- end;
- function TSymbolCollection.LookUp(const S: string; var Idx: sw_integer): string;
- begin
- Idx:=-1;
- LookUp:='';
- end;
- {****************************************************************************
- TReferenceCollection
- ****************************************************************************}
- function TReferenceCollection.At(Index: Sw_Integer): PReference;
- begin
- At:=inherited At(Index);
- end;
- {****************************************************************************
- TSortedSymbolCollection
- ****************************************************************************}
- function TSortedSymbolCollection.Compare(Key1, Key2: Pointer): Sw_Integer;
- var K1: PSymbol absolute Key1;
- K2: PSymbol absolute Key2;
- R: Sw_integer;
- S1,S2: string;
- begin
- S1:=Upper(K1^.GetName);
- S2:=Upper(K2^.GetName);
- if S1<S2 then R:=-1 else
- if S1>S2 then R:=1 else
- R:=0;
- Compare:=R;
- end;
- procedure TSortedSymbolCollection.Insert(Item: Pointer);
- begin
- TSortedCollection.Insert(Item);
- end;
- function TSortedSymbolCollection.LookUp(const S: string; var Idx: sw_integer): string;
- var OLI,ORI,Left,Right,Mid: integer;
- LeftP,RightP,MidP: PSymbol;
- RL: integer;
- LeftS,MidS,RightS: string;
- FoundS: string;
- UpS : string;
- begin
- Idx:=-1; FoundS:='';
- Left:=0; Right:=Count-1;
- UpS:=Upper(S);
- if Left<Right then
- begin
- while (Left<Right) do
- begin
- OLI:=Left; ORI:=Right;
- Mid:=Left+(Right-Left) div 2;
- LeftP:=At(Left); RightP:=At(Right); MidP:=At(Mid);
- LeftS:=Upper(LeftP^.GetName); MidS:=Upper(MidP^.GetName);
- RightS:=Upper(RightP^.GetName);
- if copy(MidS,1,length(UpS))=UpS then
- begin
- Idx:=Mid; FoundS:=copy(MidS,1,length(S));
- end;
- { else}
- if UpS<MidS then
- Right:=Mid
- else
- Left:=Mid;
- if (OLI=Left) and (ORI=Right) then
- Break;
- end;
- end;
- LookUp:=FoundS;
- end;
- {****************************************************************************
- TIDSortedSymbolCollection
- ****************************************************************************}
- function TIDSortedSymbolCollection.Compare(Key1, Key2: Pointer): Sw_Integer;
- var K1: PSymbol absolute Key1;
- K2: PSymbol absolute Key2;
- R: Sw_integer;
- begin
- if K1^.ObjectID<K2^.ObjectID then R:=-1 else
- if K1^.ObjectID>K2^.ObjectID then R:=1 else
- R:=0;
- Compare:=R;
- end;
- procedure TIDSortedSymbolCollection.Insert(Item: Pointer);
- begin
- TSortedCollection.Insert(Item);
- end;
- function TIDSortedSymbolCollection.SearchSymbolByID(AID: longint): PSymbol;
- var S: TSymbol;
- Index: sw_integer;
- P: PSymbol;
- begin
- S.ObjectID:=AID;
- if Search(@S,Index)=false then P:=nil else
- P:=At(Index);
- SearchSymbolByID:=P;
- end;
- {****************************************************************************
- TObjectSymbolCollection
- ****************************************************************************}
- function TObjectSymbolCollection.At(Index: Sw_Integer): PObjectSymbol;
- begin
- At:=inherited At(Index);
- end;
- function TObjectSymbolCollection.Compare(Key1, Key2: Pointer): Sw_Integer;
- var K1: PObjectSymbol absolute Key1;
- K2: PObjectSymbol absolute Key2;
- R: Sw_integer;
- S1,S2: string;
- begin
- S1:=Upper(K1^.GetName);
- S2:=Upper(K2^.GetName);
- if S1<S2 then R:=-1 else
- if S1>S2 then R:=1 else
- R:=0;
- Compare:=R;
- end;
- function TObjectSymbolCollection.LookUp(const S: string; var Idx: sw_integer): string;
- var OLI,ORI,Left,Right,Mid: integer;
- LeftP,RightP,MidP: PObjectSymbol;
- RL: integer;
- LeftS,MidS,RightS: string;
- FoundS: string;
- UpS : string;
- begin
- Idx:=-1; FoundS:='';
- Left:=0; Right:=Count-1;
- UpS:=Upper(S);
- if Left<Right then
- begin
- while (Left<Right) do
- begin
- OLI:=Left; ORI:=Right;
- Mid:=Left+(Right-Left) div 2;
- LeftP:=At(Left); RightP:=At(Right); MidP:=At(Mid);
- LeftS:=Upper(LeftP^.GetName); MidS:=Upper(MidP^.GetName);
- RightS:=Upper(RightP^.GetName);
- if copy(MidS,1,length(UpS))=UpS then
- begin
- Idx:=Mid; FoundS:=copy(MidS,1,length(S));
- end;
- { else}
- if UpS<MidS then
- Right:=Mid
- else
- Left:=Mid;
- if (OLI=Left) and (ORI=Right) then
- Break;
- end;
- end;
- LookUp:=FoundS;
- end;
- {****************************************************************************
- TReference
- ****************************************************************************}
- constructor TReference.Init(AFileName: PString; ALine, AColumn: Sw_integer);
- begin
- inherited Init;
- FileName:=AFileName;
- Position.X:=AColumn;
- Position.Y:=ALine;
- end;
- function TReference.GetFileName: string;
- begin
- GetFileName:=GetStr(FileName);
- end;
- destructor TReference.Done;
- begin
- inherited Done;
- end;
- {****************************************************************************
- TSymbol
- ****************************************************************************}
- constructor TSymbol.Init(const AName: string; ATyp: tsymtyp; AParams: string; AMemInfo: PSymbolMemInfo);
- begin
- inherited Init;
- Name:=NewStr(AName); Typ:=ATyp;
- if AMemInfo<>nil then
- SetMemInfo(AMemInfo^);
- New(References, Init(20,50));
- if ATyp in RecordTypes then
- begin
- Items:=New(PSortedSymbolCollection, Init(50,100));
- end;
- end;
- procedure TSymbol.SetMemInfo(const AMemInfo: TSymbolMemInfo);
- begin
- if MemInfo=nil then New(MemInfo);
- Move(AMemInfo,MemInfo^,SizeOf(MemInfo^));
- end;
- function TSymbol.GetReferenceCount: Sw_integer;
- var Count: Sw_integer;
- begin
- if References=nil then Count:=0 else
- Count:=References^.Count;
- GetReferenceCount:=Count;
- end;
- function TSymbol.GetReference(Index: Sw_integer): PReference;
- begin
- GetReference:=References^.At(Index);
- end;
- function TSymbol.GetItemCount: Sw_integer;
- var Count: Sw_integer;
- begin
- if Items=nil then Count:=0 else
- Count:=Items^.Count;
- GetItemCount:=Count;
- end;
- function TSymbol.GetItem(Index: Sw_integer): PSymbol;
- begin
- GetItem:=Items^.At(Index);
- end;
- function TSymbol.GetName: string;
- begin
- GetName:=GetStr(Name);
- end;
- function TSymbol.GetText: string;
- var S: string;
- I: Sw_integer;
- begin
- S:=GetTypeName;
- if length(S)>SymbolTypLen then
- S:=Copy(S,1,SymbolTypLen)
- else
- begin
- while length(S)<SymbolTypLen do
- S:=S+' ';
- end;
- S:=S+' '+GetName;
- if (Flags and sfRecord)<>0 then
- S:=S+' = record'
- else
- if (Flags and sfObject)<>0 then
- begin
- S:=S+' = ';
- if (Flags and sfClass)<>0 then
- S:=S+'class'
- else
- S:=S+'object';
- if Ancestor<>nil then
- S:=S+'('+Ancestor^.GetName+')';
- end
- else
- begin
- if Assigned(DType) then
- S:=S+' = '+DType^;
- if Assigned(Params) then
- S:=S+'('+Params^+')';
- if Assigned(VType) then
- S:=S+': '+VType^;
- end;
- GetText:=S;
- end;
- function TSymbol.GetTypeName: string;
- var S: string;
- begin
- case Typ of
- abstractsym : S:='abst';
- varsym : S:='var';
- typesym : S:='type';
- procsym : if VType=nil then
- S:='proc'
- else
- S:='func';
- unitsym : S:='unit';
- programsym : S:='prog';
- constsym : S:='const';
- enumsym : S:='enum';
- typedconstsym: S:='const';
- errorsym : S:='error';
- syssym : S:='sys';
- labelsym : S:='label';
- absolutesym : S:='abs';
- propertysym : S:='prop';
- funcretsym : S:='func';
- macrosym : S:='macro';
- else S:='';
- end;
- GetTypeName:=S;
- end;
- destructor TSymbol.Done;
- begin
- inherited Done;
- if assigned(MemInfo) then
- Dispose(MemInfo);
- if assigned(References) then
- Dispose(References, Done);
- if assigned(Items) then
- Dispose(Items, Done);
- if assigned(Name) then
- DisposeStr(Name);
- { if assigned(Params) then
- DisposeStr(Params);
- if assigned(VType) then
- DisposeStr(VType);
- if assigned(DType) then
- DisposeStr(DType);
- if assigned(Ancestor) then
- DisposeStr(Ancestor);}
- end;
- constructor TObjectSymbol.Init(AParent: PObjectSymbol; ASymbol: PSymbol);
- begin
- inherited Init;
- Parent:=AParent;
- Symbol:=ASymbol;
- end;
- constructor TObjectSymbol.InitName(const AName: string);
- begin
- inherited Init;
- Name:=NewStr(AName);
- end;
- function TObjectSymbol.GetName: string;
- begin
- if Name<>nil then
- GetName:=Name^
- else
- GetName:=Symbol^.GetName;
- end;
- function TObjectSymbol.GetDescendantCount: sw_integer;
- var Count: sw_integer;
- begin
- if Descendants=nil then Count:=0 else
- Count:=Descendants^.Count;
- GetDescendantCount:=Count;
- end;
- function TObjectSymbol.GetDescendant(Index: sw_integer): PObjectSymbol;
- begin
- GetDescendant:=Descendants^.At(Index);
- end;
- procedure TObjectSymbol.AddDescendant(P: PObjectSymbol);
- begin
- if Descendants=nil then
- New(Descendants, Init(50,10));
- Descendants^.Insert(P);
- end;
- destructor TObjectSymbol.Done;
- begin
- if Assigned(Name) then DisposeStr(Name); Name:=nil;
- if Assigned(Descendants) then Dispose(Descendants, Done); Descendants:=nil;
- inherited Done;
- end;
- {*****************************************************************************
- Main Routines
- *****************************************************************************}
- procedure DisposeBrowserCol;
- begin
- if assigned(Modules) then
- begin
- dispose(Modules,Done);
- Modules:=nil;
- end;
- if assigned(ModuleNames) then
- begin
- dispose(ModuleNames,Done);
- ModuleNames:=nil;
- end;
- if assigned(TypeNames) then
- begin
- dispose(TypeNames,Done);
- TypeNames:=nil;
- end;
- if assigned(ObjectTree) then
- begin
- Dispose(ObjectTree, Done);
- ObjectTree:=nil;
- end;
- end;
- procedure NewBrowserCol;
- begin
- New(Modules, Init(50,50));
- New(ModuleNames, Init(50,50));
- New(TypeNames, Init(1000,5000));
- end;
- procedure CreateBrowserCol;
- procedure ProcessSymTable(OwnerSym: PSymbol; var Owner: PSymbolCollection; Table: PSymTable);
- var I,J,defcount,symcount: longint;
- Ref: PRef;
- Sym,ParSym: PSym;
- Symbol: PSymbol;
- Reference: PReference;
- ParamCount: Sw_integer;
- Params: array[0..20] of PString;
- inputfile : pinputfile;
- Idx: sw_integer;
- S: string;
- procedure SetVType(Symbol: PSymbol; VType: string);
- begin
- Symbol^.VType:=TypeNames^.Add(VType);
- end;
- procedure SetDType(Symbol: PSymbol; DType: string);
- begin
- Symbol^.DType:=TypeNames^.Add(DType);
- end;
- function GetDefinitionStr(def: pdef): string; forward;
- function GetEnumDefStr(def: penumdef): string;
- var Name: string;
- esym: penumsym;
- Count: integer;
- begin
- Name:='(';
- esym:=def^.Firstenum; Count:=0;
- while (esym<>nil) do
- begin
- if Count>0 then
- Name:=Name+', ';
- Name:=Name+esym^.name;
- esym:=esym^.nextenum;
- Inc(Count);
- end;
- Name:=Name+')';
- GetEnumDefStr:=Name;
- end;
- function GetArrayDefStr(def: parraydef): string;
- var Name: string;
- begin
- Name:='array ['+IntToStr(def^.lowrange)+'..'+IntToStr(def^.highrange)+'] of ';
- if assigned(def^.definition) then
- Name:=Name+GetDefinitionStr(def^.definition);
- GetArrayDefStr:=Name;
- end;
- function GetFileDefStr(def: pfiledef): string;
- var Name: string;
- begin
- Name:='';
- case def^.filetype of
- ft_text : Name:='text';
- ft_untyped : Name:='file';
- ft_typed : Name:='file of '+GetDefinitionStr(def^.typed_as);
- end;
- GetFileDefStr:=Name;
- end;
- function GetStringDefStr(def: pstringdef): string;
- var Name: string;
- begin
- Name:='';
- case def^.string_typ of
- st_shortstring :
- if def^.len=255 then
- Name:='shortstring'
- else
- Name:='string['+IntToStr(def^.len)+']';
- st_longstring :
- Name:='longstring';
- st_ansistring :
- Name:='ansistring';
- st_widestring :
- Name:='widestring';
- else ;
- end;
- GetStringDefStr:=Name;
- end;
- function retdefassigned(def: pabstractprocdef): boolean;
- var OK: boolean;
- begin
- OK:=false;
- if assigned(def^.retdef) then
- if UpcaseStr(GetDefinitionStr(def^.retdef))<>'VOID' then
- OK:=true;
- retdefassigned:=OK;
- end;
- function GetAbsProcParmDefStr(def: pabstractprocdef): string;
- var Name: string;
- dc: pdefcoll;
- Count: integer;
- CurName: string;
- begin
- Name:='';
- dc:=def^.para1; Count:=0;
- while dc<>nil do
- begin
- CurName:='';
- case dc^.paratyp of
- vs_Value : ;
- vs_Const : CurName:=CurName+'const ';
- vs_Var : CurName:=CurName+'var ';
- end;
- if assigned(dc^.data) then
- CurName:=CurName+GetDefinitionStr(dc^.data);
- if dc^.next<>nil then
- CurName:=', '+CurName;
- Name:=CurName+Name;
- dc:=dc^.next; Inc(Count);
- end;
- GetAbsProcParmDefStr:=Name;
- end;
- function GetAbsProcDefStr(def: pabstractprocdef): string;
- var Name: string;
- begin
- Name:=GetAbsProcParmDefStr(def);
- if Name<>'' then Name:='('+Name+')';
- if retdefassigned(def) then
- Name:='function'+Name+': '+GetDefinitionStr(def^.retdef)
- else
- Name:='procedure'+Name;
- GetAbsProcDefStr:=Name;
- end;
- function GetProcDefStr(def: pprocdef): string;
- var DName: string;
- J: integer;
- begin
- { DName:='';
- if assigned(def) then
- begin
- if assigned(def^.parast) then
- begin
- with def^.parast^ do
- for J:=1 to number_symbols do
- begin
- if J<>1 then DName:=DName+', ';
- ParSym:=GetsymNr(J);
- if ParSym=nil then Break;
- DName:=DName+ParSym^.Name;
- end;
- end
- end;}
- DName:=GetAbsProcDefStr(def);
- GetProcDefStr:=DName;
- end;
- function GetProcVarDefStr(def: pprocvardef): string;
- begin
- GetProcVarDefStr:=GetAbsProcDefStr(def);
- end;
- function GetSetDefStr(def: psetdef): string;
- var Name: string;
- begin
- Name:='';
- case def^.settype of
- normset : Name:='set';
- smallset : Name:='set';
- varset : Name:='varset';
- end;
- Name:=Name+' of ';
- Name:=Name+GetDefinitionStr(def^.setof);
- GetSetDefStr:=Name;
- end;
- function GetDefinitionStr(def: pdef): string;
- var Name: string;
- sym: psym;
- begin
- Name:='';
- if def<>nil then
- begin
- if assigned(def^.sym) then
- Name:=def^.sym^.name;
- if Name='' then
- case def^.deftype of
- arraydef :
- Name:=GetArrayDefStr(parraydef(def));
- stringdef :
- Name:=GetStringDefStr(pstringdef(def));
- enumdef :
- Name:=GetEnumDefStr(penumdef(def));
- procdef :
- Name:=GetProcDefStr(pprocdef(def));
- procvardef :
- Name:=GetProcVarDefStr(pprocvardef(def));
- filedef :
- Name:=GetFileDefStr(pfiledef(def));
- setdef :
- Name:=GetSetDefStr(psetdef(def));
- end;
- end;
- GetDefinitionStr:=Name;
- end;
- function GetEnumItemName(Sym: penumsym): string;
- var Name: string;
- ES: penumsym;
- begin
- Name:='';
- if assigned(sym) and assigned(sym^.definition) then
- if assigned(sym^.definition^.sym) then
- begin
- { ES:=sym^.definition^.First;
- while (ES<>nil) and (ES^.Value<>sym^.Value) do
- ES:=ES^.next;
- if assigned(es) and (es^.value=sym^.value) then
- Name:=}
- Name:=sym^.definition^.sym^.name;
- if Name<>'' then
- Name:=Name+'('+IntToStr(sym^.value)+')';
- end;
- GetEnumItemName:=Name;
- end;
- function GetConstValueName(sym: pconstsym): string;
- var Name: string;
- begin
- Name:='';
- { if assigned(sym^.definition) then
- if assigned(sym^.definition^.sym) then
- Name:=sym^.definition^.sym^.name;}
- if Name='' then
- case sym^.consttype of
- constord :
- Name:=sym^.definition^.sym^.name+'('+IntToStr(sym^.value)+')';
- conststring :
- Name:=''''+GetStr(PString(sym^.Value))+'''';
- constreal:
- Name:=FloatToStr(PBestReal(sym^.Value)^);
- constbool:
- { if boolean(sym^.Value)=true then
- Name:='TRUE'
- else
- Name:='FALSE';}
- Name:='Longbool('+IntToStr(sym^.Value)+')';
- constint:
- Name:=IntToStr(sym^.value);
- constchar:
- Name:=''''+chr(sym^.Value)+'''';
- constset:
- { Name:=SetToStr(pnormalset(sym^.Value))};
- constnil: ;
- end;
- GetConstValueName:=Name;
- end;
- procedure ProcessDefIfStruct(definition: pdef);
- begin
- if assigned(definition) then
- begin
- case definition^.deftype of
- recorddef :
- if precdef(definition)^.symtable<>Table then
- ProcessSymTable(Symbol,Symbol^.Items,precdef(definition)^.symtable);
- objectdef :
- if pobjectdef(definition)^.publicsyms<>Table then
- ProcessSymTable(Symbol,Symbol^.Items,pobjectdef(definition)^.publicsyms);
- { leads to infinite loops !!
- pointerdef :
- with ppointerdef(definition)^ do
- if assigned(definition) then
- if assigned(definition^.sym) then
- ProcessDefIfStruct(definition^.sym^.definition);}
- end;
- end;
- end;
- var MemInfo: TSymbolMemInfo;
- ObjDef: pobjectdef;
- begin
- if not Assigned(Table) then
- Exit;
- if Owner=nil then
- Owner:=New(PSortedSymbolCollection, Init(10,50));
- sym:=psym(Table^.symindex^.first);
- while assigned(sym) do
- begin
- ParamCount:=0;
- New(Symbol, Init(Sym^.Name,Sym^.Typ,'',nil));
- case Sym^.Typ of
- varsym :
- with pvarsym(sym)^ do
- begin
- if assigned(definition) then
- if assigned(definition^.sym) then
- SetVType(Symbol,definition^.sym^.name)
- else
- SetVType(Symbol,GetDefinitionStr(definition));
- ProcessDefIfStruct(definition);
- MemInfo.Addr:=address;
- if assigned(localvarsym) then
- MemInfo.LocalAddr:=localvarsym^.address
- else
- MemInfo.LocalAddr:=0;
- MemInfo.Size:=getsize;
- MemInfo.PushSize:=getpushsize;
- Symbol^.SetMemInfo(MemInfo);
- end;
- constsym :
- SetDType(Symbol,GetConstValueName(pconstsym(sym)));
- enumsym :
- if assigned(penumsym(sym)^.definition) then
- SetDType(Symbol,GetEnumItemName(penumsym(sym)));
- unitsym :
- begin
- { ProcessSymTable(Symbol^.Items,punitsym(sym)^.unitsymtable);}
- end;
- syssym :
- { if assigned(Table^.Name) then
- if Table^.Name^='SYSTEM' then}
- begin
- Symbol^.Params:=TypeNames^.Add('...');
- end;
- funcretsym :
- if Assigned(OwnerSym) then
- with pfuncretsym(sym)^ do
- if assigned(funcretdef) then
- if assigned(funcretdef^.sym) then
- SetVType(OwnerSym,funcretdef^.sym^.name);
- procsym :
- begin
- with pprocsym(sym)^ do
- if assigned(definition) then
- begin
- if cs_local_browser in aktmoduleswitches then
- ProcessSymTable(Symbol,Symbol^.Items,definition^.parast);
- if assigned(definition^.parast) then
- begin
- Symbol^.Params:=TypeNames^.Add(GetAbsProcParmDefStr(definition));
- end
- else { param-definition is NOT assigned }
- if assigned(Table^.Name) then
- if Table^.Name^='SYSTEM' then
- begin
- Symbol^.Params:=TypeNames^.Add('...');
- end;
- if cs_local_browser in aktmoduleswitches then
- begin
- if assigned(definition^.localst) and
- (definition^.localst^.symtabletype<>staticsymtable) then
- ProcessSymTable(Symbol,Symbol^.Items,definition^.localst);
- end;
- end;
- end;
- typesym :
- begin
- with ptypesym(sym)^ do
- if assigned(definition) then
- case definition^.deftype of
- arraydef :
- SetDType(Symbol,GetArrayDefStr(parraydef(definition)));
- enumdef :
- SetDType(Symbol,GetEnumDefStr(penumdef(definition)));
- procdef :
- SetDType(Symbol,GetProcDefStr(pprocdef(definition)));
- procvardef :
- SetDType(Symbol,GetProcVarDefStr(pprocvardef(definition)));
- objectdef :
- with pobjectdef(definition)^ do
- begin
- ObjDef:=childof;
- Symbol^.ObjectID:=longint(definition);
- if ObjDef<>nil then
- Symbol^.AncestorID:=longint(ObjDef);{TypeNames^.Add(S);}
- Symbol^.Flags:=(Symbol^.Flags or sfObject);
- if (options and oo_is_class)<>0 then
- Symbol^.Flags:=(Symbol^.Flags or sfClass);
- ProcessSymTable(Symbol,Symbol^.Items,pobjectdef(definition)^.publicsyms);
- end;
- recorddef :
- begin
- Symbol^.Flags:=(Symbol^.Flags or sfRecord);
- ProcessSymTable(Symbol,Symbol^.Items,precdef(definition)^.symtable);
- end;
- filedef :
- SetDType(Symbol,GetFileDefStr(pfiledef(definition)));
- setdef :
- SetDType(Symbol,GetSetDefStr(psetdef(definition)));
- end;
- end;
- end;
- Ref:=Sym^.defref;
- while Assigned(Symbol) and assigned(Ref) do
- begin
- inputfile:=get_source_file(ref^.moduleindex,ref^.posinfo.fileindex);
- if Assigned(inputfile) and Assigned(inputfile^.name) then
- begin
- New(Reference, Init(ModuleNames^.Add(inputfile^.name^),
- ref^.posinfo.line,ref^.posinfo.column));
- Symbol^.References^.Insert(Reference);
- end;
- Ref:=Ref^.nextref;
- end;
- if Assigned(Symbol) then
- Owner^.Insert(Symbol);
- sym:=psym(sym^.next);
- end;
- end;
- var
- T: PSymTable;
- UnitS: PSymbol;
- hp : pmodule;
- begin
- DisposeBrowserCol;
- NewBrowserCol;
- hp:=pmodule(loaded_units.first);
- while assigned(hp) do
- begin
- t:=psymtable(hp^.globalsymtable);
- if assigned(t) then
- begin
- New(UnitS, Init(T^.Name^,unitsym,'',nil));
- Modules^.Insert(UnitS);
- ProcessSymTable(UnitS,UnitS^.Items,T);
- if cs_local_browser in aktmoduleswitches then
- begin
- t:=psymtable(hp^.localsymtable);
- if assigned(t) then
- ProcessSymTable(UnitS,UnitS^.Items,T);
- end;
- end;
- hp:=pmodule(hp^.next);
- end;
- BuildObjectInfo;
- end;
- procedure BuildObjectInfo;
- var C: PIDSortedSymbolCollection;
- ObjectC: PObjectSymbolCollection;
- ObjectsSymbol: PObjectSymbol;
- procedure InsertSymbolCollection(Symbols: PSymbolCollection);
- var I: sw_integer;
- P: PSymbol;
- begin
- for I:=0 to Symbols^.Count-1 do
- begin
- P:=Symbols^.At(I);
- if (P^.Flags and sfObject)<>0 then
- C^.Insert(P);
- if P^.Items<>nil then
- InsertSymbolCollection(P^.Items);
- end;
- end;
- function SearchObjectForSym(O: PSymbol): PObjectSymbol;
- var I,Idx: sw_integer;
- OS,P: PObjectSymbol;
- begin
- P:=nil;
- for I:=0 to ObjectC^.Count-1 do
- begin
- OS:=ObjectC^.At(I);
- if OS^.Symbol=O then
- begin P:=OS; Break; end;
- end;
- SearchObjectForSym:=P;
- end;
- procedure BuildTree;
- var I: sw_integer;
- Symbol: PSymbol;
- Parent,OS: PObjectSymbol;
- begin
- I:=0;
- while (I<C^.Count) do
- begin
- Symbol:=C^.At(I);
- if Symbol^.Ancestor=nil then
- Parent:=ObjectsSymbol
- else
- Parent:=SearchObjectForSym(Symbol^.Ancestor);
- if Parent<>nil then
- begin
- New(OS, Init(Parent, Symbol));
- Parent^.AddDescendant(OS);
- ObjectC^.Insert(OS);
- C^.AtDelete(I);
- end
- else
- Inc(I);
- end;
- end;
- var Pass: integer;
- I: sw_integer;
- P: PSymbol;
- begin
- New(C, Init(1000,5000));
- InsertSymbolCollection(Modules);
- { --- Resolve ancestor<->descendant references --- }
- for I:=0 to C^.Count-1 do
- begin
- P:=C^.At(I);
- if P^.AncestorID<>0 then
- P^.Ancestor:=C^.SearchSymbolByID(P^.AncestorID);
- end;
- { --- Build object tree --- }
- if assigned(ObjectTree) then Dispose(ObjectTree, Done);
- New(ObjectsSymbol, InitName('Objects'));
- ObjectTree:=ObjectsSymbol;
- New(ObjectC, Init(C^.Count,100));
- Pass:=0;
- if C^.Count>0 then
- repeat
- BuildTree;
- Inc(Pass);
- until (C^.Count=0) or (Pass>20); { more than 20 levels ? - then there must be a bug }
- ObjectC^.DeleteAll; Dispose(ObjectC, Done);
- C^.DeleteAll; Dispose(C, Done);
- end;
- function SearchObjectForSymbol(O: PSymbol): PObjectSymbol;
- function ScanObjectCollection(Parent: PObjectSymbol): PObjectSymbol;
- var I: sw_integer;
- OS,P: PObjectSymbol;
- ObjectC: PObjectSymbolCollection;
- begin
- P:=nil;
- if Parent<>nil then
- if Parent^.Descendants<>nil then
- begin
- ObjectC:=Parent^.Descendants;
- for I:=0 to ObjectC^.Count-1 do
- begin
- OS:=ObjectC^.At(I);
- if OS^.Symbol=O then
- begin P:=OS; Break; end;
- if OS^.Descendants<>nil then
- begin
- P:=ScanObjectCollection(OS);
- if P<>nil then Break;
- end;
- end;
- end;
- ScanObjectCollection:=P;
- end;
- begin
- SearchObjectForSymbol:=ScanObjectCollection(ObjectTree);
- end;
- {*****************************************************************************
- Initialize
- *****************************************************************************}
- var
- oldexit : pointer;
- procedure browcol_exit;{$ifndef FPC}far;{$endif}
- begin
- exitproc:=oldexit;
- DisposeBrowserCol;
- end;
- procedure InitBrowserCol;
- begin
- end;
- procedure DoneBrowserCol;
- begin
- { nothing, the collections are freed in the exitproc }
- end;
- begin
- oldexit:=exitproc;
- exitproc:=@browcol_exit;
- end.
- {
- $Log$
- Revision 1.16 1999-05-13 21:59:20 peter
- * removed oldppu code
- * warning if objpas is loaded from uses
- * first things for new deref writing
- Revision 1.15 1999/04/29 09:36:55 peter
- * fixed crash
- * check if localbrowser is set
- Revision 1.14 1999/04/15 09:01:32 peter
- * fixed set loading
- * object inheritance support for browser
- Revision 1.13 1999/04/14 18:59:52 peter
- * fixed wrong variable names
- Revision 1.12 1999/04/10 16:15:00 peter
- * fixed browcol
- + -ar to show regalloc info in .s file
- Revision 1.11 1999/04/08 10:17:42 peter
- + objects support
- Revision 1.8 1999/03/03 01:38:11 pierre
- * avoid infinite recursion in ProcessDefIfStruct
- Revision 1.7 1999/02/22 11:51:32 peter
- * browser updates from gabor
- Revision 1.6 1999/02/04 09:31:59 pierre
- + added objects and records symbol tables
- Revision 1.5 1999/02/03 09:44:32 pierre
- * symbol nubering begins with 1 in number_symbols
- * program tmodule has globalsymtable for its staticsymtable
- (to get it displayed in IDE globals list)
- + list of symbol (browcol) greatly improved for IDE
- Revision 1.4 1999/02/02 16:38:38 peter
- * no endless loop with localst=staticsymtable
- Revision 1.3 1999/01/22 10:19:43 peter
- * fixed typo
- Revision 1.2 1999/01/21 11:49:14 peter
- * updates from gabor
- Revision 1.1 1999/01/12 14:25:24 peter
- + BrowserLog for browser.log generation
- + BrowserCol for browser info in TCollections
- * released all other UseBrowser
- }
|