pmodules.pas 83 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313
  1. {
  2. Copyright (c) 1998-2008 by Florian Klaempfl
  3. Handles the parsing and loading of the modules (ppufiles)
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program; if not, write to the Free Software
  14. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  15. ****************************************************************************
  16. }
  17. unit pmodules;
  18. {$i fpcdefs.inc}
  19. interface
  20. function proc_unit:boolean;
  21. procedure proc_package;
  22. procedure proc_program(islibrary : boolean);
  23. implementation
  24. uses
  25. SysUtils,
  26. globtype,version,systems,tokens,
  27. cutils,cfileutl,cclasses,comphook,
  28. globals,verbose,fmodule,finput,fppu,globstat,
  29. symconst,symbase,symtype,symdef,symsym,symtable,symcreat,
  30. wpoinfo,
  31. aasmtai,aasmdata,aasmcpu,aasmbase,
  32. cgbase,cgobj,ngenutil,
  33. nbas,nutils,ncgutil,
  34. link,assemble,import,export,gendef,ppu,comprsrc,dbgbase,
  35. cresstr,procinfo,
  36. pexports,
  37. objcgutl,
  38. wpobase,
  39. scanner,pbase,pexpr,psystem,psub,pdecsub,ptype,
  40. cpuinfo;
  41. procedure create_objectfile;
  42. var
  43. DLLScanner : TDLLScanner;
  44. s : string;
  45. KeepShared : TCmdStrList;
  46. begin
  47. { try to create import entries from system dlls }
  48. if (tf_has_dllscanner in target_info.flags) and
  49. (not current_module.linkOtherSharedLibs.Empty) then
  50. begin
  51. { Init DLLScanner }
  52. if assigned(CDLLScanner[target_info.system]) then
  53. DLLScanner:=CDLLScanner[target_info.system].Create
  54. else
  55. internalerror(200104121);
  56. KeepShared:=TCmdStrList.Create;
  57. { Walk all shared libs }
  58. While not current_module.linkOtherSharedLibs.Empty do
  59. begin
  60. S:=current_module.linkOtherSharedLibs.Getusemask(link_always);
  61. if not DLLScanner.scan(s) then
  62. KeepShared.Concat(s);
  63. end;
  64. DLLscanner.Free;
  65. { Recreate import section }
  66. if (target_info.system in [system_i386_win32,system_i386_wdosx]) then
  67. begin
  68. if assigned(current_asmdata.asmlists[al_imports]) then
  69. current_asmdata.asmlists[al_imports].clear
  70. else
  71. current_asmdata.asmlists[al_imports]:=TAsmList.Create;
  72. importlib.generatelib;
  73. end;
  74. { Readd the not processed files }
  75. while not KeepShared.Empty do
  76. begin
  77. s:=KeepShared.GetFirst;
  78. current_module.linkOtherSharedLibs.add(s,link_always);
  79. end;
  80. KeepShared.Free;
  81. end;
  82. { Start and end module debuginfo, at least required for stabs
  83. to insert n_sourcefile lines }
  84. if (cs_debuginfo in current_settings.moduleswitches) or
  85. (cs_use_lineinfo in current_settings.globalswitches) then
  86. current_debuginfo.insertmoduleinfo;
  87. { create the .s file and assemble it }
  88. GenerateAsm(false);
  89. { Also create a smartlinked version ? }
  90. if create_smartlink_library then
  91. begin
  92. GenerateAsm(true);
  93. if (af_needar in target_asm.flags) then
  94. Linker.MakeStaticLibrary;
  95. end;
  96. { resource files }
  97. CompileResourceFiles;
  98. end;
  99. procedure insertobjectfile;
  100. { Insert the used object file for this unit in the used list for this unit }
  101. begin
  102. current_module.linkunitofiles.add(current_module.objfilename,link_static);
  103. current_module.flags:=current_module.flags or uf_static_linked;
  104. if create_smartlink_library then
  105. begin
  106. current_module.linkunitstaticlibs.add(current_module.staticlibfilename ,link_smart);
  107. current_module.flags:=current_module.flags or uf_smart_linked;
  108. end;
  109. end;
  110. procedure create_dwarf_frame;
  111. begin
  112. { Dwarf conflicts with smartlinking in separate .a files }
  113. if create_smartlink_library then
  114. exit;
  115. { Call frame information }
  116. { MWE: we write our own info, so dwarf asm support is not really needed }
  117. { if (af_supports_dwarf in target_asm.flags) and }
  118. { CFI is currently broken for Darwin }
  119. if not(target_info.system in systems_darwin) and
  120. (
  121. (tf_needs_dwarf_cfi in target_info.flags) or
  122. (paratargetdbg in [dbg_dwarf2, dbg_dwarf3])
  123. ) then
  124. begin
  125. current_asmdata.asmlists[al_dwarf_frame].Free;
  126. current_asmdata.asmlists[al_dwarf_frame] := TAsmList.create;
  127. current_asmdata.asmcfi.generate_code(current_asmdata.asmlists[al_dwarf_frame]);
  128. end;
  129. end;
  130. Function CheckResourcesUsed : boolean;
  131. var
  132. hp : tused_unit;
  133. found : Boolean;
  134. begin
  135. CheckResourcesUsed:=tf_has_winlike_resources in target_info.flags;
  136. if not CheckResourcesUsed then exit;
  137. hp:=tused_unit(usedunits.first);
  138. found:=((current_module.flags and uf_has_resourcefiles)=uf_has_resourcefiles);
  139. If not found then
  140. While Assigned(hp) and not found do
  141. begin
  142. Found:=((hp.u.flags and uf_has_resourcefiles)=uf_has_resourcefiles);
  143. hp:=tused_unit(hp.next);
  144. end;
  145. CheckResourcesUsed:=found;
  146. end;
  147. procedure AddUnit(const s:string);
  148. var
  149. hp : tppumodule;
  150. unitsym : tunitsym;
  151. begin
  152. { load unit }
  153. hp:=registerunit(current_module,s,'');
  154. hp.loadppu;
  155. hp.adddependency(current_module);
  156. { add to symtable stack }
  157. symtablestack.push(hp.globalsymtable);
  158. if (m_mac in current_settings.modeswitches) and
  159. assigned(hp.globalmacrosymtable) then
  160. macrosymtablestack.push(hp.globalmacrosymtable);
  161. { insert unitsym }
  162. unitsym:=tunitsym.create(s,hp);
  163. inc(unitsym.refs);
  164. tabstractunitsymtable(current_module.localsymtable).insertunit(unitsym);
  165. { add to used units }
  166. current_module.addusedunit(hp,false,unitsym);
  167. end;
  168. procedure maybeloadvariantsunit;
  169. var
  170. hp : tmodule;
  171. begin
  172. { Do we need the variants unit? Skip this
  173. for VarUtils unit for bootstrapping }
  174. if (current_module.flags and uf_uses_variants=0) or
  175. (current_module.modulename^='VARUTILS') then
  176. exit;
  177. { Variants unit already loaded? }
  178. hp:=tmodule(loaded_units.first);
  179. while assigned(hp) do
  180. begin
  181. if hp.modulename^='VARIANTS' then
  182. exit;
  183. hp:=tmodule(hp.next);
  184. end;
  185. { Variants unit is not loaded yet, load it now }
  186. Message(parser_w_implicit_uses_of_variants_unit);
  187. AddUnit('variants');
  188. end;
  189. function MaybeRemoveResUnit : boolean;
  190. var
  191. resources_used : boolean;
  192. hp : tmodule;
  193. uu : tused_unit;
  194. unitname : shortstring;
  195. begin
  196. { We simply remove the unit from:
  197. - usedunit list, so that things like init/finalization table won't
  198. contain references to this unit
  199. - loaded_units list, so that the unit object file doesn't get linked
  200. with the executable. }
  201. { Note: on windows we always need resources! }
  202. resources_used:=(target_info.system in systems_all_windows)
  203. or CheckResourcesUsed;
  204. if (not resources_used) and (tf_has_winlike_resources in target_info.flags) then
  205. begin
  206. { resources aren't used, so we don't need this unit }
  207. if target_res.id=res_ext then
  208. unitname:='FPEXTRES'
  209. else
  210. unitname:='FPINTRES';
  211. Message1(unit_u_unload_resunit,unitname);
  212. { find the module }
  213. hp:=tmodule(loaded_units.first);
  214. while assigned(hp) do
  215. begin
  216. if hp.is_unit and (hp.modulename^=unitname) then break;
  217. hp:=tmodule(hp.next);
  218. end;
  219. if not assigned(hp) then
  220. internalerror(200801071);
  221. { find its tused_unit in the global list }
  222. uu:=tused_unit(usedunits.first);
  223. while assigned(uu) do
  224. begin
  225. if uu.u=hp then break;
  226. uu:=tused_unit(uu.next);
  227. end;
  228. if not assigned(uu) then
  229. internalerror(200801072);
  230. { remove the tused_unit }
  231. usedunits.Remove(uu);
  232. uu.Free;
  233. { remove the module }
  234. loaded_units.Remove(hp);
  235. unloaded_units.Concat(hp);
  236. end;
  237. MaybeRemoveResUnit:=resources_used;
  238. end;
  239. procedure loaddefaultunits;
  240. begin
  241. { we are going to rebuild the symtablestack, clear it first }
  242. symtablestack.clear;
  243. macrosymtablestack.clear;
  244. { macro symtable }
  245. macrosymtablestack.push(initialmacrosymtable);
  246. { are we compiling the system unit? }
  247. if (cs_compilesystem in current_settings.moduleswitches) then
  248. begin
  249. systemunit:=tglobalsymtable(current_module.localsymtable);
  250. { create system defines }
  251. create_intern_symbols;
  252. create_intern_types;
  253. { Set the owner of errorsym and errortype to symtable to
  254. prevent crashes when accessing .owner }
  255. generrorsym.owner:=systemunit;
  256. generrordef.owner:=systemunit;
  257. exit;
  258. end;
  259. { insert the system unit, it is allways the first. Load also the
  260. internal types from the system unit }
  261. AddUnit('system');
  262. systemunit:=tglobalsymtable(symtablestack.top);
  263. load_intern_types;
  264. { Set the owner of errorsym and errortype to symtable to
  265. prevent crashes when accessing .owner }
  266. generrorsym.owner:=systemunit;
  267. generrordef.owner:=systemunit;
  268. { Units only required for main module }
  269. if not(current_module.is_unit) then
  270. begin
  271. { Heaptrc unit, load heaptrace before any other units especially objpas }
  272. if (cs_use_heaptrc in current_settings.globalswitches) then
  273. AddUnit('heaptrc');
  274. { Lineinfo unit }
  275. if (cs_use_lineinfo in current_settings.globalswitches) then begin
  276. case paratargetdbg of
  277. dbg_stabs:
  278. AddUnit('lineinfo');
  279. dbg_stabx:
  280. AddUnit('lnfogdb');
  281. else
  282. AddUnit('lnfodwrf');
  283. end;
  284. end;
  285. { Valgrind requires c memory manager }
  286. if (cs_gdb_valgrind in current_settings.globalswitches) then
  287. AddUnit('cmem');
  288. {$ifdef cpufpemu}
  289. { Floating point emulation unit?
  290. softfpu must be in the system unit anyways (FK)
  291. if (cs_fp_emulation in current_settings.moduleswitches) and not(target_info.system in system_wince) then
  292. AddUnit('softfpu');
  293. }
  294. {$endif cpufpemu}
  295. { Which kind of resource support?
  296. Note: if resources aren't used this unit will be removed later,
  297. otherwise we need it here since it must be loaded quite early }
  298. if (tf_has_winlike_resources in target_info.flags) then
  299. if target_res.id=res_ext then
  300. AddUnit('fpextres')
  301. else
  302. AddUnit('fpintres');
  303. end;
  304. { Objpas unit? }
  305. if m_objpas in current_settings.modeswitches then
  306. AddUnit('objpas');
  307. { Macpas unit? }
  308. if m_mac in current_settings.modeswitches then
  309. AddUnit('macpas');
  310. if m_iso in current_settings.modeswitches then
  311. AddUnit('iso7185');
  312. { default char=widechar? }
  313. if m_default_unicodestring in current_settings.modeswitches then
  314. AddUnit('uuchar');
  315. { Objective-C support unit? }
  316. if (m_objectivec1 in current_settings.modeswitches) then
  317. begin
  318. { interface to Objective-C run time }
  319. AddUnit('objc');
  320. loadobjctypes;
  321. { NSObject }
  322. if not(current_module.is_unit) or
  323. (current_module.modulename^<>'OBJCBASE') then
  324. AddUnit('objcbase');
  325. end;
  326. { Profile unit? Needed for go32v2 only }
  327. if (cs_profile in current_settings.moduleswitches) and
  328. (target_info.system in [system_i386_go32v2,system_i386_watcom]) then
  329. AddUnit('profile');
  330. if (cs_load_fpcylix_unit in current_settings.globalswitches) then
  331. begin
  332. AddUnit('fpcylix');
  333. AddUnit('dynlibs');
  334. end;
  335. { CPU targets with microcontroller support can add a controller specific unit }
  336. {$if defined(ARM) or defined(AVR)}
  337. if (target_info.system in systems_embedded) and (current_settings.controllertype<>ct_none) and
  338. (embedded_controllers[current_settings.controllertype].controllerunitstr<>'') then
  339. AddUnit(embedded_controllers[current_settings.controllertype].controllerunitstr);
  340. {$endif ARM}
  341. end;
  342. procedure loadautounits;
  343. var
  344. hs,s : string;
  345. begin
  346. hs:=autoloadunits;
  347. repeat
  348. s:=GetToken(hs,',');
  349. if s='' then
  350. break;
  351. AddUnit(s);
  352. until false;
  353. end;
  354. procedure loadunits;
  355. var
  356. s,sorg : ansistring;
  357. fn : string;
  358. pu : tused_unit;
  359. hp2 : tmodule;
  360. unitsym : tunitsym;
  361. filepos : tfileposinfo;
  362. begin
  363. consume(_USES);
  364. repeat
  365. s:=pattern;
  366. sorg:=orgpattern;
  367. filepos:=current_tokenpos;
  368. consume(_ID);
  369. while token=_POINT do
  370. begin
  371. consume(_POINT);
  372. s:=s+'.'+pattern;
  373. sorg:=sorg+'.'+orgpattern;
  374. consume(_ID);
  375. end;
  376. { support "<unit> in '<file>'" construct, but not for tp7 }
  377. fn:='';
  378. if not(m_tp7 in current_settings.modeswitches) and
  379. try_to_consume(_OP_IN) then
  380. fn:=FixFileName(get_stringconst);
  381. { Give a warning if lineinfo is loaded }
  382. if s='LINEINFO' then begin
  383. Message(parser_w_no_lineinfo_use_switch);
  384. if (paratargetdbg in [dbg_dwarf2, dbg_dwarf3]) then
  385. s := 'LNFODWRF';
  386. sorg := s;
  387. end;
  388. { Give a warning if objpas is loaded }
  389. if s='OBJPAS' then
  390. Message(parser_w_no_objpas_use_mode);
  391. { Using the unit itself is not possible }
  392. if (s<>current_module.modulename^) then
  393. begin
  394. { check if the unit is already used }
  395. hp2:=nil;
  396. pu:=tused_unit(current_module.used_units.first);
  397. while assigned(pu) do
  398. begin
  399. if (pu.u.modulename^=s) then
  400. begin
  401. hp2:=pu.u;
  402. break;
  403. end;
  404. pu:=tused_unit(pu.next);
  405. end;
  406. if not assigned(hp2) then
  407. hp2:=registerunit(current_module,sorg,fn)
  408. else
  409. Message1(sym_e_duplicate_id,s);
  410. { Create unitsym, we need to use the name as specified, we
  411. can not use the modulename because that can be different
  412. when -Un is used }
  413. current_tokenpos:=filepos;
  414. unitsym:=tunitsym.create(sorg,nil);
  415. tabstractunitsymtable(current_module.localsymtable).insertunit(unitsym);
  416. { the current module uses the unit hp2 }
  417. current_module.addusedunit(hp2,true,unitsym);
  418. end
  419. else
  420. Message1(sym_e_duplicate_id,s);
  421. if token=_COMMA then
  422. begin
  423. pattern:='';
  424. consume(_COMMA);
  425. end
  426. else
  427. break;
  428. until false;
  429. { Load the units }
  430. pu:=tused_unit(current_module.used_units.first);
  431. while assigned(pu) do
  432. begin
  433. { Only load the units that are in the current
  434. (interface/implementation) uses clause }
  435. if pu.in_uses and
  436. (pu.in_interface=current_module.in_interface) then
  437. begin
  438. tppumodule(pu.u).loadppu;
  439. { is our module compiled? then we can stop }
  440. if current_module.state=ms_compiled then
  441. exit;
  442. { add this unit to the dependencies }
  443. pu.u.adddependency(current_module);
  444. { save crc values }
  445. pu.checksum:=pu.u.crc;
  446. pu.interface_checksum:=pu.u.interface_crc;
  447. pu.indirect_checksum:=pu.u.indirect_crc;
  448. { connect unitsym to the module }
  449. pu.unitsym.module:=pu.u;
  450. { add to symtable stack }
  451. symtablestack.push(pu.u.globalsymtable);
  452. if (m_mac in current_settings.modeswitches) and
  453. assigned(pu.u.globalmacrosymtable) then
  454. macrosymtablestack.push(pu.u.globalmacrosymtable);
  455. { check hints }
  456. pu.u.check_hints;
  457. end;
  458. pu:=tused_unit(pu.next);
  459. end;
  460. consume(_SEMICOLON);
  461. end;
  462. procedure reset_all_defs;
  463. begin
  464. if assigned(current_module.wpoinfo) then
  465. current_module.wpoinfo.resetdefs;
  466. end;
  467. procedure free_localsymtables(st:TSymtable);
  468. var
  469. i : longint;
  470. def : tstoreddef;
  471. pd : tprocdef;
  472. begin
  473. for i:=0 to st.DefList.Count-1 do
  474. begin
  475. def:=tstoreddef(st.DefList[i]);
  476. if def.typ=procdef then
  477. begin
  478. pd:=tprocdef(def);
  479. if assigned(pd.localst) and
  480. (pd.localst.symtabletype<>staticsymtable) and
  481. not(po_inline in pd.procoptions) then
  482. begin
  483. free_localsymtables(pd.localst);
  484. pd.localst.free;
  485. pd.localst:=nil;
  486. end;
  487. end;
  488. end;
  489. end;
  490. procedure parse_implementation_uses;
  491. begin
  492. if token=_USES then
  493. loadunits;
  494. end;
  495. procedure setupglobalswitches;
  496. begin
  497. if (cs_create_pic in current_settings.moduleswitches) then
  498. begin
  499. def_system_macro('FPC_PIC');
  500. def_system_macro('PIC');
  501. end;
  502. end;
  503. function create_main_proc(const name:string;potype:tproctypeoption;st:TSymtable):tcgprocinfo;
  504. var
  505. ps : tprocsym;
  506. pd : tprocdef;
  507. begin
  508. { there should be no current_procinfo available }
  509. if assigned(current_procinfo) then
  510. internalerror(200304275);
  511. {Generate a procsym for main}
  512. ps:=tprocsym.create('$'+name);
  513. { main are allways used }
  514. inc(ps.refs);
  515. st.insert(ps);
  516. pd:=tprocdef(cnodeutils.create_main_procdef(target_info.cprefix+name,potype,ps));
  517. { We don't need is a local symtable. Change it into the static
  518. symtable }
  519. pd.localst.free;
  520. pd.localst:=st;
  521. handle_calling_convention(pd);
  522. { set procinfo and current_procinfo.procdef }
  523. result:=tcgprocinfo(cprocinfo.create(nil));
  524. result.procdef:=pd;
  525. { main proc does always a call e.g. to init system unit }
  526. include(result.flags,pi_do_call);
  527. end;
  528. procedure release_main_proc(pi:tcgprocinfo);
  529. begin
  530. { remove localst as it was replaced by staticsymtable }
  531. pi.procdef.localst:=nil;
  532. { remove procinfo }
  533. current_module.procinfo:=nil;
  534. pi.free;
  535. pi:=nil;
  536. end;
  537. { Insert _GLOBAL_OFFSET_TABLE_ symbol if system uses it }
  538. procedure maybe_load_got;
  539. {$if defined(i386) or defined (sparc)}
  540. var
  541. gotvarsym : tstaticvarsym;
  542. {$endif i386 or sparc}
  543. begin
  544. {$if defined(i386) or defined(sparc)}
  545. if (cs_create_pic in current_settings.moduleswitches) and
  546. (tf_pic_uses_got in target_info.flags) then
  547. begin
  548. { insert symbol for got access in assembler code}
  549. gotvarsym:=tstaticvarsym.create('_GLOBAL_OFFSET_TABLE_',
  550. vs_value,voidpointertype,[vo_is_external]);
  551. gotvarsym.set_mangledname('_GLOBAL_OFFSET_TABLE_');
  552. current_module.localsymtable.insert(gotvarsym);
  553. { avoid unnecessary warnings }
  554. gotvarsym.varstate:=vs_read;
  555. gotvarsym.refs:=1;
  556. end;
  557. {$endif i386 or sparc}
  558. end;
  559. function gen_implicit_initfinal(flag:word;st:TSymtable):tcgprocinfo;
  560. begin
  561. { create procdef }
  562. case flag of
  563. uf_init :
  564. begin
  565. result:=create_main_proc(make_mangledname('',current_module.localsymtable,'init_implicit'),potype_unitinit,st);
  566. result.procdef.aliasnames.insert(make_mangledname('INIT$',current_module.localsymtable,''));
  567. end;
  568. uf_finalize :
  569. begin
  570. result:=create_main_proc(make_mangledname('',current_module.localsymtable,'finalize_implicit'),potype_unitfinalize,st);
  571. result.procdef.aliasnames.insert(make_mangledname('FINALIZE$',current_module.localsymtable,''));
  572. if (not current_module.is_unit) then
  573. result.procdef.aliasnames.insert('PASCALFINALIZE');
  574. end;
  575. else
  576. internalerror(200304253);
  577. end;
  578. result.code:=cnothingnode.create;
  579. end;
  580. procedure copy_macro(p:TObject; arg:pointer);
  581. begin
  582. current_module.globalmacrosymtable.insert(tmacro(p).getcopy);
  583. end;
  584. function try_consume_hintdirective(var moduleopt:tmoduleoptions; var deprecatedmsg:pshortstring):boolean;
  585. var
  586. deprecated_seen,
  587. last_is_deprecated:boolean;
  588. begin
  589. try_consume_hintdirective:=false;
  590. deprecated_seen:=false;
  591. repeat
  592. last_is_deprecated:=false;
  593. case idtoken of
  594. _LIBRARY :
  595. begin
  596. include(moduleopt,mo_hint_library);
  597. try_consume_hintdirective:=true;
  598. end;
  599. _DEPRECATED :
  600. begin
  601. { allow deprecated only once }
  602. if deprecated_seen then
  603. break;
  604. include(moduleopt,mo_hint_deprecated);
  605. try_consume_hintdirective:=true;
  606. last_is_deprecated:=true;
  607. deprecated_seen:=true;
  608. end;
  609. _EXPERIMENTAL :
  610. begin
  611. include(moduleopt,mo_hint_experimental);
  612. try_consume_hintdirective:=true;
  613. end;
  614. _PLATFORM :
  615. begin
  616. include(moduleopt,mo_hint_platform);
  617. try_consume_hintdirective:=true;
  618. end;
  619. _UNIMPLEMENTED :
  620. begin
  621. include(moduleopt,mo_hint_unimplemented);
  622. try_consume_hintdirective:=true;
  623. end;
  624. else
  625. break;
  626. end;
  627. consume(Token);
  628. { handle deprecated message }
  629. if ((token=_CSTRING) or (token=_CCHAR)) and last_is_deprecated then
  630. begin
  631. if deprecatedmsg<>nil then
  632. internalerror(201001221);
  633. if token=_CSTRING then
  634. deprecatedmsg:=stringdup(cstringpattern)
  635. else
  636. deprecatedmsg:=stringdup(pattern);
  637. consume(token);
  638. include(moduleopt,mo_has_deprecated_msg);
  639. end;
  640. until false;
  641. end;
  642. {$ifdef jvm}
  643. procedure addmoduleclass;
  644. var
  645. def: tobjectdef;
  646. typesym: ttypesym;
  647. begin
  648. { java_jlobject may not have been parsed yet (system unit); in any
  649. case, we only use this to refer to the class type, so inheritance
  650. does not matter }
  651. def:=tobjectdef.create(odt_javaclass,'__FPC_JVM_Module_Class_Alias$',nil);
  652. include(def.objectoptions,oo_is_external);
  653. include(def.objectoptions,oo_is_sealed);
  654. def.objextname:=stringdup(current_module.realmodulename^);
  655. typesym:=ttypesym.create('__FPC_JVM_Module_Class_Alias$',def);
  656. symtablestack.top.insert(typesym);
  657. end;
  658. {$endif jvm}
  659. type
  660. tfinishstate=record
  661. init_procinfo:tcgprocinfo;
  662. end;
  663. pfinishstate=^tfinishstate;
  664. procedure finish_unit(module:tmodule;immediate:boolean);forward;
  665. function proc_unit:boolean;
  666. var
  667. main_file: tinputfile;
  668. s1,s2 : ^string; {Saves stack space}
  669. init_procinfo : tcgprocinfo;
  670. unitname : ansistring;
  671. unitname8 : string[8];
  672. i,j : longint;
  673. finishstate:pfinishstate;
  674. globalstate:pglobalstate;
  675. begin
  676. result:=true;
  677. init_procinfo:=nil;
  678. if m_mac in current_settings.modeswitches then
  679. current_module.mode_switch_allowed:= false;
  680. consume(_UNIT);
  681. if compile_level=1 then
  682. Status.IsExe:=false;
  683. unitname:=orgpattern;
  684. consume(_ID);
  685. while token=_POINT do
  686. begin
  687. consume(_POINT);
  688. unitname:=unitname+'.'+orgpattern;
  689. consume(_ID);
  690. end;
  691. { create filenames and unit name }
  692. main_file := current_scanner.inputfile;
  693. while assigned(main_file.next) do
  694. main_file := main_file.next;
  695. new(s1);
  696. s1^:=current_module.modulename^;
  697. current_module.SetFileName(main_file.path+main_file.name,true);
  698. current_module.SetModuleName(unitname);
  699. { check for system unit }
  700. new(s2);
  701. s2^:=upper(ChangeFileExt(ExtractFileName(main_file.name),''));
  702. unitname8:=copy(current_module.modulename^,1,8);
  703. if (cs_check_unit_name in current_settings.globalswitches) and
  704. (
  705. not(
  706. (current_module.modulename^=s2^) or
  707. (
  708. (length(current_module.modulename^)>8) and
  709. (unitname8=s2^)
  710. )
  711. )
  712. or
  713. (
  714. (length(s1^)>8) and
  715. (s1^<>current_module.modulename^)
  716. )
  717. ) then
  718. Message1(unit_e_illegal_unit_name,current_module.realmodulename^);
  719. if (current_module.modulename^='SYSTEM') then
  720. include(current_settings.moduleswitches,cs_compilesystem);
  721. dispose(s2);
  722. dispose(s1);
  723. if (target_info.system in systems_unit_program_exports) then
  724. exportlib.preparelib(current_module.realmodulename^);
  725. { parse hint directives }
  726. try_consume_hintdirective(current_module.moduleoptions, current_module.deprecatedmsg);
  727. consume(_SEMICOLON);
  728. consume(_INTERFACE);
  729. { global switches are read, so further changes aren't allowed }
  730. current_module.in_global:=false;
  731. { handle the global switches }
  732. setupglobalswitches;
  733. message1(unit_u_loading_interface_units,current_module.modulename^);
  734. { update status }
  735. status.currentmodule:=current_module.realmodulename^;
  736. { maybe turn off m_objpas if we are compiling objpas }
  737. if (current_module.modulename^='OBJPAS') then
  738. exclude(current_settings.modeswitches,m_objpas);
  739. { maybe turn off m_mac if we are compiling macpas }
  740. if (current_module.modulename^='MACPAS') then
  741. exclude(current_settings.modeswitches,m_mac);
  742. parse_only:=true;
  743. { generate now the global symboltable,
  744. define first as local to overcome dependency conflicts }
  745. current_module.localsymtable:=tglobalsymtable.create(current_module.modulename^,current_module.moduleid);
  746. { insert unitsym of this unit to prevent other units having
  747. the same name }
  748. tabstractunitsymtable(current_module.localsymtable).insertunit(tunitsym.create(current_module.realmodulename^,current_module));
  749. { load default units, like the system unit }
  750. loaddefaultunits;
  751. { insert qualifier for the system unit (allows system.writeln) }
  752. if not(cs_compilesystem in current_settings.moduleswitches) and
  753. (token=_USES) then
  754. begin
  755. loadunits;
  756. { has it been compiled at a higher level ?}
  757. if current_module.state=ms_compiled then
  758. exit;
  759. end;
  760. { move the global symtable from the temporary local to global }
  761. current_module.globalsymtable:=current_module.localsymtable;
  762. current_module.localsymtable:=nil;
  763. { number all units, so we know if a unit is used by this unit or
  764. needs to be added implicitly }
  765. current_module.updatemaps;
  766. { create whole program optimisation information (may already be
  767. updated in the interface, e.g., in case of classrefdef typed
  768. constants }
  769. current_module.wpoinfo:=tunitwpoinfo.create;
  770. { ... parse the declarations }
  771. Message1(parser_u_parsing_interface,current_module.realmodulename^);
  772. symtablestack.push(current_module.globalsymtable);
  773. {$ifdef jvm}
  774. { fake classdef to represent the class corresponding to the unit }
  775. addmoduleclass;
  776. {$endif}
  777. read_interface_declarations;
  778. symtablestack.pop(current_module.globalsymtable);
  779. { Export macros defined in the interface for macpas. The macros
  780. are put in the globalmacrosymtable that will only be used by other
  781. units. The current unit continues to use the localmacrosymtable }
  782. if (m_mac in current_settings.modeswitches) then
  783. begin
  784. current_module.globalmacrosymtable:=tmacrosymtable.create(true);
  785. current_module.localmacrosymtable.SymList.ForEachCall(@copy_macro,nil);
  786. end;
  787. { leave when we got an error }
  788. if (Errorcount>0) and not status.skip_error then
  789. begin
  790. Message1(unit_f_errors_in_unit,tostr(Errorcount));
  791. status.skip_error:=true;
  792. exit;
  793. end;
  794. { Our interface is compiled, generate CRC and switch to implementation }
  795. if not(cs_compilesystem in current_settings.moduleswitches) and
  796. (Errorcount=0) then
  797. tppumodule(current_module).getppucrc;
  798. current_module.in_interface:=false;
  799. current_module.interface_compiled:=true;
  800. { First reload all units depending on our interface, we need to do this
  801. in the implementation part to prevent erroneous circular references }
  802. tppumodule(current_module).setdefgeneration;
  803. tppumodule(current_module).reload_flagged_units;
  804. { Parse the implementation section }
  805. if (m_mac in current_settings.modeswitches) and try_to_consume(_END) then
  806. current_module.interface_only:=true
  807. else
  808. current_module.interface_only:=false;
  809. parse_only:=false;
  810. { create static symbol table }
  811. current_module.localsymtable:=tstaticsymtable.create(current_module.modulename^,current_module.moduleid);
  812. { Insert _GLOBAL_OFFSET_TABLE_ symbol if system uses it }
  813. maybe_load_got;
  814. if not current_module.interface_only then
  815. begin
  816. consume(_IMPLEMENTATION);
  817. Message1(unit_u_loading_implementation_units,current_module.modulename^);
  818. { Read the implementation units }
  819. parse_implementation_uses;
  820. end;
  821. if current_module.state=ms_compiled then
  822. exit;
  823. { All units are read, now give them a number }
  824. current_module.updatemaps;
  825. symtablestack.push(current_module.globalsymtable);
  826. symtablestack.push(current_module.localsymtable);
  827. if not current_module.interface_only then
  828. begin
  829. Message1(parser_u_parsing_implementation,current_module.modulename^);
  830. if current_module.in_interface then
  831. internalerror(200212285);
  832. { Compile the unit }
  833. init_procinfo:=create_main_proc(make_mangledname('',current_module.localsymtable,'init'),potype_unitinit,current_module.localsymtable);
  834. init_procinfo.procdef.aliasnames.insert(make_mangledname('INIT$',current_module.localsymtable,''));
  835. init_procinfo.parse_body;
  836. { save file pos for debuginfo }
  837. current_module.mainfilepos:=init_procinfo.entrypos;
  838. end;
  839. { remove all units that we are waiting for that are already waiting for
  840. us => breaking up circles }
  841. for i:=0 to current_module.waitingunits.count-1 do
  842. for j:=current_module.waitingforunit.count-1 downto 0 do
  843. if current_module.waitingunits[i]=current_module.waitingforunit[j] then
  844. current_module.waitingforunit.delete(j);
  845. {$ifdef DEBUG_UNITWAITING}
  846. Writeln('Units waiting for ', current_module.modulename^, ': ',
  847. current_module.waitingforunit.Count);
  848. {$endif}
  849. result:=current_module.waitingforunit.count=0;
  850. { save all information that is needed for finishing the unit }
  851. New(finishstate);
  852. finishstate^.init_procinfo:=init_procinfo;
  853. current_module.finishstate:=finishstate;
  854. if result then
  855. finish_unit(current_module,true)
  856. else
  857. begin
  858. { save the current state, so the parsing can continue where we left
  859. of here }
  860. New(globalstate);
  861. save_global_state(globalstate^,true);
  862. current_module.globalstate:=globalstate;
  863. end;
  864. end;
  865. procedure finish_unit(module:tmodule;immediate:boolean);
  866. function is_assembler_generated:boolean;
  867. var
  868. hal : tasmlisttype;
  869. begin
  870. result:=false;
  871. if Errorcount=0 then
  872. begin
  873. for hal:=low(TasmlistType) to high(TasmlistType) do
  874. if not current_asmdata.asmlists[hal].empty then
  875. begin
  876. result:=true;
  877. exit;
  878. end;
  879. end;
  880. end;
  881. procedure module_is_done;inline;
  882. begin
  883. dispose(pglobalstate(current_module.globalstate));
  884. current_module.globalstate:=nil;
  885. dispose(pfinishstate(current_module.finishstate));
  886. current_module.finishstate:=nil;
  887. end;
  888. var
  889. {$ifdef EXTDEBUG}
  890. store_crc,
  891. {$endif EXTDEBUG}
  892. store_interface_crc,
  893. store_indirect_crc: cardinal;
  894. force_init_final : boolean;
  895. init_procinfo,
  896. finalize_procinfo : tcgprocinfo;
  897. i,idx : longint;
  898. ag : boolean;
  899. finishstate : tfinishstate;
  900. globalstate : tglobalstate;
  901. waitingmodule : tmodule;
  902. begin
  903. if not immediate then
  904. begin
  905. {$ifdef DEBUG_UNITWAITING}
  906. writeln('finishing waiting unit ''', module.modulename^, '''');
  907. {$endif DEBUG_UNITWAITING}
  908. { restore the state when we stopped working on the unit }
  909. save_global_state(globalstate,true);
  910. if not assigned(module.globalstate) then
  911. internalerror(2012091802);
  912. restore_global_state(pglobalstate(module.globalstate)^,true);
  913. end;
  914. { current_module is now module }
  915. if not assigned(current_module.finishstate) then
  916. internalerror(2012091801);
  917. finishstate:=pfinishstate(current_module.finishstate)^;
  918. finalize_procinfo:=nil;
  919. init_procinfo:=finishstate.init_procinfo;
  920. { Generate specializations of objectdefs methods }
  921. generate_specialization_procs;
  922. { add implementations for synthetic method declarations added by
  923. the compiler }
  924. add_synthetic_method_implementations(current_module.globalsymtable);
  925. add_synthetic_method_implementations(current_module.localsymtable);
  926. { if the unit contains ansi/widestrings, initialization and
  927. finalization code must be forced }
  928. force_init_final:=tglobalsymtable(current_module.globalsymtable).needs_init_final or
  929. tstaticsymtable(current_module.localsymtable).needs_init_final;
  930. { should we force unit initialization? }
  931. { this is a hack, but how can it be done better ? }
  932. { Now the sole purpose of this is to change 'init' to 'init_implicit',
  933. is it needed at all? (Sergei) }
  934. { it's needed in case cnodeutils.force_init = true }
  935. if (force_init_final or cnodeutils.force_init) and
  936. assigned(init_procinfo) and
  937. has_no_code(init_procinfo.code) then
  938. begin
  939. { first release the not used init procinfo }
  940. if assigned(init_procinfo) then
  941. release_main_proc(init_procinfo);
  942. init_procinfo:=gen_implicit_initfinal(uf_init,current_module.localsymtable);
  943. end;
  944. { finalize? }
  945. if not current_module.interface_only and (token=_FINALIZATION) then
  946. begin
  947. { Compile the finalize }
  948. finalize_procinfo:=create_main_proc(make_mangledname('',current_module.localsymtable,'finalize'),potype_unitfinalize,current_module.localsymtable);
  949. finalize_procinfo.procdef.aliasnames.insert(make_mangledname('FINALIZE$',current_module.localsymtable,''));
  950. finalize_procinfo.parse_body;
  951. end
  952. else if force_init_final or cnodeutils.force_final then
  953. finalize_procinfo:=gen_implicit_initfinal(uf_finalize,current_module.localsymtable);
  954. { Now both init and finalize bodies are read and it is known
  955. which variables are used in both init and finalize we can now
  956. generate the code. This is required to prevent putting a variable in
  957. a register that is also used in the finalize body (PFV) }
  958. if assigned(init_procinfo) then
  959. begin
  960. if (force_init_final or cnodeutils.force_init) or
  961. not(has_no_code(init_procinfo.code)) then
  962. begin
  963. init_procinfo.code:=cnodeutils.wrap_proc_body(init_procinfo.procdef,init_procinfo.code);
  964. init_procinfo.generate_code;
  965. current_module.flags:=current_module.flags or uf_init;
  966. end;
  967. init_procinfo.resetprocdef;
  968. release_main_proc(init_procinfo);
  969. end;
  970. if assigned(finalize_procinfo) then
  971. begin
  972. if force_init_final or
  973. cnodeutils.force_init or
  974. not(has_no_code(finalize_procinfo.code)) then
  975. begin
  976. finalize_procinfo.code:=cnodeutils.wrap_proc_body(finalize_procinfo.procdef,finalize_procinfo.code);
  977. finalize_procinfo.generate_code;
  978. current_module.flags:=current_module.flags or uf_finalize;
  979. end;
  980. finalize_procinfo.resetprocdef;
  981. release_main_proc(finalize_procinfo);
  982. end;
  983. symtablestack.pop(current_module.localsymtable);
  984. symtablestack.pop(current_module.globalsymtable);
  985. { the last char should always be a point }
  986. consume(_POINT);
  987. { reset wpo flags for all defs }
  988. reset_all_defs;
  989. if (Errorcount=0) then
  990. begin
  991. { tests, if all (interface) forwards are resolved }
  992. tstoredsymtable(current_module.globalsymtable).check_forwards;
  993. { check if all private fields are used }
  994. tstoredsymtable(current_module.globalsymtable).allprivatesused;
  995. { test static symtable }
  996. tstoredsymtable(current_module.localsymtable).allsymbolsused;
  997. tstoredsymtable(current_module.localsymtable).allprivatesused;
  998. tstoredsymtable(current_module.localsymtable).check_forwards;
  999. tstoredsymtable(current_module.localsymtable).checklabels;
  1000. { used units }
  1001. current_module.allunitsused;
  1002. end;
  1003. { leave when we got an error }
  1004. if (Errorcount>0) and not status.skip_error then
  1005. begin
  1006. Message1(unit_f_errors_in_unit,tostr(Errorcount));
  1007. status.skip_error:=true;
  1008. module_is_done;
  1009. if not immediate then
  1010. restore_global_state(globalstate,true);
  1011. exit;
  1012. end;
  1013. { if an Objective-C module, generate rtti and module info }
  1014. MaybeGenerateObjectiveCImageInfo(current_module.globalsymtable,current_module.localsymtable);
  1015. { do we need to add the variants unit? }
  1016. maybeloadvariantsunit;
  1017. { generate wrappers for interfaces }
  1018. gen_intf_wrappers(current_asmdata.asmlists[al_procedures],current_module.globalsymtable,false);
  1019. gen_intf_wrappers(current_asmdata.asmlists[al_procedures],current_module.localsymtable,false);
  1020. { generate rtti/init tables }
  1021. write_persistent_type_info(current_module.globalsymtable,true);
  1022. write_persistent_type_info(current_module.localsymtable,false);
  1023. { Tables }
  1024. cnodeutils.InsertThreadvars;
  1025. { Resource strings }
  1026. GenerateResourceStrings;
  1027. { Widestring typed constants }
  1028. cnodeutils.InsertWideInits;
  1029. { Resourcestring references }
  1030. cnodeutils.InsertResStrInits;
  1031. { generate debuginfo }
  1032. if (cs_debuginfo in current_settings.moduleswitches) then
  1033. current_debuginfo.inserttypeinfo;
  1034. { generate imports }
  1035. if current_module.ImportLibraryList.Count>0 then
  1036. importlib.generatelib;
  1037. { insert own objectfile, or say that it's in a library
  1038. (no check for an .o when loading) }
  1039. ag:=is_assembler_generated;
  1040. if ag then
  1041. insertobjectfile
  1042. else
  1043. begin
  1044. current_module.flags:=current_module.flags or uf_no_link;
  1045. current_module.flags:=current_module.flags and not (uf_has_stabs_debuginfo or uf_has_dwarf_debuginfo);
  1046. end;
  1047. if ag then
  1048. begin
  1049. { create callframe info }
  1050. create_dwarf_frame;
  1051. { assemble }
  1052. create_objectfile;
  1053. end;
  1054. { Write out the ppufile after the object file has been created }
  1055. store_interface_crc:=current_module.interface_crc;
  1056. store_indirect_crc:=current_module.indirect_crc;
  1057. {$ifdef EXTDEBUG}
  1058. store_crc:=current_module.crc;
  1059. {$endif EXTDEBUG}
  1060. if (Errorcount=0) then
  1061. tppumodule(current_module).writeppu;
  1062. if not(cs_compilesystem in current_settings.moduleswitches) then
  1063. begin
  1064. if store_interface_crc<>current_module.interface_crc then
  1065. Message1(unit_u_interface_crc_changed,current_module.ppufilename);
  1066. if store_indirect_crc<>current_module.indirect_crc then
  1067. Message1(unit_u_indirect_crc_changed,current_module.ppufilename);
  1068. end;
  1069. {$ifdef EXTDEBUG}
  1070. if not(cs_compilesystem in current_settings.moduleswitches) then
  1071. if (store_crc<>current_module.crc) and simplify_ppu then
  1072. Message1(unit_u_implementation_crc_changed,current_module.ppufilename);
  1073. {$endif EXTDEBUG}
  1074. { release local symtables that are not needed anymore }
  1075. free_localsymtables(current_module.globalsymtable);
  1076. free_localsymtables(current_module.localsymtable);
  1077. { leave when we got an error }
  1078. if (Errorcount>0) and not status.skip_error then
  1079. begin
  1080. Message1(unit_f_errors_in_unit,tostr(Errorcount));
  1081. status.skip_error:=true;
  1082. module_is_done;
  1083. if not immediate then
  1084. restore_global_state(globalstate,true);
  1085. exit;
  1086. end;
  1087. {$ifdef debug_devirt}
  1088. { print out all instantiated class/object types }
  1089. writeln('constructed object/class/classreftypes in ',current_module.realmodulename^);
  1090. for i := 0 to current_module.wpoinfo.createdobjtypes.count-1 do
  1091. begin
  1092. write(' ',tdef(current_module.wpoinfo.createdobjtypes[i]).GetTypeName);
  1093. case tdef(current_module.wpoinfo.createdobjtypes[i]).typ of
  1094. objectdef:
  1095. case tobjectdef(current_module.wpoinfo.createdobjtypes[i]).objecttype of
  1096. odt_object:
  1097. writeln(' (object)');
  1098. odt_class:
  1099. writeln(' (class)');
  1100. else
  1101. internalerror(2008101103);
  1102. end;
  1103. else
  1104. internalerror(2008101104);
  1105. end;
  1106. end;
  1107. for i := 0 to current_module.wpoinfo.createdclassrefobjtypes.count-1 do
  1108. begin
  1109. write(' Class Of ',tdef(current_module.wpoinfo.createdclassrefobjtypes[i]).GetTypeName);
  1110. case tdef(current_module.wpoinfo.createdclassrefobjtypes[i]).typ of
  1111. objectdef:
  1112. case tobjectdef(current_module.wpoinfo.createdclassrefobjtypes[i]).objecttype of
  1113. odt_class:
  1114. writeln(' (classrefdef)');
  1115. else
  1116. internalerror(2008101105);
  1117. end
  1118. else
  1119. internalerror(2008101102);
  1120. end;
  1121. end;
  1122. {$endif debug_devirt}
  1123. Message1(unit_u_finished_compiling,current_module.modulename^);
  1124. module_is_done;
  1125. if not immediate then
  1126. restore_global_state(globalstate,true);
  1127. for i:=0 to module.waitingunits.count-1 do
  1128. begin
  1129. waitingmodule:=tmodule(module.waitingunits[i]);
  1130. waitingmodule.waitingforunit.remove(module);
  1131. { only finish the module if it isn't already finished }
  1132. if (waitingmodule.waitingforunit.count=0) and
  1133. assigned(waitingmodule.finishstate) then
  1134. begin
  1135. finish_unit(waitingmodule,false);
  1136. waitingmodule.end_of_parsing;
  1137. end;
  1138. end;
  1139. end;
  1140. procedure procexport(const s : string);
  1141. var
  1142. hp : texported_item;
  1143. begin
  1144. hp:=texported_item.create;
  1145. hp.name:=stringdup(s);
  1146. hp.options:=hp.options or eo_name;
  1147. exportlib.exportprocedure(hp);
  1148. end;
  1149. procedure varexport(const s : string);
  1150. var
  1151. hp : texported_item;
  1152. begin
  1153. hp:=texported_item.create;
  1154. hp.name:=stringdup(s);
  1155. hp.options:=hp.options or eo_name;
  1156. exportlib.exportvar(hp);
  1157. end;
  1158. procedure insert_export(sym : TObject;arg:pointer);
  1159. var
  1160. i : longint;
  1161. item : TCmdStrListItem;
  1162. begin
  1163. case TSym(sym).typ of
  1164. { ignore: }
  1165. unitsym,
  1166. syssym,
  1167. constsym,
  1168. enumsym,
  1169. typesym:
  1170. ;
  1171. procsym:
  1172. begin
  1173. for i:=0 to tprocsym(sym).ProcdefList.Count-1 do
  1174. begin
  1175. if not(tprocdef(tprocsym(sym).ProcdefList[i]).proccalloption in [pocall_internproc]) and
  1176. ((tprocdef(tprocsym(sym).ProcdefList[i]).procoptions*[po_external])=[]) and
  1177. ((tsymtable(arg).symtabletype=globalsymtable) or
  1178. ((tsymtable(arg).symtabletype=staticsymtable) and (po_public in tprocdef(tprocsym(sym).ProcdefList[i]).procoptions))
  1179. ) then
  1180. begin
  1181. procexport(tprocdef(tprocsym(sym).ProcdefList[i]).mangledname);
  1182. { walk through all aliases }
  1183. item:=TCmdStrListItem(tprocdef(tprocsym(sym).ProcdefList[i]).aliasnames.first);
  1184. while assigned(item) do
  1185. begin
  1186. { avoid duplicate entries, sometimes aliasnames contains the mangledname }
  1187. if item.str<>tprocdef(tprocsym(sym).ProcdefList[i]).mangledname then
  1188. procexport(item.str);
  1189. item:=TCmdStrListItem(item.next);
  1190. end;
  1191. end;
  1192. end;
  1193. end;
  1194. staticvarsym:
  1195. begin
  1196. varexport(tsym(sym).mangledname);
  1197. end;
  1198. else
  1199. begin
  1200. writeln('unknown: ',ord(TSym(sym).typ));
  1201. end;
  1202. end;
  1203. end;
  1204. Function RewritePPU(const PPUFn,PPLFn:String):Boolean;
  1205. Var
  1206. MakeStatic : Boolean;
  1207. Var
  1208. buffer : array[0..$1fff] of byte;
  1209. inppu,
  1210. outppu : tppufile;
  1211. b,
  1212. untilb : byte;
  1213. l,m : longint;
  1214. f : file;
  1215. ext,
  1216. s : string;
  1217. ppuversion : dword;
  1218. begin
  1219. Result:=false;
  1220. MakeStatic:=False;
  1221. inppu:=tppufile.create(PPUFn);
  1222. if not inppu.openfile then
  1223. begin
  1224. inppu.free;
  1225. Comment(V_Error,'Could not open : '+PPUFn);
  1226. Exit;
  1227. end;
  1228. { Check the ppufile }
  1229. if not inppu.CheckPPUId then
  1230. begin
  1231. inppu.free;
  1232. Comment(V_Error,'Not a PPU File : '+PPUFn);
  1233. Exit;
  1234. end;
  1235. ppuversion:=inppu.GetPPUVersion;
  1236. if ppuversion<CurrentPPUVersion then
  1237. begin
  1238. inppu.free;
  1239. Comment(V_Error,'Wrong PPU Version '+tostr(ppuversion)+' in '+PPUFn);
  1240. Exit;
  1241. end;
  1242. { No .o file generated for this ppu, just skip }
  1243. if (inppu.header.flags and uf_no_link)<>0 then
  1244. begin
  1245. inppu.free;
  1246. Result:=true;
  1247. Exit;
  1248. end;
  1249. { Already a lib? }
  1250. if (inppu.header.flags and uf_in_library)<>0 then
  1251. begin
  1252. inppu.free;
  1253. Comment(V_Error,'PPU is already in a library : '+PPUFn);
  1254. Exit;
  1255. end;
  1256. { We need a static linked unit }
  1257. if (inppu.header.flags and uf_static_linked)=0 then
  1258. begin
  1259. inppu.free;
  1260. Comment(V_Error,'PPU is not static linked : '+PPUFn);
  1261. Exit;
  1262. end;
  1263. { Check if shared is allowed }
  1264. if tsystem(inppu.header.target) in [system_i386_go32v2] then
  1265. begin
  1266. Comment(V_Error,'Shared library not supported for ppu target, switching to static library');
  1267. MakeStatic:=true;
  1268. end;
  1269. { Create the new ppu }
  1270. if PPUFn=PPLFn then
  1271. outppu:=tppufile.create('ppumove.$$$')
  1272. else
  1273. outppu:=tppufile.create(PPLFn);
  1274. outppu.createfile;
  1275. { Create new header, with the new flags }
  1276. outppu.header:=inppu.header;
  1277. outppu.header.flags:=outppu.header.flags or uf_in_library;
  1278. if MakeStatic then
  1279. outppu.header.flags:=outppu.header.flags or uf_static_linked
  1280. else
  1281. outppu.header.flags:=outppu.header.flags or uf_shared_linked;
  1282. { read until the object files are found }
  1283. untilb:=iblinkunitofiles;
  1284. repeat
  1285. b:=inppu.readentry;
  1286. if b in [ibendinterface,ibend] then
  1287. begin
  1288. inppu.free;
  1289. outppu.free;
  1290. Comment(V_Error,'No files to be linked found : '+PPUFn);
  1291. Exit;
  1292. end;
  1293. if b<>untilb then
  1294. begin
  1295. repeat
  1296. inppu.getdatabuf(buffer,sizeof(buffer),l);
  1297. outppu.putdata(buffer,l);
  1298. until l<sizeof(buffer);
  1299. outppu.writeentry(b);
  1300. end;
  1301. until (b=untilb);
  1302. { we have now reached the section for the files which need to be added,
  1303. now add them to the list }
  1304. case b of
  1305. iblinkunitofiles :
  1306. begin
  1307. { add all o files, and save the entry when not creating a static
  1308. library to keep staticlinking possible }
  1309. while not inppu.endofentry do
  1310. begin
  1311. s:=inppu.getstring;
  1312. m:=inppu.getlongint;
  1313. if not MakeStatic then
  1314. begin
  1315. outppu.putstring(s);
  1316. outppu.putlongint(m);
  1317. end;
  1318. current_module.linkotherofiles.add(s,link_always);;
  1319. end;
  1320. if not MakeStatic then
  1321. outppu.writeentry(b);
  1322. end;
  1323. { iblinkunitstaticlibs :
  1324. begin
  1325. AddToLinkFiles(ExtractLib(inppu.getstring));
  1326. if not inppu.endofentry then
  1327. begin
  1328. repeat
  1329. inppu.getdatabuf(buffer^,bufsize,l);
  1330. outppu.putdata(buffer^,l);
  1331. until l<bufsize;
  1332. outppu.writeentry(b);
  1333. end;
  1334. end; }
  1335. end;
  1336. { just add a new entry with the new lib }
  1337. if MakeStatic then
  1338. begin
  1339. outppu.putstring('imp'+current_module.realmodulename^);
  1340. outppu.putlongint(link_static);
  1341. outppu.writeentry(iblinkunitstaticlibs)
  1342. end
  1343. else
  1344. begin
  1345. outppu.putstring('imp'+current_module.realmodulename^);
  1346. outppu.putlongint(link_shared);
  1347. outppu.writeentry(iblinkunitsharedlibs);
  1348. end;
  1349. { read all entries until the end and write them also to the new ppu }
  1350. repeat
  1351. b:=inppu.readentry;
  1352. { don't write ibend, that's written automatically }
  1353. if b<>ibend then
  1354. begin
  1355. if b=iblinkothersharedlibs then
  1356. begin
  1357. while not inppu.endofentry do
  1358. begin
  1359. s:=inppu.getstring;
  1360. m:=inppu.getlongint;
  1361. outppu.putstring(s);
  1362. outppu.putlongint(m);
  1363. { strip lib prefix }
  1364. if copy(s,1,3)='lib' then
  1365. delete(s,1,3);
  1366. ext:=ExtractFileExt(s);
  1367. if ext<>'' then
  1368. delete(s,length(s)-length(ext)+1,length(ext));
  1369. current_module.linkOtherSharedLibs.add(s,link_always);
  1370. end;
  1371. end
  1372. else
  1373. repeat
  1374. inppu.getdatabuf(buffer,sizeof(buffer),l);
  1375. outppu.putdata(buffer,l);
  1376. until l<sizeof(buffer);
  1377. outppu.writeentry(b);
  1378. end;
  1379. until b=ibend;
  1380. { write the last stuff and close }
  1381. outppu.flush;
  1382. outppu.writeheader;
  1383. outppu.free;
  1384. inppu.free;
  1385. { rename }
  1386. if PPUFn=PPLFn then
  1387. begin
  1388. {$push}{$I-}
  1389. assign(f,PPUFn);
  1390. erase(f);
  1391. assign(f,'ppumove.$$$');
  1392. rename(f,PPUFn);
  1393. {$pop}
  1394. if ioresult<>0 then;
  1395. end;
  1396. Result:=True;
  1397. end;
  1398. procedure createimportlibfromexports;
  1399. var
  1400. hp : texported_item;
  1401. begin
  1402. hp:=texported_item(current_module._exports.first);
  1403. while assigned(hp) do
  1404. begin
  1405. current_module.AddExternalImport(current_module.realmodulename^,hp.name^,hp.name^,hp.index,hp.is_var,false);
  1406. hp:=texported_item(hp.next);
  1407. end;
  1408. end;
  1409. procedure proc_package;
  1410. var
  1411. main_file : tinputfile;
  1412. hp,hp2 : tmodule;
  1413. {finalize_procinfo,
  1414. init_procinfo,
  1415. main_procinfo : tcgprocinfo;}
  1416. force_init_final : boolean;
  1417. uu : tused_unit;
  1418. module_name: ansistring;
  1419. begin
  1420. Status.IsPackage:=true;
  1421. Status.IsExe:=true;
  1422. parse_only:=false;
  1423. {main_procinfo:=nil;
  1424. init_procinfo:=nil;
  1425. finalize_procinfo:=nil;}
  1426. if not RelocSectionSetExplicitly then
  1427. RelocSection:=true;
  1428. { Relocation works only without stabs under Windows when }
  1429. { external linker (LD) is used. LD generates relocs for }
  1430. { stab sections which is not loaded in memory. It causes }
  1431. { AV error when DLL is loaded and relocation is needed. }
  1432. { Internal linker does not have this problem. }
  1433. if RelocSection and
  1434. (target_info.system in systems_all_windows+[system_i386_wdosx]) and
  1435. (cs_link_extern in current_settings.globalswitches) then
  1436. begin
  1437. include(current_settings.globalswitches,cs_link_strip);
  1438. { Warning stabs info does not work with reloc section !! }
  1439. if (cs_debuginfo in current_settings.moduleswitches) and
  1440. (target_dbg.id=dbg_stabs) then
  1441. begin
  1442. Message1(parser_w_parser_reloc_no_debug,current_module.mainsource);
  1443. Message(parser_w_parser_win32_debug_needs_WN);
  1444. exclude(current_settings.moduleswitches,cs_debuginfo);
  1445. end;
  1446. end;
  1447. { get correct output names }
  1448. main_file := current_scanner.inputfile;
  1449. while assigned(main_file.next) do
  1450. main_file := main_file.next;
  1451. current_module.SetFileName(main_file.path+main_file.name,true);
  1452. { consume _PACKAGE word }
  1453. consume(_ID);
  1454. module_name:=orgpattern;
  1455. consume(_ID);
  1456. while token=_POINT do
  1457. begin
  1458. consume(_POINT);
  1459. module_name:=module_name+'.'+orgpattern;
  1460. consume(_ID);
  1461. end;
  1462. current_module.setmodulename(module_name);
  1463. current_module.ispackage:=true;
  1464. exportlib.preparelib(module_name);
  1465. if tf_library_needs_pic in target_info.flags then
  1466. include(current_settings.moduleswitches,cs_create_pic);
  1467. consume(_SEMICOLON);
  1468. { global switches are read, so further changes aren't allowed }
  1469. current_module.in_global:=false;
  1470. { setup things using the switches }
  1471. setupglobalswitches;
  1472. { set implementation flag }
  1473. current_module.in_interface:=false;
  1474. current_module.interface_compiled:=true;
  1475. { insert after the unit symbol tables the static symbol table }
  1476. { of the program }
  1477. current_module.localsymtable:=tstaticsymtable.create(current_module.modulename^,current_module.moduleid);
  1478. {Load the units used by the program we compile.}
  1479. if token=_REQUIRES then
  1480. begin
  1481. end;
  1482. {Load the units used by the program we compile.}
  1483. if (token=_ID) and (idtoken=_CONTAINS) then
  1484. begin
  1485. { consume _CONTAINS word }
  1486. consume(_ID);
  1487. while true do
  1488. begin
  1489. if token=_ID then
  1490. begin
  1491. module_name:=pattern;
  1492. consume(_ID);
  1493. while token=_POINT do
  1494. begin
  1495. consume(_POINT);
  1496. module_name:=module_name+'.'+orgpattern;
  1497. consume(_ID);
  1498. end;
  1499. AddUnit(module_name);
  1500. end
  1501. else
  1502. consume(_ID);
  1503. if token=_COMMA then
  1504. consume(_COMMA)
  1505. else break;
  1506. end;
  1507. consume(_SEMICOLON);
  1508. end;
  1509. { All units are read, now give them a number }
  1510. current_module.updatemaps;
  1511. {Insert the name of the main program into the symbol table.}
  1512. if current_module.realmodulename^<>'' then
  1513. tabstractunitsymtable(current_module.localsymtable).insertunit(tunitsym.create(current_module.realmodulename^,current_module));
  1514. Message1(parser_u_parsing_implementation,current_module.mainsource);
  1515. symtablestack.push(current_module.localsymtable);
  1516. { create whole program optimisation information }
  1517. current_module.wpoinfo:=tunitwpoinfo.create;
  1518. { should we force unit initialization? }
  1519. force_init_final:=tstaticsymtable(current_module.localsymtable).needs_init_final;
  1520. if force_init_final or cnodeutils.force_init then
  1521. {init_procinfo:=gen_implicit_initfinal(uf_init,current_module.localsymtable)};
  1522. { Add symbol to the exports section for win32 so smartlinking a
  1523. DLL will include the edata section }
  1524. if assigned(exportlib) and
  1525. (target_info.system in [system_i386_win32,system_i386_wdosx]) and
  1526. ((current_module.flags and uf_has_exports)<>0) then
  1527. current_asmdata.asmlists[al_procedures].concat(tai_const.createname(make_mangledname('EDATA',current_module.localsymtable,''),0));
  1528. { all labels must be defined before generating code }
  1529. if Errorcount=0 then
  1530. tstoredsymtable(current_module.localsymtable).checklabels;
  1531. symtablestack.pop(current_module.localsymtable);
  1532. { consume the last point }
  1533. consume(_END);
  1534. consume(_POINT);
  1535. if (Errorcount=0) then
  1536. begin
  1537. { test static symtable }
  1538. tstoredsymtable(current_module.localsymtable).allsymbolsused;
  1539. tstoredsymtable(current_module.localsymtable).allprivatesused;
  1540. tstoredsymtable(current_module.localsymtable).check_forwards;
  1541. current_module.allunitsused;
  1542. end;
  1543. new_section(current_asmdata.asmlists[al_globals],sec_data,'_FPCDummy',4);
  1544. current_asmdata.asmlists[al_globals].concat(tai_symbol.createname_global('_FPCDummy',AT_DATA,0));
  1545. current_asmdata.asmlists[al_globals].concat(tai_const.create_32bit(0));
  1546. new_section(current_asmdata.asmlists[al_procedures],sec_code,'',0);
  1547. current_asmdata.asmlists[al_procedures].concat(tai_symbol.createname_global('_DLLMainCRTStartup',AT_FUNCTION,0));
  1548. gen_fpc_dummy(current_asmdata.asmlists[al_procedures]);
  1549. current_asmdata.asmlists[al_procedures].concat(tai_const.createname('_FPCDummy',0));
  1550. { leave when we got an error }
  1551. if (Errorcount>0) and not status.skip_error then
  1552. begin
  1553. Message1(unit_f_errors_in_unit,tostr(Errorcount));
  1554. status.skip_error:=true;
  1555. exit;
  1556. end;
  1557. { remove all unused units, this happends when units are removed
  1558. from the uses clause in the source and the ppu was already being loaded }
  1559. hp:=tmodule(loaded_units.first);
  1560. while assigned(hp) do
  1561. begin
  1562. hp2:=hp;
  1563. hp:=tmodule(hp.next);
  1564. if hp2.is_unit and
  1565. not assigned(hp2.globalsymtable) then
  1566. loaded_units.remove(hp2);
  1567. end;
  1568. { force exports }
  1569. uu:=tused_unit(usedunits.first);
  1570. while assigned(uu) do
  1571. begin
  1572. uu.u.globalsymtable.symlist.ForEachCall(@insert_export,uu.u.globalsymtable);
  1573. { check localsymtable for exports too to get public symbols }
  1574. uu.u.localsymtable.symlist.ForEachCall(@insert_export,uu.u.localsymtable);
  1575. { create special exports }
  1576. if (uu.u.flags and uf_init)<>0 then
  1577. procexport(make_mangledname('INIT$',uu.u.globalsymtable,''));
  1578. if (uu.u.flags and uf_finalize)<>0 then
  1579. procexport(make_mangledname('FINALIZE$',uu.u.globalsymtable,''));
  1580. if (uu.u.flags and uf_threadvars)=uf_threadvars then
  1581. varexport(make_mangledname('THREADVARLIST',uu.u.globalsymtable,''));
  1582. uu:=tused_unit(uu.next);
  1583. end;
  1584. {$ifdef arm}
  1585. { Insert .pdata section for arm-wince.
  1586. It is needed for exception handling. }
  1587. if target_info.system in [system_arm_wince] then
  1588. InsertPData;
  1589. {$endif arm}
  1590. { generate debuginfo }
  1591. if (cs_debuginfo in current_settings.moduleswitches) then
  1592. current_debuginfo.inserttypeinfo;
  1593. exportlib.generatelib;
  1594. { write all our exports to the import library,
  1595. needs to be done after exportlib.generatelib; }
  1596. createimportlibfromexports;
  1597. { generate imports }
  1598. if current_module.ImportLibraryList.Count>0 then
  1599. importlib.generatelib;
  1600. { Reference all DEBUGINFO sections from the main .fpc section }
  1601. if (cs_debuginfo in current_settings.moduleswitches) then
  1602. current_debuginfo.referencesections(current_asmdata.asmlists[al_procedures]);
  1603. { insert own objectfile }
  1604. insertobjectfile;
  1605. { assemble and link }
  1606. create_objectfile;
  1607. { We might need the symbols info if not using
  1608. the default do_extractsymbolinfo
  1609. which is a dummy function PM }
  1610. needsymbolinfo:=do_extractsymbolinfo<>@def_extractsymbolinfo;
  1611. { release all local symtables that are not needed anymore }
  1612. if (not needsymbolinfo) then
  1613. free_localsymtables(current_module.localsymtable);
  1614. { leave when we got an error }
  1615. if (Errorcount>0) and not status.skip_error then
  1616. begin
  1617. Message1(unit_f_errors_in_unit,tostr(Errorcount));
  1618. status.skip_error:=true;
  1619. exit;
  1620. end;
  1621. if (not current_module.is_unit) then
  1622. begin
  1623. { finally rewrite all units included into the package }
  1624. uu:=tused_unit(usedunits.first);
  1625. while assigned(uu) do
  1626. begin
  1627. RewritePPU(uu.u.ppufilename,uu.u.ppufilename);
  1628. uu:=tused_unit(uu.next);
  1629. end;
  1630. { create the executable when we are at level 1 }
  1631. if (compile_level=1) then
  1632. begin
  1633. { create global resource file by collecting all resource files }
  1634. CollectResourceFiles;
  1635. { write .def file }
  1636. if (cs_link_deffile in current_settings.globalswitches) then
  1637. deffile.writefile;
  1638. { insert all .o files from all loaded units and
  1639. unload the units, we don't need them anymore.
  1640. Keep the current_module because that is still needed }
  1641. hp:=tmodule(loaded_units.first);
  1642. while assigned(hp) do
  1643. begin
  1644. { the package itself contains no code so far }
  1645. linker.AddModuleFiles(hp);
  1646. hp2:=tmodule(hp.next);
  1647. if (hp<>current_module) and
  1648. (not needsymbolinfo) then
  1649. begin
  1650. loaded_units.remove(hp);
  1651. hp.free;
  1652. end;
  1653. hp:=hp2;
  1654. end;
  1655. linker.MakeSharedLibrary
  1656. end;
  1657. { Give Fatal with error count for linker errors }
  1658. if (Errorcount>0) and not status.skip_error then
  1659. begin
  1660. Message1(unit_f_errors_in_unit,tostr(Errorcount));
  1661. status.skip_error:=true;
  1662. end;
  1663. end;
  1664. end;
  1665. procedure proc_program(islibrary : boolean);
  1666. var
  1667. main_file : tinputfile;
  1668. hp,hp2 : tmodule;
  1669. finalize_procinfo,
  1670. init_procinfo,
  1671. main_procinfo : tcgprocinfo;
  1672. force_init_final : boolean;
  1673. resources_used : boolean;
  1674. program_name : ansistring;
  1675. begin
  1676. DLLsource:=islibrary;
  1677. Status.IsLibrary:=IsLibrary;
  1678. Status.IsPackage:=false;
  1679. Status.IsExe:=true;
  1680. parse_only:=false;
  1681. main_procinfo:=nil;
  1682. init_procinfo:=nil;
  1683. finalize_procinfo:=nil;
  1684. resources_used:=false;
  1685. { DLL defaults to create reloc info }
  1686. if islibrary then
  1687. begin
  1688. if not RelocSectionSetExplicitly then
  1689. RelocSection:=true;
  1690. end;
  1691. { Relocation works only without stabs under Windows when }
  1692. { external linker (LD) is used. LD generates relocs for }
  1693. { stab sections which is not loaded in memory. It causes }
  1694. { AV error when DLL is loaded and relocation is needed. }
  1695. { Internal linker does not have this problem. }
  1696. if RelocSection and
  1697. (target_info.system in systems_all_windows+[system_i386_wdosx]) and
  1698. (cs_link_extern in current_settings.globalswitches) then
  1699. begin
  1700. include(current_settings.globalswitches,cs_link_strip);
  1701. { Warning stabs info does not work with reloc section !! }
  1702. if (cs_debuginfo in current_settings.moduleswitches) and
  1703. (target_dbg.id=dbg_stabs) then
  1704. begin
  1705. Message1(parser_w_parser_reloc_no_debug,current_module.mainsource);
  1706. Message(parser_w_parser_win32_debug_needs_WN);
  1707. exclude(current_settings.moduleswitches,cs_debuginfo);
  1708. end;
  1709. end;
  1710. { get correct output names }
  1711. main_file := current_scanner.inputfile;
  1712. while assigned(main_file.next) do
  1713. main_file := main_file.next;
  1714. current_module.SetFileName(main_file.path+main_file.name,true);
  1715. if islibrary then
  1716. begin
  1717. consume(_LIBRARY);
  1718. program_name:=orgpattern;
  1719. consume(_ID);
  1720. while token=_POINT do
  1721. begin
  1722. consume(_POINT);
  1723. program_name:=program_name+'.'+orgpattern;
  1724. consume(_ID);
  1725. end;
  1726. current_module.setmodulename(program_name);
  1727. current_module.islibrary:=true;
  1728. exportlib.preparelib(program_name);
  1729. if tf_library_needs_pic in target_info.flags then
  1730. include(current_settings.moduleswitches,cs_create_pic);
  1731. consume(_SEMICOLON);
  1732. end
  1733. else
  1734. { is there an program head ? }
  1735. if token=_PROGRAM then
  1736. begin
  1737. consume(_PROGRAM);
  1738. program_name:=orgpattern;
  1739. consume(_ID);
  1740. while token=_POINT do
  1741. begin
  1742. consume(_POINT);
  1743. program_name:=program_name+'.'+orgpattern;
  1744. consume(_ID);
  1745. end;
  1746. current_module.setmodulename(program_name);
  1747. if (target_info.system in systems_unit_program_exports) then
  1748. exportlib.preparelib(program_name);
  1749. if token=_LKLAMMER then
  1750. begin
  1751. consume(_LKLAMMER);
  1752. repeat
  1753. consume(_ID);
  1754. until not try_to_consume(_COMMA);
  1755. consume(_RKLAMMER);
  1756. end;
  1757. consume(_SEMICOLON);
  1758. end
  1759. else if (target_info.system in systems_unit_program_exports) then
  1760. exportlib.preparelib(current_module.realmodulename^);
  1761. { global switches are read, so further changes aren't allowed }
  1762. current_module.in_global:=false;
  1763. { setup things using the switches }
  1764. setupglobalswitches;
  1765. { set implementation flag }
  1766. current_module.in_interface:=false;
  1767. current_module.interface_compiled:=true;
  1768. { insert after the unit symbol tables the static symbol table }
  1769. { of the program }
  1770. current_module.localsymtable:=tstaticsymtable.create(current_module.modulename^,current_module.moduleid);
  1771. { load standard units (system,objpas,profile unit) }
  1772. loaddefaultunits;
  1773. { Load units provided on the command line }
  1774. loadautounits;
  1775. {Load the units used by the program we compile.}
  1776. if token=_USES then
  1777. loadunits;
  1778. { All units are read, now give them a number }
  1779. current_module.updatemaps;
  1780. {Insert the name of the main program into the symbol table.}
  1781. if current_module.realmodulename^<>'' then
  1782. tabstractunitsymtable(current_module.localsymtable).insertunit(tunitsym.create(current_module.realmodulename^,current_module));
  1783. Message1(parser_u_parsing_implementation,current_module.mainsource);
  1784. symtablestack.push(current_module.localsymtable);
  1785. {$ifdef jvm}
  1786. { fake classdef to represent the class corresponding to the unit }
  1787. addmoduleclass;
  1788. {$endif}
  1789. { Insert _GLOBAL_OFFSET_TABLE_ symbol if system uses it }
  1790. maybe_load_got;
  1791. { create whole program optimisation information }
  1792. current_module.wpoinfo:=tunitwpoinfo.create;
  1793. { The program intialization needs an alias, so it can be called
  1794. from the bootstrap code.}
  1795. if islibrary then
  1796. begin
  1797. main_procinfo:=create_main_proc(make_mangledname('',current_module.localsymtable,mainaliasname),potype_proginit,current_module.localsymtable);
  1798. { Win32 startup code needs a single name }
  1799. if not(target_info.system in (systems_darwin+systems_aix)) then
  1800. main_procinfo.procdef.aliasnames.insert('PASCALMAIN')
  1801. else
  1802. main_procinfo.procdef.aliasnames.insert(target_info.Cprefix+'PASCALMAIN')
  1803. end
  1804. else if (target_info.system in ([system_i386_netware,system_i386_netwlibc,system_powerpc_macos]+systems_darwin+systems_aix)) then
  1805. begin
  1806. main_procinfo:=create_main_proc('PASCALMAIN',potype_proginit,current_module.localsymtable);
  1807. end
  1808. else
  1809. begin
  1810. main_procinfo:=create_main_proc(mainaliasname,potype_proginit,current_module.localsymtable);
  1811. main_procinfo.procdef.aliasnames.insert('PASCALMAIN');
  1812. end;
  1813. main_procinfo.parse_body;
  1814. { save file pos for debuginfo }
  1815. current_module.mainfilepos:=main_procinfo.entrypos;
  1816. { Generate specializations of objectdefs methods }
  1817. generate_specialization_procs;
  1818. { add implementations for synthetic method declarations added by
  1819. the compiler }
  1820. add_synthetic_method_implementations(current_module.localsymtable);
  1821. { should we force unit initialization? }
  1822. force_init_final:=tstaticsymtable(current_module.localsymtable).needs_init_final;
  1823. if force_init_final or cnodeutils.force_init then
  1824. init_procinfo:=gen_implicit_initfinal(uf_init,current_module.localsymtable);
  1825. { Add symbol to the exports section for win32 so smartlinking a
  1826. DLL will include the edata section }
  1827. if assigned(exportlib) and
  1828. (target_info.system in [system_i386_win32,system_i386_wdosx]) and
  1829. ((current_module.flags and uf_has_exports)<>0) then
  1830. current_asmdata.asmlists[al_procedures].concat(tai_const.createname(make_mangledname('EDATA',current_module.localsymtable,''),0));
  1831. { finalize? }
  1832. if token=_FINALIZATION then
  1833. begin
  1834. { Parse the finalize }
  1835. finalize_procinfo:=create_main_proc(make_mangledname('',current_module.localsymtable,'finalize'),potype_unitfinalize,current_module.localsymtable);
  1836. finalize_procinfo.procdef.aliasnames.insert(make_mangledname('FINALIZE$',current_module.localsymtable,''));
  1837. finalize_procinfo.procdef.aliasnames.insert('PASCALFINALIZE');
  1838. finalize_procinfo.parse_body;
  1839. end
  1840. else
  1841. if force_init_final or cnodeutils.force_final then
  1842. finalize_procinfo:=gen_implicit_initfinal(uf_finalize,current_module.localsymtable);
  1843. { the finalization routine of libraries is generic (and all libraries need to }
  1844. { be finalized, so they can finalize any units they use }
  1845. if (islibrary) then
  1846. exportlib.setfininame(current_asmdata.asmlists[al_procedures],'FPC_LIB_EXIT');
  1847. { all labels must be defined before generating code }
  1848. if Errorcount=0 then
  1849. tstoredsymtable(current_module.localsymtable).checklabels;
  1850. { See remark in unit init/final }
  1851. main_procinfo.generate_code;
  1852. main_procinfo.resetprocdef;
  1853. release_main_proc(main_procinfo);
  1854. if assigned(init_procinfo) then
  1855. begin
  1856. { initialization can be implicit only }
  1857. current_module.flags:=current_module.flags or uf_init;
  1858. init_procinfo.code:=cnodeutils.wrap_proc_body(init_procinfo.procdef,init_procinfo.code);
  1859. init_procinfo.generate_code;
  1860. init_procinfo.resetprocdef;
  1861. release_main_proc(init_procinfo);
  1862. end;
  1863. if assigned(finalize_procinfo) then
  1864. begin
  1865. if force_init_final or
  1866. cnodeutils.force_init or
  1867. not(has_no_code(finalize_procinfo.code)) then
  1868. begin
  1869. finalize_procinfo.code:=cnodeutils.wrap_proc_body(finalize_procinfo.procdef,finalize_procinfo.code);
  1870. finalize_procinfo.generate_code;
  1871. current_module.flags:=current_module.flags or uf_finalize;
  1872. end;
  1873. finalize_procinfo.resetprocdef;
  1874. release_main_proc(finalize_procinfo);
  1875. end;
  1876. symtablestack.pop(current_module.localsymtable);
  1877. { consume the last point }
  1878. consume(_POINT);
  1879. { reset wpo flags for all defs }
  1880. reset_all_defs;
  1881. if (Errorcount=0) then
  1882. begin
  1883. { test static symtable }
  1884. tstoredsymtable(current_module.localsymtable).allsymbolsused;
  1885. tstoredsymtable(current_module.localsymtable).allprivatesused;
  1886. tstoredsymtable(current_module.localsymtable).check_forwards;
  1887. current_module.allunitsused;
  1888. end;
  1889. { leave when we got an error }
  1890. if (Errorcount>0) and not status.skip_error then
  1891. begin
  1892. Message1(unit_f_errors_in_unit,tostr(Errorcount));
  1893. status.skip_error:=true;
  1894. exit;
  1895. end;
  1896. { remove all unused units, this happens when units are removed
  1897. from the uses clause in the source and the ppu was already being loaded }
  1898. hp:=tmodule(loaded_units.first);
  1899. while assigned(hp) do
  1900. begin
  1901. hp2:=hp;
  1902. hp:=tmodule(hp.next);
  1903. if hp2.is_unit and
  1904. not assigned(hp2.globalsymtable) then
  1905. begin
  1906. loaded_units.remove(hp2);
  1907. unloaded_units.concat(hp2);
  1908. end;
  1909. end;
  1910. { do we need to add the variants unit? }
  1911. maybeloadvariantsunit;
  1912. { Now that everything has been compiled we know if we need resource
  1913. support. If not, remove the unit. }
  1914. resources_used:=MaybeRemoveResUnit;
  1915. linker.initsysinitunitname;
  1916. if target_info.system in systems_internal_sysinit then
  1917. begin
  1918. { add start/halt unit }
  1919. AddUnit(linker.sysinitunit);
  1920. end;
  1921. {$ifdef arm}
  1922. { Insert .pdata section for arm-wince.
  1923. It is needed for exception handling. }
  1924. if target_info.system in [system_arm_wince] then
  1925. InsertPData;
  1926. {$endif arm}
  1927. cnodeutils.InsertThreadvars;
  1928. { generate rtti/init tables }
  1929. write_persistent_type_info(current_module.localsymtable,false);
  1930. { if an Objective-C module, generate rtti and module info }
  1931. MaybeGenerateObjectiveCImageInfo(nil,current_module.localsymtable);
  1932. { generate wrappers for interfaces }
  1933. gen_intf_wrappers(current_asmdata.asmlists[al_procedures],current_module.localsymtable,false);
  1934. { generate imports }
  1935. if current_module.ImportLibraryList.Count>0 then
  1936. importlib.generatelib;
  1937. { generate debuginfo }
  1938. if (cs_debuginfo in current_settings.moduleswitches) then
  1939. current_debuginfo.inserttypeinfo;
  1940. if islibrary or (target_info.system in systems_unit_program_exports) then
  1941. exportlib.generatelib;
  1942. { Reference all DEBUGINFO sections from the main .fpc section }
  1943. if (cs_debuginfo in current_settings.moduleswitches) then
  1944. current_debuginfo.referencesections(current_asmdata.asmlists[al_procedures]);
  1945. { Resource strings }
  1946. GenerateResourceStrings;
  1947. { Windows widestring needing initialization }
  1948. cnodeutils.InsertWideInits;
  1949. { Resourcestring references (const foo:string=someresourcestring) }
  1950. cnodeutils.InsertResStrInits;
  1951. { insert Tables and StackLength }
  1952. cnodeutils.InsertInitFinalTable;
  1953. cnodeutils.InsertThreadvarTablesTable;
  1954. cnodeutils.InsertResourceTablesTable;
  1955. cnodeutils.InsertWideInitsTablesTable;
  1956. cnodeutils.InsertResStrTablesTable;
  1957. cnodeutils.InsertMemorySizes;
  1958. {$ifdef FPC_HAS_SYSTEMS_INTERRUPT_TABLE}
  1959. if target_info.system in systems_interrupt_table then
  1960. InsertInterruptTable;
  1961. {$endif FPC_HAS_SYSTEMS_INTERRUPT_TABLE}
  1962. { Insert symbol to resource info }
  1963. cnodeutils.InsertResourceInfo(resources_used);
  1964. { create callframe info }
  1965. create_dwarf_frame;
  1966. { insert own objectfile }
  1967. insertobjectfile;
  1968. { assemble and link }
  1969. create_objectfile;
  1970. { We might need the symbols info if not using
  1971. the default do_extractsymbolinfo
  1972. which is a dummy function PM }
  1973. needsymbolinfo:=
  1974. (do_extractsymbolinfo<>@def_extractsymbolinfo) or
  1975. ((current_settings.genwpoptimizerswitches*WPOptimizationsNeedingAllUnitInfo)<>[]);
  1976. { release all local symtables that are not needed anymore }
  1977. if (not needsymbolinfo) then
  1978. free_localsymtables(current_module.localsymtable);
  1979. { leave when we got an error }
  1980. if (Errorcount>0) and not status.skip_error then
  1981. begin
  1982. Message1(unit_f_errors_in_unit,tostr(Errorcount));
  1983. status.skip_error:=true;
  1984. exit;
  1985. end;
  1986. if (not current_module.is_unit) then
  1987. begin
  1988. { create the executable when we are at level 1 }
  1989. if (compile_level=1) then
  1990. begin
  1991. { create global resource file by collecting all resource files }
  1992. CollectResourceFiles;
  1993. { write .def file }
  1994. if (cs_link_deffile in current_settings.globalswitches) then
  1995. deffile.writefile;
  1996. { insert all .o files from all loaded units and
  1997. unload the units, we don't need them anymore.
  1998. Keep the current_module because that is still needed }
  1999. hp:=tmodule(loaded_units.first);
  2000. while assigned(hp) do
  2001. begin
  2002. linker.AddModuleFiles(hp);
  2003. hp2:=tmodule(hp.next);
  2004. if (hp<>current_module) and
  2005. (not needsymbolinfo) then
  2006. begin
  2007. loaded_units.remove(hp);
  2008. hp.free;
  2009. end;
  2010. hp:=hp2;
  2011. end;
  2012. { free also unneeded units we didn't free before }
  2013. if not needsymbolinfo then
  2014. unloaded_units.Clear;
  2015. { finally we can create a executable }
  2016. if DLLSource then
  2017. linker.MakeSharedLibrary
  2018. else
  2019. linker.MakeExecutable;
  2020. { collect all necessary information for whole-program optimization }
  2021. wpoinfomanager.extractwpoinfofromprogram;
  2022. end;
  2023. { Give Fatal with error count for linker errors }
  2024. if (Errorcount>0) and not status.skip_error then
  2025. begin
  2026. Message1(unit_f_errors_in_unit,tostr(Errorcount));
  2027. status.skip_error:=true;
  2028. end;
  2029. end;
  2030. end;
  2031. end.