123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621 |
- {
- $Id$
- Copyright (c) 1998-2000 by Florian Klaempfl
- This unit does the parsing process
- 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 parser;
- {$i defines.inc}
- interface
- procedure preprocess(const filename:string);
- procedure compile(const filename:string;compile_system:boolean);
- procedure initparser;
- procedure doneparser;
- implementation
- uses
- globtype,version,tokens,systems,
- cutils,cobjects,globals,verbose,
- symbase,symtable,symsym,fmodule,aasm,
- {$ifndef newcg}
- hcodegen,
- {$endif newcg}
- assemble,link,script,gendef,
- {$ifdef BrowserLog}
- browlog,
- {$endif BrowserLog}
- {$ifdef UseExcept}
- tpexcept,compiler,
- {$endif UseExcept}
- {$ifdef newcg}
- cgobj,
- cgcpu,
- { cgbase must be after hcodegen to use the correct procinfo !!! }
- cgbase,
- {$endif newcg}
- {$ifdef GDB}
- gdb,
- {$endif GDB}
- comphook,scanner,pbase,ptype,psystem,pmodules,cresstr;
- procedure initparser;
- begin
- { ^M means a string or a char, because we don't parse a }
- { type declaration }
- ignore_equal:=false;
- { we didn't parse a object or class declaration }
- { and no function header }
- testcurobject:=0;
- { a long time, this was forgotten }
- aktprocsym:=nil;
- current_module:=nil;
- compiled_module:=nil;
- procinfo:=nil;
- loaded_units.init;
- usedunits.init;
- { global switches }
- aktglobalswitches:=initglobalswitches;
- { scanner }
- c:=#0;
- pattern:='';
- orgpattern:='';
- current_scanner:=nil;
- { memory sizes }
- if heapsize=0 then
- heapsize:=target_info.heapsize;
- if maxheapsize=0 then
- maxheapsize:=target_info.maxheapsize;
- if stacksize=0 then
- stacksize:=target_info.stacksize;
- { open assembler response }
- AsmRes.Init(outputexedir+'ppas');
- { open deffile }
- DefFile.Init(outputexedir+inputfile+target_os.defext);
- { list of generated .o files, so the linker can remove them }
- SmartLinkOFiles.init;
- end;
- procedure doneparser;
- begin
- { unload units }
- loaded_units.done;
- usedunits.done;
- { close ppas,deffile }
- asmres.done;
- deffile.done;
- { free list of .o files }
- SmartLinkOFiles.done;
- end;
- procedure default_macros;
- var
- hp : pstring_item;
- begin
- { commandline }
- hp:=pstring_item(initdefines.first);
- while assigned(hp) do
- begin
- current_scanner^.def_macro(hp^.str^);
- hp:=pstring_item(hp^.next);
- end;
- { set macros for version checking }
- current_scanner^.set_macro('FPC_VERSION',version_nr);
- current_scanner^.set_macro('FPC_RELEASE',release_nr);
- current_scanner^.set_macro('FPC_PATCH',patch_nr);
- end;
- procedure preprocess(const filename:string);
- var
- i : longint;
- begin
- new(preprocfile,init('pre'));
- { default macros }
- current_scanner^.macros:=new(pdictionary,init);
- default_macros;
- { initialize a module }
- current_module:=new(pmodule,init(filename,false));
- main_module:=current_module;
- { startup scanner, and save in current_module }
- current_scanner:=new(pscannerfile,Init(filename));
- current_module^.scanner:=current_scanner;
- { loop until EOF is found }
- repeat
- current_scanner^.readtoken;
- preprocfile^.AddSpace;
- case token of
- _ID :
- begin
- preprocfile^.Add(orgpattern);
- end;
- _REALNUMBER,
- _INTCONST :
- preprocfile^.Add(pattern);
- _CSTRING :
- begin
- i:=0;
- while (i<length(pattern)) do
- begin
- inc(i);
- if pattern[i]='''' then
- begin
- insert('''',pattern,i);
- inc(i);
- end;
- end;
- preprocfile^.Add(''''+pattern+'''');
- end;
- _CCHAR :
- begin
- case pattern[1] of
- #39 :
- pattern:='''''''';
- #0..#31,
- #128..#255 :
- begin
- str(ord(pattern[1]),pattern);
- pattern:='#'+pattern;
- end;
- else
- pattern:=''''+pattern[1]+'''';
- end;
- preprocfile^.Add(pattern);
- end;
- _EOF :
- break;
- else
- preprocfile^.Add(tokeninfo^[token].str)
- end;
- until false;
- { free scanner }
- dispose(current_scanner,done);
- { close }
- dispose(preprocfile,done);
- end;
- procedure compile(const filename:string;compile_system:boolean);
- var
- { scanner }
- oldidtoken,
- oldtoken : ttoken;
- oldtokenpos : tfileposinfo;
- oldc : char;
- oldpattern,
- oldorgpattern : string;
- old_block_type : tblock_type;
- oldcurrent_scanner,prev_scanner,
- scanner : pscannerfile;
- { symtable }
- oldrefsymtable,
- olddefaultsymtablestack,
- oldsymtablestack : psymtable;
- oldprocprefix : string;
- oldaktprocsym : pprocsym;
- oldoverloaded_operators : toverloaded_operators;
- { cg }
- oldnextlabelnr : longint;
- oldparse_only : boolean;
- { asmlists }
- oldimports,
- oldexports,
- oldresource,
- oldrttilist,
- oldresourcestringlist,
- oldbsssegment,
- olddatasegment,
- oldcodesegment,
- oldexprasmlist,
- olddebuglist,
- oldwithdebuglist,
- oldconsts : paasmoutput;
- oldasmsymbollist : pdictionary;
- { resourcestrings }
- OldResourceStrings : PResourceStrings;
- { akt.. things }
- oldaktlocalswitches : tlocalswitches;
- oldaktmoduleswitches : tmoduleswitches;
- oldaktfilepos : tfileposinfo;
- oldaktpackenum,oldaktmaxfpuregisters : longint;
- oldaktpackrecords : tpackrecords;
- oldaktoutputformat : tasm;
- oldaktspecificoptprocessor,
- oldaktoptprocessor : tprocessors;
- oldaktasmmode : tasmmode;
- oldaktinterfacetype: tinterfacetypes;
- oldaktmodeswitches : tmodeswitches;
- old_compiled_module : pmodule;
- prev_name : pstring;
- {$ifdef USEEXCEPT}
- {$ifndef Delphi}
- recoverpos : jmp_buf;
- oldrecoverpos : pjmp_buf;
- {$endif Delphi}
- {$endif useexcept}
- {$ifdef newcg}
- oldcg : pcg;
- {$endif newcg}
- {$ifdef GDB}
- store_dbx : plongint;
- {$endif GDB}
- begin
- inc(compile_level);
- prev_name:=stringdup(parser_current_file);
- parser_current_file:=filename;
- old_compiled_module:=compiled_module;
- { save symtable state }
- oldsymtablestack:=symtablestack;
- olddefaultsymtablestack:=defaultsymtablestack;
- oldrefsymtable:=refsymtable;
- oldprocprefix:=procprefix;
- oldaktprocsym:=aktprocsym;
- move(overloaded_operators,oldoverloaded_operators,sizeof(toverloaded_operators));
- { save scanner state }
- oldc:=c;
- oldpattern:=pattern;
- oldorgpattern:=orgpattern;
- oldtoken:=token;
- oldidtoken:=idtoken;
- old_block_type:=block_type;
- oldtokenpos:=akttokenpos;
- oldcurrent_scanner:=current_scanner;
- { save cg }
- oldnextlabelnr:=nextlabelnr;
- oldparse_only:=parse_only;
- { save assembler lists }
- olddatasegment:=datasegment;
- oldbsssegment:=bsssegment;
- oldcodesegment:=codesegment;
- olddebuglist:=debuglist;
- oldwithdebuglist:=withdebuglist;
- oldconsts:=consts;
- oldrttilist:=rttilist;
- oldexprasmlist:=exprasmlist;
- oldimports:=importssection;
- oldexports:=exportssection;
- oldresource:=resourcesection;
- oldresourcestringlist:=resourcestringlist;
- oldasmsymbollist:=asmsymbollist;
- OldResourceStrings:=ResourceStrings;
- { save akt... state }
- { handle the postponed case first }
- if localswitcheschanged then
- begin
- aktlocalswitches:=nextaktlocalswitches;
- localswitcheschanged:=false;
- end;
- oldaktlocalswitches:=aktlocalswitches;
- oldaktmoduleswitches:=aktmoduleswitches;
- oldaktpackrecords:=aktpackrecords;
- oldaktpackenum:=aktpackenum;
- oldaktmaxfpuregisters:=aktmaxfpuregisters;
- oldaktoutputformat:=aktoutputformat;
- oldaktoptprocessor:=aktoptprocessor;
- oldaktspecificoptprocessor:=aktspecificoptprocessor;
- oldaktasmmode:=aktasmmode;
- oldaktinterfacetype:=aktinterfacetype;
- oldaktfilepos:=aktfilepos;
- oldaktmodeswitches:=aktmodeswitches;
- {$ifdef newcg}
- oldcg:=cg;
- {$endif newcg}
- {$ifdef GDB}
- store_dbx:=dbx_counter;
- dbx_counter:=nil;
- {$endif GDB}
- { show info }
- Message1(parser_i_compiling,filename);
- { reset symtable }
- symtablestack:=nil;
- defaultsymtablestack:=nil;
- systemunit:=nil;
- refsymtable:=nil;
- aktprocsym:=nil;
- procprefix:='';
- registerdef:=true;
- aktmaxfpuregisters:=-1;
- fillchar(overloaded_operators,sizeof(toverloaded_operators),0);
- { reset the unit or create a new program }
- if assigned(current_module) then
- begin
- {current_module^.reset this is wrong !! }
- scanner:=current_module^.scanner;
- current_module^.reset;
- current_module^.scanner:=scanner;
- end
- else
- begin
- current_module:=new(pmodule,init(filename,false));
- main_module:=current_module;
- end;
- { Set the module to use for verbose }
- SetCompileModule(current_module);
- compiled_module:=current_module;
- current_module^.in_compile:=true;
- { Load current state from the init values }
- aktlocalswitches:=initlocalswitches;
- aktmoduleswitches:=initmoduleswitches;
- aktmodeswitches:=initmodeswitches;
- {$IFDEF Testvarsets}
- aktsetalloc:=initsetalloc;
- {$ENDIF}
- aktpackrecords:=initpackrecords;
- aktpackenum:=initpackenum;
- aktoutputformat:=initoutputformat;
- aktoptprocessor:=initoptprocessor;
- aktspecificoptprocessor:=initspecificoptprocessor;
- aktasmmode:=initasmmode;
- aktinterfacetype:=initinterfacetype;
- { we need this to make the system unit }
- if compile_system then
- aktmoduleswitches:=aktmoduleswitches+[cs_compilesystem];
- { startup scanner, and save in current_module }
- current_scanner:=new(pscannerfile,Init(filename));
- { macros }
- default_macros;
- { read the first token }
- current_scanner^.readtoken;
- prev_scanner:=current_module^.scanner;
- current_module^.scanner:=current_scanner;
- { init code generator for a new module }
- codegen_newmodule;
- {$ifdef newcg}
- {$ifdef i386}
- cg:=new(pcg386,init);
- {$endif i386}
- {$ifdef alpha}
- cg:=new(pcgalpha,init);
- {$endif alpha}
- {$ifdef powerpc}
- cg:=new(pcgppc,init);
- {$endif powerpc}
- {$endif newcg}
- { If the compile level > 1 we get a nice "unit expected" error
- message if we are trying to use a program as unit.}
- {$ifdef USEEXCEPT}
- if setjmp(recoverpos)=0 then
- begin
- oldrecoverpos:=recoverpospointer;
- recoverpospointer:=@recoverpos;
- {$endif USEEXCEPT}
- if (token=_UNIT) or (compile_level>1) then
- begin
- current_module^.is_unit:=true;
- proc_unit;
- end
- else
- proc_program(token=_LIBRARY);
- {$ifdef USEEXCEPT}
- recoverpospointer:=oldrecoverpos;
- end
- else
- begin
- recoverpospointer:=oldrecoverpos;
- longjump_used:=true;
- end;
- {$endif USEEXCEPT}
- { clear memory }
- {$ifdef Splitheap}
- if testsplit then
- begin
- { temp heap should be empty after that !!!}
- codegen_donemodule;
- Releasetempheap;
- end;
- {$endif Splitheap}
- { restore old state, close trees, > 0.99.5 has heapblocks, so
- it's the default to release the trees }
- codegen_donemodule;
- {$ifdef newcg}
- dispose(cg,done);
- {$endif newcg}
- { free ppu }
- if assigned(current_module^.ppufile) then
- begin
- dispose(current_module^.ppufile,done);
- current_module^.ppufile:=nil;
- end;
- { free scanner }
- dispose(current_scanner,done);
- { restore previous scanner !! }
- current_module^.scanner:=prev_scanner;
- if assigned(prev_scanner) then
- prev_scanner^.invalid:=true;
- if (compile_level>1) then
- begin
- {$ifdef newcg}
- cg:=oldcg;
- {$endif newcg}
- {$ifdef GDB}
- dbx_counter:=store_dbx;
- {$endif GDB}
- { restore scanner }
- c:=oldc;
- pattern:=oldpattern;
- orgpattern:=oldorgpattern;
- token:=oldtoken;
- idtoken:=oldidtoken;
- akttokenpos:=oldtokenpos;
- block_type:=old_block_type;
- current_scanner:=oldcurrent_scanner;
- { restore cg }
- nextlabelnr:=oldnextlabelnr;
- parse_only:=oldparse_only;
- { restore asmlists }
- exprasmlist:=oldexprasmlist;
- datasegment:=olddatasegment;
- bsssegment:=oldbsssegment;
- codesegment:=oldcodesegment;
- consts:=oldconsts;
- debuglist:=olddebuglist;
- withdebuglist:=oldwithdebuglist;
- importssection:=oldimports;
- exportssection:=oldexports;
- resourcesection:=oldresource;
- rttilist:=oldrttilist;
- resourcestringlist:=oldresourcestringlist;
- asmsymbollist:=oldasmsymbollist;
- ResourceStrings:=OldResourceStrings;
- { restore symtable state }
- refsymtable:=oldrefsymtable;
- symtablestack:=oldsymtablestack;
- defaultsymtablestack:=olddefaultsymtablestack;
- aktprocsym:=oldaktprocsym;
- procprefix:=oldprocprefix;
- move(oldoverloaded_operators,overloaded_operators,sizeof(toverloaded_operators));
- aktlocalswitches:=oldaktlocalswitches;
- aktmoduleswitches:=oldaktmoduleswitches;
- aktpackrecords:=oldaktpackrecords;
- aktpackenum:=oldaktpackenum;
- aktmaxfpuregisters:=oldaktmaxfpuregisters;
- aktoutputformat:=oldaktoutputformat;
- aktoptprocessor:=oldaktoptprocessor;
- aktspecificoptprocessor:=oldaktspecificoptprocessor;
- aktasmmode:=oldaktasmmode;
- aktinterfacetype:=oldaktinterfacetype;
- aktfilepos:=oldaktfilepos;
- aktmodeswitches:=oldaktmodeswitches;
- end;
- { Shut down things when the last file is compiled }
- if (compile_level=1) then
- begin
- { Close script }
- if (not AsmRes.Empty) then
- begin
- Message1(exec_i_closing_script,AsmRes.Fn);
- AsmRes.WriteToDisk;
- end;
- {$ifdef USEEXCEPT}
- if not longjump_used then
- {$endif USEEXCEPT}
- { do not create browsers on errors !! }
- if status.errorcount=0 then
- begin
- {$ifdef BrowserLog}
- { Write Browser Log }
- if (cs_browser_log in aktglobalswitches) and
- (cs_browser in aktmoduleswitches) then
- begin
- if browserlog.elements_to_list^.empty then
- begin
- Message1(parser_i_writing_browser_log,browserlog.Fname);
- WriteBrowserLog;
- end
- else
- browserlog.list_elements;
- end;
- {$endif BrowserLog}
- { Write Browser Collections }
- do_extractsymbolinfo;
- end;
- if current_module^.in_second_compile then
- begin
- current_module^.in_second_compile:=false;
- current_module^.in_compile:=true;
- end
- else
- current_module^.in_compile:=false;
- (* Obsolete code aktprocsym
- is disposed by the localsymtable disposal (PM)
- { Free last aktprocsym }
- if assigned(aktprocsym) and (aktprocsym^.owner=nil) then
- begin
- { init parts are not needed in units !! }
- if current_module^.is_unit then
- aktprocsym^.definition^.forwarddef:=false;
- dispose(aktprocsym,done);
- end; *)
- end;
- dec(compile_level);
- parser_current_file:=prev_name^;
- stringdispose(prev_name);
- compiled_module:=old_compiled_module;
- {$ifdef USEEXCEPT}
- if longjump_used then
- longjmp(recoverpospointer^,1);
- {$endif USEEXCEPT}
- end;
- end.
- {
- $Log$
- Revision 1.9 2000-11-04 14:25:20 florian
- + merged Attila's changes for interfaces, not tested yet
- Revision 1.8 2000/10/31 22:02:49 peter
- * symtable splitted, no real code changes
- Revision 1.7 2000/10/14 10:14:51 peter
- * moehrendorf oct 2000 rewrite
- Revision 1.6 2000/10/01 19:48:25 peter
- * lot of compile updates for cg11
- Revision 1.5 2000/09/24 15:06:20 peter
- * use defines.inc
- Revision 1.4 2000/08/27 16:11:51 peter
- * moved some util functions from globals,cobjects to cutils
- * splitted files into finput,fmodule
- Revision 1.3 2000/08/12 15:34:22 peter
- + usedasmsymbollist to check and reset only the used symbols (merged)
- Revision 1.2 2000/07/13 11:32:44 michael
- + removed logs
- }
|