12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277 |
- {
- $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 precdef(definition)^.symtable<>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));
- defcount:=Table^.number_defs;
- symcount:=Table^.number_symbols;
- { for I:=0 to defcount-1 do
- begin
- Def:=Table^.GetDefNr(I);
- end;}
- for I:=1 to symcount do
- begin
- Sym:=Table^.GetsymNr(I);
- if Sym=nil then Continue;
- 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
- 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 assigned(definition^.localst) and
- (definition^.localst^.symtabletype<>staticsymtable) then
- ProcessSymTable(Symbol,Symbol^.Items,definition^.localst);
- 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);
- 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.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
- }
|