123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544 |
- {
- Copyright (c) 2011
- Contains different functions that are used in the context of
- parsing generics.
- 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 pgenutil;
- {$i fpcdefs.inc}
- interface
- uses
- { common }
- cclasses,
- { symtable }
- symtype,symdef;
- procedure generate_specialization(var tt:tdef;parse_class_parent:boolean;_prettyname:string;parsedtype:tdef;symname:string);
- function parse_generic_parameters:TFPObjectList;
- procedure insert_generic_parameter_types(def:tstoreddef;genericdef:tstoreddef;genericlist:TFPObjectList);
- implementation
- uses
- { common }
- cutils,
- { global }
- globals,globtype,tokens,verbose,
- { symtable }
- symconst,symbase,symsym,symtable,
- { modules }
- fmodule,
- { pass 1 }
- htypechk,
- node,nobj,nmem,
- { parser }
- scanner,
- pbase,pexpr,pdecsub,ptype;
- procedure generate_specialization(var tt:tdef;parse_class_parent:boolean;_prettyname:string;parsedtype:tdef;symname:string);
- var
- st : TSymtable;
- srsym : tsym;
- pt2,pttmp : tnode;
- first,
- err : boolean;
- i,
- gencount : longint;
- sym : tsym;
- genericdef : tstoreddef;
- generictype : ttypesym;
- genericdeflist : TFPObjectList;
- generictypelist : TFPObjectList;
- oldsymtablestack : tsymtablestack;
- oldextendeddefs : TFPHashObjectList;
- hmodule : tmodule;
- pu : tused_unit;
- prettyname : ansistring;
- uspecializename,
- countstr,genname,ugenname,specializename : string;
- vmtbuilder : TVMTBuilder;
- onlyparsepara : boolean;
- specializest : tsymtable;
- item : tobject;
- old_current_structdef : tabstractrecorddef;
- old_current_genericdef,old_current_specializedef : tstoreddef;
- tempst : tglobalsymtable;
- old_block_type: tblock_type;
- begin
- { retrieve generic def that we are going to replace }
- genericdef:=tstoreddef(tt);
- tt:=nil;
- onlyparsepara:=false;
- { either symname must be given or genericdef needs to be valid }
- if (symname='') and
- (not assigned(genericdef) or
- not assigned(genericdef.typesym) or
- (genericdef.typesym.typ<>typesym)) then
- internalerror(2011042701);
- { Only parse the parameters for recovery or
- for recording in genericbuf }
- if parse_generic then
- begin
- consume(_LSHARPBRACKET);
- gencount:=0;
- repeat
- pt2:=factor(false,true);
- pt2.free;
- inc(gencount);
- until not try_to_consume(_COMMA);
- consume(_RSHARPBRACKET);
- { we need to return a def that can later pass some checks like
- whether it's an interface or not }
- if parse_generic and (not assigned(tt) or (tt.typ=undefineddef)) then
- begin
- if (symname='') and (df_generic in genericdef.defoptions) then
- { this happens in non-Delphi modes }
- tt:=genericdef
- else
- begin
- { find the corresponding generic symbol so that any checks
- done on the returned def will be handled correctly }
- str(gencount,countstr);
- if symname='' then
- genname:=ttypesym(genericdef.typesym).realname
- else
- genname:=symname;
- genname:=genname+'$'+countstr;
- ugenname:=upper(genname);
- if not searchsym(ugenname,srsym,st) or
- (srsym.typ<>typesym) then
- begin
- identifier_not_found(genname);
- exit;
- end;
- tt:=ttypesym(srsym).typedef;
- end;
- end;
- exit;
- end;
- if not assigned(parsedtype) and not try_to_consume(_LT) then
- consume(_LSHARPBRACKET);
- generictypelist:=TFPObjectList.create(false);
- genericdeflist:=TFPObjectList.Create(false);
- { Parse type parameters }
- err:=false;
- { set the block type to type, so that the parsed type are returned as
- ttypenode (e.g. classes are in non type-compatible blocks returned as
- tloadvmtaddrnode) }
- old_block_type:=block_type;
- { if parsedtype is set, then the first type identifer was already parsed
- (happens in inline specializations) and thus we only need to parse
- the remaining types and do as if the first one was already given }
- first:=not assigned(parsedtype);
- if assigned(parsedtype) then
- begin
- genericdeflist.Add(parsedtype);
- specializename:='$'+parsedtype.typesym.realname;
- prettyname:=parsedtype.typesym.prettyname;
- end
- else
- begin
- specializename:='';
- prettyname:='';
- end;
- while not (token in [_GT,_RSHARPBRACKET]) do
- begin
- { "first" is set to false at the end of the loop! }
- if not first then
- consume(_COMMA);
- block_type:=bt_type;
- pt2:=factor(false,true);
- if pt2.nodetype=typen then
- begin
- if df_generic in pt2.resultdef.defoptions then
- Message(parser_e_no_generics_as_params);
- genericdeflist.Add(pt2.resultdef);
- if not assigned(pt2.resultdef.typesym) then
- message(type_e_generics_cannot_reference_itself)
- else
- begin
- specializename:=specializename+'$'+pt2.resultdef.typesym.realname;
- if first then
- prettyname:=prettyname+pt2.resultdef.typesym.prettyname
- else
- prettyname:=prettyname+','+pt2.resultdef.typesym.prettyname;
- end;
- end
- else
- begin
- Message(type_e_type_id_expected);
- err:=true;
- end;
- pt2.free;
- first:=false;
- end;
- block_type:=old_block_type;
- if err then
- begin
- try_to_consume(_RSHARPBRACKET);
- exit;
- end;
- { search a generic with the given count of params }
- countstr:='';
- str(genericdeflist.Count,countstr);
- { use the name of the symbol as procvars return a user friendly version
- of the name }
- if symname='' then
- genname:=ttypesym(genericdef.typesym).realname
- else
- genname:=symname;
- { in case of non-Delphi mode the type name could already be a generic
- def (but maybe the wrong one) }
- if assigned(genericdef) and (df_generic in genericdef.defoptions) then
- begin
- { remove the type count suffix from the generic's name }
- for i:=Length(genname) downto 1 do
- if genname[i]='$' then
- begin
- genname:=copy(genname,1,i-1);
- break;
- end;
- end;
- genname:=genname+'$'+countstr;
- ugenname:=upper(genname);
- if not searchsym(ugenname,srsym,st)
- or (srsym.typ<>typesym) then
- begin
- identifier_not_found(genname);
- genericdeflist.Free;
- generictypelist.Free;
- exit;
- end;
- { we've found the correct def }
- genericdef:=tstoreddef(ttypesym(srsym).typedef);
- { build the new type's name }
- specializename:=genname+specializename;
- uspecializename:=upper(specializename);
- prettyname:=genericdef.typesym.prettyname+'<'+prettyname+'>';
- { select the symtable containing the params }
- case genericdef.typ of
- procdef:
- st:=genericdef.GetSymtable(gs_para);
- objectdef,
- recorddef:
- st:=genericdef.GetSymtable(gs_record);
- arraydef:
- st:=tarraydef(genericdef).symtable;
- procvardef:
- st:=genericdef.GetSymtable(gs_para);
- else
- internalerror(200511182);
- end;
- { build the list containing the types for the generic params }
- gencount:=0;
- for i:=0 to st.SymList.Count-1 do
- begin
- srsym:=tsym(st.SymList[i]);
- if sp_generic_para in srsym.symoptions then
- begin
- if gencount=genericdeflist.Count then
- internalerror(2011042702);
- generictype:=ttypesym.create(srsym.realname,tdef(genericdeflist[gencount]));
- generictypelist.add(generictype);
- inc(gencount);
- end;
- end;
- { Special case if we are referencing the current defined object }
- if assigned(current_structdef) and
- (current_structdef.objname^=uspecializename) then
- tt:=current_structdef;
- { decide in which symtable to put the specialization }
- if current_module.is_unit and current_module.in_interface then
- specializest:=current_module.globalsymtable
- else
- specializest:=current_module.localsymtable;
- { Can we reuse an already specialized type? }
- if not assigned(tt) then
- begin
- srsym:=tsym(specializest.find(uspecializename));
- if assigned(srsym) then
- begin
- if srsym.typ<>typesym then
- internalerror(200710171);
- tt:=ttypesym(srsym).typedef;
- end;
- end;
- if not assigned(tt) then
- begin
- { Setup symtablestack at definition time
- to get types right, however this is not perfect, we should probably record
- the resolved symbols }
- oldsymtablestack:=symtablestack;
- oldextendeddefs:=current_module.extendeddefs;
- current_module.extendeddefs:=TFPHashObjectList.create(true);
- symtablestack:=tdefawaresymtablestack.create;
- if not assigned(genericdef) then
- internalerror(200705151);
- hmodule:=find_module_from_symtable(genericdef.owner);
- if hmodule=nil then
- internalerror(200705152);
- pu:=tused_unit(hmodule.used_units.first);
- while assigned(pu) do
- begin
- if not assigned(pu.u.globalsymtable) then
- internalerror(200705153);
- symtablestack.push(pu.u.globalsymtable);
- pu:=tused_unit(pu.next);
- end;
- if assigned(hmodule.globalsymtable) then
- symtablestack.push(hmodule.globalsymtable);
- <<<<<<< HEAD
- { in case of a parent or an implemented interface the class needs
- to be inserted in the current unit and not in the class it's
- used in }
- { TODO: check whether we are using the correct symtable }
- if not parse_class_parent then
- begin
- { hacky, but necessary to insert the newly generated class properly }
- item:=oldsymtablestack.stack;
- while assigned(item) and (item^.symtable.symtablelevel>main_program_level) do
- item:=item^.next;
- if assigned(item) and (item^.symtable<>symtablestack.top) then
- symtablestack.push(item^.symtable);
- end;
- =======
- { push the localsymtable if needed }
- if (hmodule<>current_module) or not current_module.in_interface then
- symtablestack.push(current_module.localsymtable);
- { push a temporary global symtable so that the specialization is
- added to the correct symtable; this symtable does not contain
- any other symbols, so that the type resolution can not be
- influenced by symbols in the current unit }
- tempst:=tspecializesymtable.create(current_module.modulename^,current_module.moduleid);
- symtablestack.push(tempst);
- >>>>>>> unique-syms
- { Reparse the original type definition }
- if not err then
- begin
- if parse_class_parent then
- begin
- old_current_structdef:=current_structdef;
- old_current_genericdef:=current_genericdef;
- old_current_specializedef:=current_specializedef;
- if genericdef.owner.symtabletype in [recordsymtable,objectsymtable] then
- current_structdef:=tabstractrecorddef(genericdef.owner.defowner)
- else
- current_structdef:=nil;
- current_genericdef:=nil;
- current_specializedef:=nil;
- end;
- { First a new typesym so we can reuse this specialization and
- references to this specialization can be handled }
- srsym:=ttypesym.create(specializename,generrordef);
- specializest.insert(srsym);
- { specializations are declarations as such it is the wised to
- declare set the blocktype to "type"; otherwise we'll
- experience unexpected side effects like the addition of
- classrefdefs if we have a generic that's derived from another
- generic }
- old_block_type:=block_type;
- block_type:=bt_type;
- if not assigned(genericdef.generictokenbuf) then
- internalerror(200511171);
- current_scanner.startreplaytokens(genericdef.generictokenbuf,
- genericdef.change_endian);
- read_named_type(tt,specializename,genericdef,generictypelist,false);
- ttypesym(srsym).typedef:=tt;
- tt.typesym:=srsym;
- if _prettyname<>'' then
- ttypesym(tt.typesym).fprettyname:=_prettyname
- else
- ttypesym(tt.typesym).fprettyname:=prettyname;
- { Note regarding hint directives:
- There is no need to remove the flags for them from the
- specialized generic symbol, because hint directives that
- follow the specialization are handled by the code in
- pdecl.types_dec and added to the type symbol.
- E.g.: TFoo = TBar<Blubb> deprecated;
- Here the symbol TBar$1$Blubb will contain the
- "sp_hint_deprecated" flag while the TFoo symbol won't.}
- case tt.typ of
- { Build VMT indexes for classes and read hint directives }
- objectdef:
- begin
- try_consume_hintdirective(srsym.symoptions,srsym.deprecatedmsg);
- consume(_SEMICOLON);
- vmtbuilder:=TVMTBuilder.Create(tobjectdef(tt));
- vmtbuilder.generate_vmt;
- vmtbuilder.free;
- end;
- { handle params, calling convention, etc }
- procvardef:
- begin
- if not check_proc_directive(true) then
- begin
- try_consume_hintdirective(ttypesym(srsym).symoptions,ttypesym(srsym).deprecatedmsg);
- consume(_SEMICOLON);
- end;
- parse_var_proc_directives(ttypesym(srsym));
- handle_calling_convention(tprocvardef(tt));
- if try_consume_hintdirective(ttypesym(srsym).symoptions,ttypesym(srsym).deprecatedmsg) then
- consume(_SEMICOLON);
- end;
- else
- { parse hint directives for records and arrays }
- begin
- try_consume_hintdirective(srsym.symoptions,srsym.deprecatedmsg);
- consume(_SEMICOLON);
- end;
- end;
- { Consume the semicolon if it is also recorded }
- try_to_consume(_SEMICOLON);
- <<<<<<< HEAD
- =======
- block_type:=old_block_type;
- >>>>>>> unique-syms
- if parse_class_parent then
- begin
- current_structdef:=old_current_structdef;
- current_genericdef:=old_current_genericdef;
- current_specializedef:=old_current_specializedef;
- end;
- end;
- { extract all created symbols and defs from the temporary symtable
- and add them to the specializest }
- for i:=0 to tempst.SymList.Count-1 do begin
- item:=tempst.SymList.Items[i];
- specializest.SymList.Add(tempst.SymList.NameOfIndex(i),item);
- tsym(item).Owner:=specializest;
- tempst.SymList.Extract(item);
- end;
- for i:=0 to tempst.DefList.Count-1 do begin
- item:=tempst.DefList.Items[i];
- specializest.DefList.Add(item);
- tdef(item).owner:=specializest;
- tempst.DefList.Extract(item);
- end;
- tempst.free;
- { Restore symtablestack }
- current_module.extendeddefs.free;
- current_module.extendeddefs:=oldextendeddefs;
- symtablestack.free;
- symtablestack:=oldsymtablestack;
- end;
- if not (token in [_GT, _RSHARPBRACKET]) then
- begin
- consume(_RSHARPBRACKET);
- exit;
- end
- else
- consume(token);
- genericdeflist.free;
- generictypelist.free;
- if assigned(genericdef) then
- begin
- { check the hints of the found generic symbol }
- srsym:=genericdef.typesym;
- check_hints(srsym,srsym.symoptions,srsym.deprecatedmsg);
- end;
- end;
- function parse_generic_parameters:TFPObjectList;
- var
- generictype : ttypesym;
- begin
- result:=TFPObjectList.Create(false);
- repeat
- if token=_ID then
- begin
- generictype:=ttypesym.create(orgpattern,cundefinedtype);
- include(generictype.symoptions,sp_generic_para);
- result.add(generictype);
- end;
- consume(_ID);
- until not try_to_consume(_COMMA) ;
- end;
- procedure insert_generic_parameter_types(def:tstoreddef;genericdef:tstoreddef;genericlist:TFPObjectList);
- var
- i: longint;
- generictype: ttypesym;
- st: tsymtable;
- begin
- def.genericdef:=genericdef;
- if not assigned(genericlist) then
- exit;
- case def.typ of
- recorddef,objectdef: st:=tabstractrecorddef(def).symtable;
- arraydef: st:=tarraydef(def).symtable;
- procvardef,procdef: st:=tabstractprocdef(def).parast;
- else
- internalerror(201101020);
- end;
- for i:=0 to genericlist.count-1 do
- begin
- generictype:=ttypesym(genericlist[i]);
- if generictype.typedef.typ=undefineddef then
- include(def.defoptions,df_generic)
- else
- include(def.defoptions,df_specialization);
- st.insert(generictype);
- end;
- end;
- end.
|