pmodules.pas 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833
  1. {
  2. $Id$
  3. Copyright (c) 1998 by Florian Klaempfl
  4. Handles the parsing and loading of the modules (ppufiles)
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program; if not, write to the Free Software
  15. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  16. ****************************************************************************
  17. }
  18. unit pmodules;
  19. {$define New_GDB}
  20. interface
  21. procedure proc_unit;
  22. procedure proc_program(islibrary : boolean);
  23. implementation
  24. uses
  25. globtype,version,systems,tokens,
  26. cobjects,comphook,globals,verbose,files,
  27. symtable,aasm,hcodegen,
  28. link,assemble,import,export,gendef,ppu,comprsrc
  29. {$ifdef i386}
  30. {$ifndef OLDASM}
  31. ,i386base,i386asm
  32. {$else} ,i386
  33. {$endif}
  34. {$endif}
  35. {$ifdef m68k}
  36. ,m68k
  37. {$endif}
  38. ,scanner,pbase,psystem,pdecl,psub,parser;
  39. procedure create_objectfile;
  40. begin
  41. { create the .s file and assemble it }
  42. GenerateAsm;
  43. { resource files }
  44. CompileResourceFiles;
  45. { When creating a library call the linker. And insert the output
  46. of the linker files }
  47. if (cs_create_sharedlib in aktmoduleswitches) then
  48. Linker.MakeSharedLibrary
  49. else
  50. if (cs_create_staticlib in aktmoduleswitches) or
  51. ((cs_smartlink in aktmoduleswitches) and target_asm.needar) then
  52. Linker.MakeStaticLibrary(SmartLinkFilesCnt);
  53. end;
  54. procedure insertobjectfile;
  55. { Insert the used object file for this unit in the used list for this unit }
  56. begin
  57. if (cs_create_sharedlib in aktmoduleswitches) then
  58. begin
  59. current_module^.linksharedlibs.insert(current_module^.sharedlibfilename^);
  60. current_module^.flags:=current_module^.flags or uf_shared_linked;
  61. end
  62. else
  63. begin
  64. if (cs_create_staticlib in aktmoduleswitches) or
  65. (cs_smartlink in aktmoduleswitches) then
  66. begin
  67. current_module^.linkstaticlibs.insert(current_module^.staticlibfilename^);
  68. current_module^.flags:=current_module^.flags or uf_static_linked;
  69. end
  70. else
  71. begin
  72. current_module^.linkunitfiles.insert(current_module^.objfilename^);
  73. current_module^.flags:=current_module^.flags or uf_obj_linked;
  74. end;
  75. end;
  76. end;
  77. procedure insertsegment;
  78. procedure fixseg(p:paasmoutput;sec:tsection);
  79. begin
  80. p^.insert(new(pai_section,init(sec)));
  81. if (cs_smartlink in aktmoduleswitches) then
  82. p^.insert(new(pai_cut,init));
  83. p^.concat(new(pai_section,init(sec_none)));
  84. end;
  85. begin
  86. {Insert Ident of the compiler}
  87. if (not (cs_smartlink in aktmoduleswitches))
  88. {$ifndef EXTDEBUG}
  89. and (not current_module^.is_unit)
  90. {$endif}
  91. then
  92. begin
  93. datasegment^.insert(new(pai_align,init(4)));
  94. datasegment^.insert(new(pai_string,init('FPC '+version_string+
  95. ' for '+target_cpu_string+' - '+target_info.short_name)));
  96. end;
  97. { Insert start and end of sections }
  98. fixseg(codesegment,sec_code);
  99. fixseg(datasegment,sec_data);
  100. fixseg(bsssegment,sec_bss);
  101. { we should use .rdata section for these two no ? }
  102. { .rdata is a read only data section (PM) }
  103. fixseg(rttilist,sec_data);
  104. fixseg(consts,sec_data);
  105. {$ifdef GDB}
  106. if assigned(debuglist) then
  107. fixseg(debuglist,sec_code);
  108. {$endif GDB}
  109. end;
  110. procedure InsertInitFinalTable;
  111. var
  112. hp : pused_unit;
  113. unitinits : taasmoutput;
  114. count : longint;
  115. begin
  116. unitinits.init;
  117. count:=0;
  118. hp:=pused_unit(usedunits.first);
  119. while assigned(hp) do
  120. begin
  121. { call the unit init code and make it external }
  122. if (hp^.u^.flags and (uf_init or uf_finalize))<>0 then
  123. begin
  124. if (hp^.u^.flags and uf_init)<>0 then
  125. begin
  126. unitinits.concat(new(pai_const_symbol,init('INIT$$'+hp^.u^.modulename^)));
  127. concat_external('INIT$$'+hp^.u^.modulename^,EXT_NEAR);
  128. end
  129. else
  130. unitinits.concat(new(pai_const,init_32bit(0)));
  131. if (hp^.u^.flags and uf_finalize)<>0 then
  132. begin
  133. unitinits.concat(new(pai_const_symbol,init('FINALIZE$$'+hp^.u^.modulename^)));
  134. concat_external('FINALIZE$$'+hp^.u^.modulename^,EXT_NEAR);
  135. end
  136. else
  137. unitinits.concat(new(pai_const,init_32bit(0)));
  138. inc(count);
  139. end;
  140. hp:=Pused_unit(hp^.next);
  141. end;
  142. { TableCount,InitCount }
  143. unitinits.insert(new(pai_const,init_32bit(0)));
  144. unitinits.insert(new(pai_const,init_32bit(count)));
  145. unitinits.insert(new(pai_symbol,init_global('INITFINAL')));
  146. { insert in data segment }
  147. if (cs_smartlink in aktmoduleswitches) then
  148. datasegment^.concat(new(pai_cut,init));
  149. datasegment^.concatlist(@unitinits);
  150. unitinits.done;
  151. end;
  152. procedure insertheap;
  153. begin
  154. if (cs_smartlink in aktmoduleswitches) then
  155. begin
  156. bsssegment^.concat(new(pai_cut,init));
  157. datasegment^.concat(new(pai_cut,init));
  158. end;
  159. { On the Macintosh Classic M68k Architecture
  160. The Heap variable is simply a POINTER to the
  161. real HEAP. The HEAP must be set up by the RTL
  162. and must store the pointer in this value.
  163. On OS/2 the heap is also intialized by the RTL. We do
  164. not output a pointer }
  165. case target_info.target of
  166. {$ifdef i386}
  167. target_i386_OS2:
  168. ;
  169. {$endif i386}
  170. {$ifdef m68k}
  171. target_m68k_Mac:
  172. bsssegment^.concat(new(pai_datablock,init_global('HEAP',4)));
  173. target_m68k_PalmOS:
  174. ;
  175. {$endif m68k}
  176. else
  177. bsssegment^.concat(new(pai_datablock,init_global('HEAP',heapsize)));
  178. end;
  179. {$ifdef i386}
  180. datasegment^.concat(new(pai_symbol,init_global('HEAPSIZE')));
  181. datasegment^.concat(new(pai_const,init_32bit(heapsize)));
  182. {$endif i386}
  183. {$ifdef m68k}
  184. if target_info.target<>target_m68k_PalmOS then
  185. begin
  186. datasegment^.concat(new(pai_symbol,init_global('HEAP_SIZE')));
  187. datasegment^.concat(new(pai_const,init_32bit(heapsize)));
  188. end;
  189. {$endif m68k}
  190. end;
  191. procedure inserttargetspecific;
  192. begin
  193. case target_info.target of
  194. {$ifdef i386}
  195. target_i386_GO32V2 :
  196. begin
  197. { stacksize can be specified }
  198. datasegment^.concat(new(pai_symbol,init_global('__stklen')));
  199. datasegment^.concat(new(pai_const,init_32bit(stacksize)));
  200. end;
  201. target_i386_WIN32 :
  202. begin
  203. { Generate an external entry to be sure that _mainCRTStarup will be
  204. linked, can't use concat_external because those aren't written for
  205. asw (PFV) }
  206. target_link.bindcmd[1]:=target_link.bindcmd[1]+' -d '+deffile.fname;
  207. if DLLsource then
  208. target_link.binders:=2;
  209. if RelocSection then
  210. begin
  211. target_link.linkcmd:=target_link.linkcmd+' --base-file base.$$$';
  212. target_link.bindcmd[1]:=target_link.bindcmd[1]+' --base-file base.$$$';
  213. target_link.binders:=2;
  214. end;
  215. if apptype=at_gui then
  216. begin
  217. target_link.linkcmd:='--subsystem windows '+target_link.linkcmd;
  218. target_link.bindcmd[2]:='--subsystem windows '+target_link.bindcmd[2];
  219. end;
  220. if DLLsource then
  221. begin
  222. target_link.linkcmd:='--dll '+target_link.linkcmd;
  223. target_link.bindcmd[2]:='--dll '+target_link.bindcmd[2];
  224. end;
  225. end;
  226. {$endif i386}
  227. {$ifdef m68k}
  228. target_m68k_Atari :
  229. begin
  230. { stacksize can be specified }
  231. datasegment^.concat(new(pai_symbol,init_global('__stklen')));
  232. datasegment^.concat(new(pai_const,init_32bit(stacksize)));
  233. end;
  234. {$endif m68k}
  235. end;
  236. end;
  237. function loadunit(const s : string;compile_system:boolean) : pmodule;forward;
  238. procedure load_usedunits(compile_system:boolean);
  239. var
  240. pu : pused_unit;
  241. loaded_unit : pmodule;
  242. load_refs : boolean;
  243. nextmapentry : longint;
  244. begin
  245. load_refs:=true;
  246. { init the map }
  247. new(current_module^.map);
  248. fillchar(current_module^.map^,sizeof(tunitmap),#0);
  249. {$ifdef NEWMAP}
  250. current_module^.map^[0]:=current_module;
  251. {$endif NEWMAP}
  252. nextmapentry:=1;
  253. { load the used units from interface }
  254. current_module^.in_implementation:=false;
  255. pu:=pused_unit(current_module^.used_units.first);
  256. while assigned(pu) do
  257. begin
  258. if (not pu^.loaded) and (pu^.in_interface) then
  259. begin
  260. loaded_unit:=loadunit(pu^.name^,false);
  261. if current_module^.compiled then
  262. exit;
  263. { register unit in used units }
  264. pu^.u:=loaded_unit;
  265. pu^.loaded:=true;
  266. { doubles are not important for that list PM }
  267. pu^.u^.dependent_units.concat(new(pdependent_unit,init(current_module)));
  268. { need to recompile the current unit ? }
  269. if loaded_unit^.crc<>pu^.checksum then
  270. begin
  271. Message2(unit_u_recompile_crc_change,current_module^.modulename^,pu^.name^);
  272. current_module^.do_compile:=true;
  273. dispose(current_module^.map);
  274. current_module^.map:=nil;
  275. exit;
  276. end;
  277. { setup the map entry for deref }
  278. {$ifndef NEWMAP}
  279. current_module^.map^[nextmapentry]:=loaded_unit^.globalsymtable;
  280. {$else NEWMAP}
  281. current_module^.map^[nextmapentry]:=loaded_unit;
  282. {$endif NEWMAP}
  283. inc(nextmapentry);
  284. if nextmapentry>maxunits then
  285. Message(unit_f_too_much_units);
  286. end;
  287. pu:=pused_unit(pu^.next);
  288. end;
  289. { ok, now load the unit }
  290. current_module^.globalsymtable:=new(punitsymtable,loadasunit);
  291. { now only read the implementation part }
  292. current_module^.in_implementation:=true;
  293. { load the used units from implementation }
  294. pu:=pused_unit(current_module^.used_units.first);
  295. while assigned(pu) do
  296. begin
  297. if (not pu^.loaded) and (not pu^.in_interface) then
  298. begin
  299. loaded_unit:=loadunit(pu^.name^,false);
  300. if current_module^.compiled then
  301. exit;
  302. { register unit in used units }
  303. pu^.u:=loaded_unit;
  304. pu^.loaded:=true;
  305. { need to recompile the current unit ? }
  306. if loaded_unit^.crc<>pu^.checksum then
  307. begin
  308. Message2(unit_u_recompile_crc_change,current_module^.modulename^,pu^.name^);
  309. current_module^.do_compile:=true;
  310. dispose(current_module^.map);
  311. current_module^.map:=nil;
  312. exit;
  313. end;
  314. { setup the map entry for deref }
  315. {$ifndef NEWMAP}
  316. current_module^.map^[nextmapentry]:=loaded_unit^.globalsymtable;
  317. {$else NEWMAP}
  318. current_module^.map^[nextmapentry]:=loaded_unit;
  319. {$endif NEWMAP}
  320. inc(nextmapentry);
  321. if nextmapentry>maxunits then
  322. Message(unit_f_too_much_units);
  323. end;
  324. pu:=pused_unit(pu^.next);
  325. end;
  326. { load browser info if stored }
  327. if ((current_module^.flags and uf_has_browser)<>0) and load_refs then
  328. punitsymtable(current_module^.globalsymtable)^.load_symtable_refs;
  329. { remove the map, it's not needed anymore }
  330. dispose(current_module^.map);
  331. current_module^.map:=nil;
  332. end;
  333. function loadunit(const s : string;compile_system:boolean) : pmodule;
  334. const
  335. ImplIntf : array[boolean] of string[15]=('interface','implementation');
  336. var
  337. st : punitsymtable;
  338. second_time : boolean;
  339. old_current_ppu : pppufile;
  340. old_current_module,hp,hp2,hp3 : pmodule;
  341. name : string;{ necessary because
  342. current_module^.mainsource^ is reset in compile !! }
  343. scanner : pscannerfile;
  344. procedure loadppufile;
  345. begin
  346. { load interface section }
  347. if not current_module^.do_compile then
  348. load_interface;
  349. { only load units when we don't recompile }
  350. if not current_module^.do_compile then
  351. load_usedunits(compile_system);
  352. { recompile if set }
  353. if current_module^.do_compile then
  354. begin
  355. { we don't need the ppufile anymore }
  356. if assigned(current_module^.ppufile) then
  357. begin
  358. dispose(current_module^.ppufile,done);
  359. current_module^.ppufile:=nil;
  360. end;
  361. { recompile the unit or give a fatal error if sources not available }
  362. if not(current_module^.sources_avail) then
  363. if (not current_module^.search_unit(current_module^.modulename^,true))
  364. and (length(current_module^.modulename^)>8) then
  365. current_module^.search_unit(copy(current_module^.modulename^,1,8),true);
  366. if not(current_module^.sources_avail) then
  367. Message1(unit_f_cant_compile_unit,current_module^.modulename^)
  368. else
  369. begin
  370. if current_module^.in_second_compile then
  371. Message1(parser_d_compiling_second_time,current_module^.modulename^);
  372. current_scanner^.tempcloseinputfile;
  373. name:=current_module^.mainsource^;
  374. if assigned(scanner) then
  375. scanner^.invalid:=true;
  376. compile(name,compile_system);
  377. if (not current_scanner^.invalid) then
  378. current_scanner^.tempopeninputfile;
  379. end;
  380. end
  381. else
  382. begin
  383. { only reassemble ? }
  384. if (current_module^.do_assemble) then
  385. OnlyAsm;
  386. end;
  387. if assigned(current_module^.ppufile) then
  388. begin
  389. dispose(current_module^.ppufile,done);
  390. current_module^.ppufile:=nil;
  391. end;
  392. end;
  393. begin
  394. old_current_module:=current_module;
  395. old_current_ppu:=current_ppu;
  396. { Info }
  397. Message3(unit_u_load_unit,current_module^.modulename^,ImplIntf[current_module^.in_implementation],s);
  398. { unit not found }
  399. st:=nil;
  400. { search all loaded units }
  401. hp:=pmodule(loaded_units.first);
  402. while assigned(hp) do
  403. begin
  404. if hp^.modulename^=s then
  405. begin
  406. { forced to reload ? }
  407. if hp^.do_reload then
  408. break;
  409. { the unit is already registered }
  410. { and this means that the unit }
  411. { is already compiled }
  412. { else there is a cyclic unit use }
  413. if assigned(hp^.globalsymtable) then
  414. st:=punitsymtable(hp^.globalsymtable)
  415. else
  416. begin
  417. { both units in interface ? }
  418. if (not current_module^.in_implementation) and (not hp^.in_implementation) then
  419. begin
  420. { check for a cycle }
  421. hp2:=current_module^.loaded_from;
  422. while assigned(hp2) and (hp2<>hp) do
  423. begin
  424. if hp2^.in_implementation then
  425. hp2:=nil
  426. else
  427. hp2:=hp2^.loaded_from;
  428. end;
  429. if assigned(hp2) then
  430. Message2(unit_f_circular_unit_reference,current_module^.modulename^,hp^.modulename^);
  431. end;
  432. end;
  433. break;
  434. end;
  435. { the next unit }
  436. hp:=pmodule(hp^.next);
  437. end;
  438. { the unit is not in the symtable stack }
  439. if (not assigned(st)) then
  440. begin
  441. if assigned(hp) then
  442. begin
  443. { remove the old unit }
  444. loaded_units.remove(hp);
  445. scanner:=hp^.scanner;
  446. hp^.reset;
  447. { now reload all dependent units }
  448. hp2:=pmodule(loaded_units.first);
  449. while assigned(hp2) do
  450. begin
  451. if hp2^.do_reload then
  452. begin
  453. hp2^.do_reload:=false;
  454. hp3:=loadunit(hp^.modulename^,false);
  455. end;
  456. hp2:=pmodule(hp2^.next);
  457. end;
  458. hp^.scanner:=scanner;
  459. { try to reopen ppu }
  460. hp^.search_unit(s,false);
  461. { try to load the unit a second time first }
  462. current_module:=hp;
  463. current_module^.in_second_compile:=true;
  464. Message1(unit_u_second_load_unit,current_module^.modulename^);
  465. second_time:=true;
  466. end
  467. else
  468. { generates a new unit info record }
  469. begin
  470. current_module:=new(pmodule,init(s,true));
  471. scanner:=nil;
  472. second_time:=false;
  473. end;
  474. current_ppu:=current_module^.ppufile;
  475. { now we can register the unit }
  476. current_module^.loaded_from:=old_current_module;
  477. loaded_units.insert(current_module);
  478. { now realy load the ppu }
  479. loadppufile;
  480. { set compiled flag }
  481. current_module^.compiled:=true;
  482. { register the unit _once_ }
  483. { this is buggy PM }
  484. if not second_time then
  485. usedunits.concat(new(pused_unit,init(current_module,true)));
  486. { load return pointer }
  487. hp:=current_module;
  488. end;
  489. { set the old module }
  490. current_ppu:=old_current_ppu;
  491. current_module:=old_current_module;
  492. loadunit:=hp;
  493. end;
  494. procedure loaddefaultunits;
  495. var
  496. hp : pmodule;
  497. begin
  498. { are we compiling the system unit? }
  499. if (cs_compilesystem in aktmoduleswitches) then
  500. begin
  501. { create system defines }
  502. createconstdefs;
  503. { we don't need to reset anything, it's already done in parser.pas }
  504. exit;
  505. end;
  506. { insert the system unit, it is allways the first }
  507. hp:=loadunit(upper(target_info.system_unit),true);
  508. systemunit:=hp^.globalsymtable;
  509. { it's always the first unit }
  510. systemunit^.next:=nil;
  511. symtablestack:=systemunit;
  512. { add to the used units }
  513. current_module^.used_units.concat(new(pused_unit,init(hp,true)));
  514. refsymtable^.insert(new(punitsym,init('SYSTEM',systemunit)));
  515. { read default constant definitions }
  516. make_ref:=false;
  517. readconstdefs;
  518. make_ref:=true;
  519. { if POWER is defined in the RTL then use it for starstar overloading }
  520. getsym('POWER',false);
  521. if assigned(srsym) and (srsym^.typ=procsym) and (overloaded_operators[STARSTAR]=nil) then
  522. overloaded_operators[STARSTAR]:=pprocsym(srsym);
  523. { Objpas unit? }
  524. if m_objpas in aktmodeswitches then
  525. begin
  526. hp:=loadunit('OBJPAS',false);
  527. objpasunit:=hp^.globalsymtable;
  528. { insert in stack }
  529. objpasunit^.next:=symtablestack;
  530. symtablestack:=objpasunit;
  531. { add to the used units }
  532. current_module^.used_units.concat(new(pused_unit,init(hp,true)));
  533. refsymtable^.insert(new(punitsym,init('OBJPAS',objpasunit)));
  534. end
  535. else
  536. objpasunit:=nil;
  537. { Profile unit? Needed for go32v2 only }
  538. if (cs_profile in aktmoduleswitches) and (target_info.target=target_i386_go32v2) then
  539. begin
  540. hp:=loadunit('PROFILE',false);
  541. psymtable(hp^.globalsymtable)^.next:=symtablestack;
  542. symtablestack:=hp^.globalsymtable;
  543. { add to the used units }
  544. current_module^.used_units.concat(new(pused_unit,init(hp,true)));
  545. refsymtable^.insert(new(punitsym,init('PROFILE',hp^.globalsymtable)));
  546. end;
  547. { Heaptrc unit? (not needed for units), this is here to be sure that it is really
  548. loaded as first unit }
  549. if (cs_gdb_heaptrc in aktglobalswitches) and not(current_module^.is_unit)then
  550. begin
  551. hp:=loadunit('HEAPTRC',false);
  552. psymtable(hp^.globalsymtable)^.next:=symtablestack;
  553. symtablestack:=hp^.globalsymtable;
  554. { add to the used units }
  555. current_module^.used_units.concat(new(pused_unit,init(hp,true)));
  556. refsymtable^.insert(new(punitsym,init('HEAPTRC',hp^.globalsymtable)));
  557. end;
  558. { save default symtablestack }
  559. defaultsymtablestack:=symtablestack;
  560. end;
  561. procedure loadunits;
  562. var
  563. s : stringid;
  564. pu,
  565. hp : pused_unit;
  566. hp2 : pmodule;
  567. hp3 : psymtable;
  568. oldprocsym:Pprocsym;
  569. begin
  570. oldprocsym:=aktprocsym;
  571. consume(_USES);
  572. {$ifdef DEBUG}
  573. test_symtablestack;
  574. {$endif DEBUG}
  575. repeat
  576. s:=pattern;
  577. consume(ID);
  578. { Give a warning if objpas is loaded }
  579. if s='OBJPAS' then
  580. Message(parser_w_no_objpas_use_mode);
  581. { check if the unit is already used }
  582. pu:=pused_unit(current_module^.used_units.first);
  583. while assigned(pu) do
  584. begin
  585. if (pu^.name^=s) then
  586. break;
  587. pu:=pused_unit(pu^.next);
  588. end;
  589. { avoid uses of itself }
  590. if not assigned(pu) and (s<>current_module^.modulename^) then
  591. begin
  592. { load the unit }
  593. hp2:=loadunit(s,false);
  594. { the current module uses the unit hp2 }
  595. current_module^.used_units.concat(new(pused_unit,init(hp2,not current_module^.in_implementation)));
  596. pused_unit(current_module^.used_units.last)^.in_uses:=true;
  597. if current_module^.compiled then
  598. exit;
  599. refsymtable^.insert(new(punitsym,init(s,hp2^.globalsymtable)));
  600. end
  601. else
  602. Message1(sym_e_duplicate_id,s);
  603. if token=COMMA then
  604. begin
  605. pattern:='';
  606. consume(COMMA);
  607. end
  608. else
  609. break;
  610. until false;
  611. consume(SEMICOLON);
  612. { set the symtable to systemunit so it gets reorderd correctly }
  613. symtablestack:=defaultsymtablestack;
  614. { now insert the units in the symtablestack }
  615. hp:=pused_unit(current_module^.used_units.first);
  616. while assigned(hp) do
  617. begin
  618. {$IfDef GDB}
  619. {$IfnDef New_GDB}
  620. if (cs_debuginfo in aktmoduleswitches) and
  621. not hp^.is_stab_written then
  622. begin
  623. punitsymtable(hp^.u^.globalsymtable)^.concattypestabto(debuglist);
  624. hp^.is_stab_written:=true;
  625. hp^.unitid:=psymtable(hp^.u^.globalsymtable)^.unitid;
  626. end;
  627. {$endIf nDef New_GDB}
  628. {$EndIf GDB}
  629. if hp^.in_uses then
  630. begin
  631. hp3:=symtablestack;
  632. while assigned(hp3) do
  633. begin
  634. { insert units only once ! }
  635. if hp^.u^.globalsymtable=hp3 then
  636. break;
  637. hp3:=hp3^.next;
  638. { unit isn't inserted }
  639. if hp3=nil then
  640. begin
  641. psymtable(hp^.u^.globalsymtable)^.next:=symtablestack;
  642. symtablestack:=psymtable(hp^.u^.globalsymtable);
  643. {$ifdef CHAINPROCSYMS}
  644. symtablestack^.chainprocsyms;
  645. {$endif CHAINPROCSYMS}
  646. {$ifdef DEBUG}
  647. test_symtablestack;
  648. {$endif DEBUG}
  649. end;
  650. end;
  651. end;
  652. hp:=pused_unit(hp^.next);
  653. end;
  654. aktprocsym:=oldprocsym;
  655. end;
  656. procedure write_gdb_info;
  657. {$IfDef GDB}
  658. var
  659. hp : pused_unit;
  660. begin
  661. if not (cs_debuginfo in aktmoduleswitches) then
  662. exit;
  663. { now insert the units in the symtablestack }
  664. hp:=pused_unit(current_module^.used_units.first);
  665. while assigned(hp) do
  666. begin
  667. if (cs_debuginfo in aktmoduleswitches) and
  668. not hp^.is_stab_written then
  669. begin
  670. punitsymtable(hp^.u^.globalsymtable)^.concattypestabto(debuglist);
  671. hp^.is_stab_written:=true;
  672. hp^.unitid:=psymtable(hp^.u^.globalsymtable)^.unitid;
  673. end;
  674. hp:=pused_unit(hp^.next);
  675. end;
  676. if current_module^.in_implementation then
  677. begin
  678. if assigned(current_module^.localsymtable) then
  679. begin
  680. { all types }
  681. punitsymtable(current_module^.localsymtable)^.concattypestabto(debuglist);
  682. { and all local symbols}
  683. punitsymtable(current_module^.localsymtable)^.concatstabto(debuglist);
  684. end;
  685. end
  686. else
  687. begin
  688. if assigned(current_module^.globalsymtable) then
  689. begin
  690. { all types }
  691. punitsymtable(current_module^.globalsymtable)^.concattypestabto(debuglist);
  692. { and all local symbols}
  693. punitsymtable(current_module^.globalsymtable)^.concatstabto(debuglist);
  694. end;
  695. end;
  696. end;
  697. {$Else GDB}
  698. begin
  699. end;
  700. {$EndIf GDB}
  701. procedure parse_implementation_uses(symt:Psymtable);
  702. begin
  703. if token=_USES then
  704. begin
  705. symt^.symtabletype:=unitsymtable;
  706. loadunits;
  707. symt^.symtabletype:=globalsymtable;
  708. {$ifdef DEBUG}
  709. test_symtablestack;
  710. {$endif DEBUG}
  711. end;
  712. end;
  713. procedure gen_main_procsym(const name:string;options:longint;st:psymtable);
  714. var
  715. stt : psymtable;
  716. begin
  717. {Generate a procsym for main}
  718. make_ref:=false;
  719. aktprocsym:=new(Pprocsym,init(name));
  720. {Try to insert in in static symtable ! }
  721. stt:=symtablestack;
  722. symtablestack:=st;
  723. aktprocsym^.definition:=new(Pprocdef,init);
  724. symtablestack:=stt;
  725. aktprocsym^.definition^.options:=aktprocsym^.definition^.options or options;
  726. aktprocsym^.definition^.setmangledname(target_os.cprefix+name);
  727. aktprocsym^.definition^.forwarddef:=false;
  728. make_ref:=true;
  729. { The localst is a local symtable. Change it into the static
  730. symtable }
  731. dispose(aktprocsym^.definition^.localst,done);
  732. aktprocsym^.definition^.localst:=st;
  733. { and insert the procsym in symtable }
  734. st^.insert(aktprocsym);
  735. { set some informations about the main program }
  736. with procinfo do
  737. begin
  738. retdef:=voiddef;
  739. _class:=nil;
  740. call_offset:=8;
  741. framepointer:=frame_pointer;
  742. flags:=0;
  743. end;
  744. end;
  745. procedure proc_unit;
  746. function is_assembler_generated:boolean;
  747. begin
  748. is_assembler_generated:=(Errorcount=0) and
  749. not(
  750. codesegment^.empty and
  751. datasegment^.empty and
  752. bsssegment^.empty and
  753. ((importssection=nil) or importssection^.empty) and
  754. ((resourcesection=nil) or resourcesection^.empty)
  755. );
  756. end;
  757. var
  758. names : Tstringcontainer;
  759. st : psymtable;
  760. unitst : punitsymtable;
  761. {$ifdef GDB}
  762. pu : pused_unit;
  763. {$endif GDB}
  764. {$ifdef Test_Double_checksum}
  765. store_crc : longint;
  766. {$endif}
  767. s1,s2 : ^string; {Saves stack space}
  768. begin
  769. consume(_UNIT);
  770. if token=ID then
  771. begin
  772. { create filenames and unit name }
  773. current_module^.SetFileName(current_scanner^.inputfile^.path^+current_scanner^.inputfile^.name^,true);
  774. stringdispose(current_module^.modulename);
  775. current_module^.modulename:=stringdup(upper(pattern));
  776. { check for system unit }
  777. new(s1);
  778. new(s2);
  779. s1^:=upper(target_info.system_unit);
  780. s2^:=upper(SplitName(current_scanner^.inputfile^.name^));
  781. if (cs_compilesystem in aktmoduleswitches) then
  782. begin
  783. if ((length(current_module^.modulename^)>8) or
  784. (current_module^.modulename^<>s1^) or
  785. (current_module^.modulename^<>s2^)) then
  786. Message1(unit_e_illegal_unit_name,current_module^.modulename^);
  787. end
  788. else
  789. begin
  790. if (cs_check_unit_name in aktglobalswitches) and
  791. not((current_module^.modulename^=s2^) or
  792. ((length(current_module^.modulename^)>8) and
  793. (copy(current_module^.modulename^,1,8)=s2^))) then
  794. Message1(unit_e_illegal_unit_name,current_module^.modulename^);
  795. if (current_module^.modulename^=s1^) then
  796. Message(unit_w_switch_us_missed);
  797. end;
  798. dispose(s2);
  799. dispose(s1);
  800. end;
  801. consume(ID);
  802. consume(SEMICOLON);
  803. consume(_INTERFACE);
  804. { global switches are read, so further changes aren't allowed }
  805. current_module^.in_global:=false;
  806. { can't have local browser when no global browser }
  807. if (cs_local_browser in aktmoduleswitches) and
  808. not(cs_browser in aktmoduleswitches) then
  809. aktmoduleswitches:=aktmoduleswitches-[cs_local_browser];
  810. Message1(unit_u_start_parse_interface,current_module^.modulename^);
  811. { update status }
  812. status.currentmodule:=current_module^.modulename^;
  813. { maybe turn off m_objpas if we are compiling objpas }
  814. if (current_module^.modulename^='OBJPAS') then
  815. aktmodeswitches:=aktmodeswitches-[m_objpas];
  816. { this should be placed after uses !!}
  817. {$ifndef UseNiceNames}
  818. procprefix:='_'+current_module^.modulename^+'$$';
  819. {$else UseNiceNames}
  820. procprefix:='_'+tostr(length(current_module^.modulename^))+lowercase(current_module^.modulename^)+'_';
  821. {$endif UseNiceNames}
  822. parse_only:=true;
  823. { generate now the global symboltable }
  824. st:=new(punitsymtable,init(globalsymtable,current_module^.modulename^));
  825. refsymtable:=st;
  826. unitst:=punitsymtable(st);
  827. { define first as local to overcome dependency conflicts }
  828. current_module^.localsymtable:=st;
  829. { the unit name must be usable as a unit specifier }
  830. { inside the unit itself (PM) }
  831. { this also forbids to have another symbol }
  832. { with the same name as the unit }
  833. refsymtable^.insert(new(punitsym,init(current_module^.modulename^,unitst)));
  834. { a unit compiled at command line must be inside the loaded_unit list }
  835. if (compile_level=1) then
  836. loaded_units.insert(current_module);
  837. { load default units, like the system unit }
  838. loaddefaultunits;
  839. { reset }
  840. make_ref:=true;
  841. lexlevel:=0;
  842. { insert qualifier for the system unit (allows system.writeln) }
  843. if not(cs_compilesystem in aktmoduleswitches) then
  844. begin
  845. if token=_USES then
  846. begin
  847. unitst^.symtabletype:=unitsymtable;
  848. loadunits;
  849. { has it been compiled at a higher level ?}
  850. if current_module^.compiled then
  851. begin
  852. { this unit symtable is obsolete }
  853. { dispose(unitst,done);
  854. disposed as localsymtable !! }
  855. exit;
  856. end;
  857. unitst^.symtabletype:=globalsymtable;
  858. end;
  859. { ... but insert the symbol table later }
  860. st^.next:=symtablestack;
  861. symtablestack:=st;
  862. end
  863. else
  864. { while compiling a system unit, some types are directly inserted }
  865. begin
  866. st^.next:=symtablestack;
  867. symtablestack:=st;
  868. insert_intern_types(st);
  869. end;
  870. { now we know the place to insert the constants }
  871. constsymtable:=symtablestack;
  872. { move the global symtab from the temporary local to global }
  873. current_module^.globalsymtable:=current_module^.localsymtable;
  874. current_module^.localsymtable:=nil;
  875. reset_global_defs;
  876. { ... parse the declarations }
  877. read_interface_declarations;
  878. { leave when we got an error }
  879. if (Errorcount>0) and not status.skip_error then
  880. begin
  881. Message1(unit_f_errors_in_unit,tostr(Errorcount));
  882. status.skip_error:=true;
  883. exit;
  884. end;
  885. {$ifdef New_GDB}
  886. write_gdb_info;
  887. {$endIf Def New_GDB}
  888. {$ifdef Test_Double_checksum}
  889. if (Errorcount=0) then
  890. writeunitas(current_module^.ppufilename^,punitsymtable(symtablestack),true);
  891. {$endif Test_Double_checksum}
  892. { Parse the implementation section }
  893. consume(_IMPLEMENTATION);
  894. current_module^.in_implementation:=true;
  895. Message1(unit_u_start_parse_implementation,current_module^.modulename^);
  896. parse_only:=false;
  897. { generates static symbol table }
  898. st:=new(punitsymtable,init(staticsymtable,current_module^.modulename^));
  899. current_module^.localsymtable:=st;
  900. { remove the globalsymtable from the symtable stack }
  901. { to reinsert it after loading the implementation units }
  902. symtablestack:=unitst^.next;
  903. { we don't want implementation units symbols in unitsymtable !! PM }
  904. refsymtable:=st;
  905. { Read the implementation units }
  906. parse_implementation_uses(unitst);
  907. if current_module^.compiled then
  908. begin
  909. exit;
  910. end;
  911. { reset ranges/stabs in exported definitions }
  912. reset_global_defs;
  913. { All units are read, now give them a number }
  914. numberunits;
  915. { now we can change refsymtable }
  916. refsymtable:=st;
  917. { but reinsert the global symtable as lasts }
  918. unitst^.next:=symtablestack;
  919. symtablestack:=unitst;
  920. {$ifdef DEBUG}
  921. test_symtablestack;
  922. {$endif DEBUG}
  923. constsymtable:=symtablestack;
  924. {$ifdef Splitheap}
  925. if testsplit then
  926. begin
  927. Split_Heap;
  928. allow_special:=true;
  929. Switch_to_temp_heap;
  930. end;
  931. { it will report all crossings }
  932. allow_special:=false;
  933. {$endif Splitheap}
  934. { Generate a procsym }
  935. gen_main_procsym(current_module^.modulename^+'_init',pounitinit,st);
  936. { Compile the unit }
  937. codegen_newprocedure;
  938. names.init;
  939. names.insert('INIT$$'+current_module^.modulename^);
  940. names.insert(target_os.cprefix+current_module^.modulename^+'_init');
  941. compile_proc_body(names,true,false);
  942. names.done;
  943. codegen_doneprocedure;
  944. { avoid self recursive destructor call !! PM }
  945. aktprocsym^.definition^.localst:=nil;
  946. { finalize? }
  947. if token=_FINALIZATION then
  948. begin
  949. { set module options }
  950. current_module^.flags:=current_module^.flags or uf_finalize;
  951. { Generate a procsym }
  952. gen_main_procsym(current_module^.modulename^+'_finalize',pounitfinalize,st);
  953. { Compile the finalize }
  954. codegen_newprocedure;
  955. names.init;
  956. names.insert('FINALIZE$$'+current_module^.modulename^);
  957. names.insert(target_os.cprefix+current_module^.modulename^+'_finalize');
  958. compile_proc_body(names,true,false);
  959. names.done;
  960. codegen_doneprocedure;
  961. { avoid self recursive destructor call !! PM }
  962. aktprocsym^.definition^.localst:=nil;
  963. end;
  964. { the last char should always be a point }
  965. consume(POINT);
  966. { avoid self recursive destructor call !! PM }
  967. aktprocsym^.definition^.localst:=nil;
  968. { absence does not matter here !! }
  969. aktprocsym^.definition^.forwarddef:=false;
  970. { test static symtable }
  971. if (Errorcount=0) then
  972. st^.allsymbolsused;
  973. { size of the static data }
  974. datasize:=st^.datasize;
  975. {$ifdef GDB}
  976. { add all used definitions even for implementation}
  977. if (cs_debuginfo in aktmoduleswitches) then
  978. begin
  979. {$IfnDef New_GDB}
  980. if assigned(current_module^.globalsymtable) then
  981. begin
  982. { all types }
  983. punitsymtable(current_module^.globalsymtable)^.concattypestabto(debuglist);
  984. { and all local symbols}
  985. punitsymtable(current_module^.globalsymtable)^.concatstabto(debuglist);
  986. end;
  987. { all local types }
  988. punitsymtable(st)^.concattypestabto(debuglist);
  989. { and all local symbols}
  990. st^.concatstabto(debuglist);
  991. {$else New_GDB}
  992. write_gdb_info;
  993. {$endIf Def New_GDB}
  994. end;
  995. {$endif GDB}
  996. reset_global_defs;
  997. { tests, if all (interface) forwards are resolved }
  998. if (Errorcount=0) then
  999. symtablestack^.check_forwards;
  1000. { now we have a correct unit, change the symtable type }
  1001. current_module^.in_implementation:=false;
  1002. symtablestack^.symtabletype:=unitsymtable;
  1003. {$ifdef GDB}
  1004. punitsymtable(symtablestack)^.is_stab_written:=false;
  1005. {$endif GDB}
  1006. { leave when we got an error }
  1007. if (Errorcount>0) and not status.skip_error then
  1008. begin
  1009. Message1(unit_f_errors_in_unit,tostr(Errorcount));
  1010. status.skip_error:=true;
  1011. exit;
  1012. end;
  1013. { generate imports }
  1014. if current_module^.uses_imports then
  1015. importlib^.generatelib;
  1016. { insert own objectfile, or say that it's in a library
  1017. (no check for an .o when loading) }
  1018. if is_assembler_generated then
  1019. insertobjectfile;
  1020. if cs_local_browser in aktmoduleswitches then
  1021. current_module^.localsymtable:=refsymtable;
  1022. { Write out the ppufile }
  1023. {$ifdef Test_Double_checksum}
  1024. store_crc:=current_module^.interface_crc;
  1025. {$endif Test_Double_checksum}
  1026. if (Errorcount=0) then
  1027. writeunitas(current_module^.ppufilename^,punitsymtable(symtablestack),false);
  1028. {$ifdef Test_Double_checksum}
  1029. if store_crc<>current_module^.interface_crc then
  1030. Def_comment(V_Warning,current_module^.ppufilename^+' CRC changed '+
  1031. tostr(store_crc)+'<>'+tostr(current_module^.interface_crc));
  1032. {$endif def Test_Double_checksum}
  1033. { must be done only after local symtable ref stores !! }
  1034. closecurrentppu;
  1035. {$ifdef GDB}
  1036. pu:=pused_unit(usedunits.first);
  1037. while assigned(pu) do
  1038. begin
  1039. punitsymtable(pu^.u^.globalsymtable)^.is_stab_written:=false;
  1040. pu:=pused_unit(pu^.next);
  1041. end;
  1042. {$endif GDB}
  1043. { remove static symtable (=refsymtable) here to save some mem }
  1044. if not (cs_local_browser in aktmoduleswitches) then
  1045. begin
  1046. dispose(st,done);
  1047. current_module^.localsymtable:=nil;
  1048. end;
  1049. if is_assembler_generated then
  1050. begin
  1051. { finish asmlist by adding segment starts }
  1052. insertsegment;
  1053. { assemble }
  1054. create_objectfile;
  1055. end;
  1056. { leave when we got an error }
  1057. if (Errorcount>0) and not status.skip_error then
  1058. begin
  1059. Message1(unit_f_errors_in_unit,tostr(Errorcount));
  1060. status.skip_error:=true;
  1061. exit;
  1062. end;
  1063. end;
  1064. procedure proc_program(islibrary : boolean);
  1065. var
  1066. st : psymtable;
  1067. hp : pmodule;
  1068. names : Tstringcontainer;
  1069. begin
  1070. DLLsource:=islibrary;
  1071. parse_only:=false;
  1072. if islibrary then
  1073. begin
  1074. consume(_LIBRARY);
  1075. stringdispose(current_module^.modulename);
  1076. current_module^.modulename:=stringdup(pattern);
  1077. current_module^.islibrary:=true;
  1078. exportlib^.preparelib(pattern);
  1079. consume(ID);
  1080. consume(SEMICOLON);
  1081. end
  1082. else
  1083. { is there an program head ? }
  1084. if token=_PROGRAM then
  1085. begin
  1086. consume(_PROGRAM);
  1087. stringdispose(current_module^.modulename);
  1088. current_module^.modulename:=stringdup(pattern);
  1089. consume(ID);
  1090. if token=LKLAMMER then
  1091. begin
  1092. consume(LKLAMMER);
  1093. idlist;
  1094. consume(RKLAMMER);
  1095. end;
  1096. consume(SEMICOLON);
  1097. end;
  1098. { global switches are read, so further changes aren't allowed }
  1099. current_module^.in_global:=false;
  1100. { can't have local browser when no global browser }
  1101. if (cs_local_browser in aktmoduleswitches) and
  1102. not(cs_browser in aktmoduleswitches) then
  1103. aktmoduleswitches:=aktmoduleswitches-[cs_local_browser];
  1104. { set implementation flag }
  1105. current_module^.in_implementation:=true;
  1106. { insert after the unit symbol tables the static symbol table }
  1107. { of the program }
  1108. st:=new(punitsymtable,init(staticsymtable,current_module^.modulename^));
  1109. current_module^.localsymtable:=st;
  1110. symtablestack:=st;
  1111. refsymtable:=st;
  1112. { necessary for browser }
  1113. loaded_units.insert(current_module);
  1114. { load standard units (system,objpas,profile unit) }
  1115. loaddefaultunits;
  1116. { reset }
  1117. lexlevel:=0;
  1118. {Load the units used by the program we compile.}
  1119. if token=_USES then
  1120. loadunits;
  1121. reset_global_defs;
  1122. {Insert the name of the main program into the symbol table.}
  1123. if current_module^.modulename^<>'' then
  1124. {st^.insert(new(pprogramsym,init(current_module^.modulename^)));}
  1125. st^.insert(new(punitsym,init(current_module^.modulename^,punitsymtable(st))));
  1126. { ...is also constsymtable, this is the symtable where }
  1127. { the elements of enumeration types are inserted }
  1128. constsymtable:=st;
  1129. { Generate a procsym for main }
  1130. gen_main_procsym('main',poproginit,st);
  1131. { reset }
  1132. procprefix:='';
  1133. in_except_block:=false;
  1134. {The program intialization needs an alias, so it can be called
  1135. from the bootstrap code.}
  1136. codegen_newprocedure;
  1137. names.init;
  1138. names.insert('program_init');
  1139. names.insert('PASCALMAIN');
  1140. names.insert(target_os.cprefix+'main');
  1141. {$ifdef m68k}
  1142. if target_info.target=target_m68k_PalmOS then
  1143. names.insert('PilotMain');
  1144. {$endif}
  1145. compile_proc_body(names,true,false);
  1146. names.done;
  1147. { avoid self recursive destructor call !! PM }
  1148. aktprocsym^.definition^.localst:=nil;
  1149. { consider these symbols as global ones }
  1150. { for browser }
  1151. current_module^.globalsymtable:=current_module^.localsymtable;
  1152. current_module^.localsymtable:=nil;
  1153. codegen_doneprocedure;
  1154. { consume the last point }
  1155. consume(POINT);
  1156. {$ifdef New_GDB}
  1157. write_gdb_info;
  1158. {$endIf Def New_GDB}
  1159. { leave when we got an error }
  1160. if (Errorcount>0) and not status.skip_error then
  1161. begin
  1162. Message1(unit_f_errors_in_unit,tostr(Errorcount));
  1163. status.skip_error:=true;
  1164. exit;
  1165. end;
  1166. { generate imports }
  1167. if current_module^.uses_imports then
  1168. importlib^.generatelib;
  1169. if islibrary then
  1170. exportlib^.generatelib;
  1171. { insert heap }
  1172. insertinitfinaltable;
  1173. insertheap;
  1174. inserttargetspecific;
  1175. datasize:=symtablestack^.datasize;
  1176. { finish asmlist by adding segment starts }
  1177. insertsegment;
  1178. { insert own objectfile }
  1179. insertobjectfile;
  1180. { assemble and link }
  1181. create_objectfile;
  1182. { leave when we got an error }
  1183. if (Errorcount>0) and not status.skip_error then
  1184. begin
  1185. Message1(unit_f_errors_in_unit,tostr(Errorcount));
  1186. status.skip_error:=true;
  1187. exit;
  1188. end;
  1189. { create the executable when we are at level 1 }
  1190. if (compile_level=1) then
  1191. begin
  1192. { insert all .o files from all loaded units }
  1193. hp:=pmodule(loaded_units.first);
  1194. while assigned(hp) do
  1195. begin
  1196. Linker.AddModuleFiles(hp);
  1197. hp:=pmodule(hp^.next);
  1198. end;
  1199. { write .def file }
  1200. if (cs_link_deffile in aktglobalswitches) then
  1201. deffile.writefile;
  1202. { finally we can create a executable }
  1203. if (not current_module^.is_unit) then
  1204. Linker.MakeExecutable;
  1205. end;
  1206. end;
  1207. end.
  1208. {
  1209. $Log$
  1210. Revision 1.120 1999-05-13 21:59:35 peter
  1211. * removed oldppu code
  1212. * warning if objpas is loaded from uses
  1213. * first things for new deref writing
  1214. Revision 1.119 1999/05/09 11:38:08 peter
  1215. * don't write .o and link if errors occure during assembling
  1216. Revision 1.118 1999/05/03 18:03:28 peter
  1217. * no ar.exe running field in target_asm
  1218. Revision 1.117 1999/05/01 13:24:32 peter
  1219. * merged nasm compiler
  1220. * old asm moved to oldasm/
  1221. Revision 1.116 1999/04/26 23:22:42 peter
  1222. * fixed double .o file insertion
  1223. Revision 1.115 1999/04/26 18:29:58 peter
  1224. * farpointerdef moved into pointerdef.is_far
  1225. Revision 1.114 1999/04/26 13:31:39 peter
  1226. * release storenumber,double_checksum
  1227. Revision 1.113 1999/04/25 17:32:14 peter
  1228. * fixed double_checksum
  1229. Revision 1.112 1999/04/25 15:08:38 peter
  1230. * small fixes for double_checksum
  1231. Revision 1.111 1999/04/21 09:43:46 peter
  1232. * storenumber works
  1233. * fixed some typos in double_checksum
  1234. + incompatible types type1 and type2 message (with storenumber)
  1235. Revision 1.110 1999/04/17 13:14:52 peter
  1236. * concat_external added for new init/final
  1237. Revision 1.109 1999/04/15 12:19:59 peter
  1238. + finalization support
  1239. Revision 1.108 1999/04/14 09:14:52 peter
  1240. * first things to store the symbol/def number in the ppu
  1241. Revision 1.107 1999/04/08 10:53:54 michael
  1242. * Fixed forgotten ;
  1243. Revision 1.106 1999/04/07 15:39:30 pierre
  1244. + double_checksum code added
  1245. Revision 1.105 1999/03/26 00:05:38 peter
  1246. * released valintern
  1247. + deffile is now removed when compiling is finished
  1248. * ^( compiles now correct
  1249. + static directive
  1250. * shrd fixed
  1251. Revision 1.104 1999/03/24 23:17:17 peter
  1252. * fixed bugs 212,222,225,227,229,231,233
  1253. Revision 1.103 1999/03/18 20:30:46 peter
  1254. + .a writer
  1255. Revision 1.102 1999/03/16 21:07:25 peter
  1256. * check for dup uses
  1257. Revision 1.101 1999/02/25 21:02:43 peter
  1258. * ag386bin updates
  1259. + coff writer
  1260. Revision 1.100 1999/02/23 18:29:20 pierre
  1261. * win32 compilation error fix
  1262. + some work for local browser (not cl=omplete yet)
  1263. Revision 1.99 1999/02/22 13:06:58 pierre
  1264. + -b and -bl options work !
  1265. + cs_local_browser ($L+) is disabled if cs_browser ($Y+)
  1266. is not enabled when quitting global section
  1267. * local vars and procedures are not yet stored into PPU
  1268. Revision 1.98 1999/02/22 02:15:29 peter
  1269. * updates for ag386bin
  1270. Revision 1.97 1999/02/16 00:45:31 peter
  1271. * fixed crashes by forgotten strpnew() for init_symbol
  1272. Revision 1.96 1999/02/05 08:54:27 pierre
  1273. + linkofiles splitted inot linkofiles and linkunitfiles
  1274. because linkofiles must be stored with directory
  1275. to enabled linking of different objects with same name
  1276. in a different directory
  1277. Revision 1.95 1999/02/03 09:44:36 pierre
  1278. * symbol nubering begins with 1 in number_symbols
  1279. * program tmodule has globalsymtable for its staticsymtable
  1280. (to get it displayed in IDE globals list)
  1281. + list of symbol (browcol) greatly improved for IDE
  1282. Revision 1.94 1999/01/12 14:25:31 peter
  1283. + BrowserLog for browser.log generation
  1284. + BrowserCol for browser info in TCollections
  1285. * released all other UseBrowser
  1286. Revision 1.93 1999/01/06 12:39:46 peter
  1287. * renamed resource -> comprsrc (conflicted with FV)
  1288. Revision 1.92 1998/12/28 23:26:23 peter
  1289. + resource file handling ($R directive) for Win32
  1290. Revision 1.91 1998/12/15 17:14:17 peter
  1291. * fix for tp7
  1292. Revision 1.90 1998/12/15 10:23:26 peter
  1293. + -iSO, -iSP, -iTO, -iTP
  1294. Revision 1.89 1998/12/11 00:03:34 peter
  1295. + globtype,tokens,version unit splitted from globals
  1296. Revision 1.88 1998/12/08 10:18:11 peter
  1297. + -gh for heaptrc unit
  1298. Revision 1.87 1998/12/01 23:40:53 pierre
  1299. * new try for correct debug info generation
  1300. Revision 1.86 1998/11/30 09:43:22 pierre
  1301. * some range check bugs fixed (still not working !)
  1302. + added DLL writing support for win32 (also accepts variables)
  1303. + TempAnsi for code that could be used for Temporary ansi strings
  1304. handling
  1305. Revision 1.85 1998/11/28 16:20:54 peter
  1306. + support for dll variables
  1307. Revision 1.84 1998/11/18 09:18:03 pierre
  1308. + automatic loading of profile unit with -pg option
  1309. in go32v2 mode (also defines FPC_PROFILE)
  1310. * some memory leaks removed
  1311. * unreleased temp problem with sets solved
  1312. Revision 1.83 1998/11/16 11:29:00 pierre
  1313. * stackcheck removed for i386_win32
  1314. * exportlist does not crash at least !!
  1315. (was need for tests dir !)z
  1316. Revision 1.82 1998/11/12 12:55:16 pierre
  1317. * fix for bug0176 and bug0177
  1318. Revision 1.81 1998/11/12 11:34:58 peter
  1319. * fix for empty .o files and linking of libs
  1320. Revision 1.80 1998/11/06 09:48:14 pierre
  1321. * double initialization code calling bug fixed
  1322. Revision 1.79 1998/11/03 11:33:11 peter
  1323. + search_unit arg to only search for sources
  1324. Revision 1.78 1998/10/30 12:23:41 peter
  1325. * fix for lognunitname and longunit.pas
  1326. Revision 1.77 1998/10/29 11:35:52 florian
  1327. * some dll support for win32
  1328. * fixed assembler writing for PalmOS
  1329. Revision 1.76 1998/10/28 18:26:15 pierre
  1330. * removed some erros after other errors (introduced by useexcept)
  1331. * stabs works again correctly (for how long !)
  1332. Revision 1.75 1998/10/27 13:45:35 pierre
  1333. * classes get a vmt allways
  1334. * better error info (tried to remove
  1335. several error strings introduced by the tpexcept handling)
  1336. Revision 1.74 1998/10/26 09:34:50 peter
  1337. * unit check name works now for all units, not only systemunit
  1338. Revision 1.73 1998/10/22 23:53:27 peter
  1339. * leave when an error has been in the interface (else other units could
  1340. be compiled with the implementation uses!)
  1341. * don't always compile when not in implementation with a second_load
  1342. Revision 1.72 1998/10/22 11:36:34 peter
  1343. * fixed imports generation at the wrong place
  1344. Revision 1.71 1998/10/21 20:13:10 peter
  1345. * check for importsection for empty asm file
  1346. Revision 1.70 1998/10/20 09:30:05 peter
  1347. * set also in_library flag when no .o is generated
  1348. Revision 1.68 1998/10/19 08:54:59 pierre
  1349. * wrong stabs info corrected once again !!
  1350. + variable vmt offset with vmt field only if required
  1351. implemented now !!!
  1352. Revision 1.67 1998/10/13 13:10:25 peter
  1353. * new style for m68k/i386 infos and enums
  1354. Revision 1.66 1998/10/09 16:36:05 pierre
  1355. * some memory leaks specific to usebrowser define fixed
  1356. * removed tmodule.implsymtable (was like tmodule.localsymtable)
  1357. Revision 1.65 1998/10/09 14:38:55 pierre
  1358. * add a second load for PPU file
  1359. Revision 1.64 1998/10/09 08:56:28 pierre
  1360. * several memory leaks fixed
  1361. Revision 1.63 1998/10/08 23:29:01 peter
  1362. * -vu shows unit info, -vt shows tried/used files
  1363. Revision 1.62 1998/10/08 17:17:25 pierre
  1364. * current_module old scanner tagged as invalid if unit is recompiled
  1365. + added ppheap for better info on tracegetmem of heaptrc
  1366. (adds line column and file index)
  1367. * several memory leaks removed ith help of heaptrc !!
  1368. Revision 1.61 1998/10/08 13:48:47 peter
  1369. * fixed memory leaks for do nothing source
  1370. * fixed unit interdependency
  1371. Revision 1.60 1998/10/06 17:16:54 pierre
  1372. * some memory leaks fixed (thanks to Peter for heaptrc !)
  1373. Revision 1.59 1998/10/05 21:33:26 peter
  1374. * fixed 161,165,166,167,168
  1375. Revision 1.58 1998/09/30 16:43:37 peter
  1376. * fixed unit interdependency with circular uses
  1377. Revision 1.57 1998/09/30 12:11:52 peter
  1378. * fixed circular uses which looped forever
  1379. Revision 1.56 1998/09/28 11:22:15 pierre
  1380. * did not compile for browser
  1381. * merge from fixes
  1382. Revision 1.48.2.1 1998/09/28 10:55:16 pierre
  1383. fix for current_module dispose bug
  1384. Revision 1.55 1998/09/28 11:04:03 peter
  1385. * fixed loaddefaultunits which was at the wrong place for programs, so
  1386. the default defs were not loaded when main was initialized
  1387. Revision 1.54 1998/09/24 23:49:12 peter
  1388. + aktmodeswitches
  1389. Revision 1.53 1998/09/23 12:20:50 pierre
  1390. * main program tmodule had no symtable (crashed browser)
  1391. * unit symbols problem fixed !!
  1392. Revision 1.52 1998/09/22 17:13:49 pierre
  1393. + browsing updated and developed
  1394. records and objects fields are also stored
  1395. Revision 1.51 1998/09/22 15:40:55 peter
  1396. * some extra ifdef GDB
  1397. Revision 1.50 1998/09/21 08:45:17 pierre
  1398. + added vmt_offset in tobjectdef.write for fututre use
  1399. (first steps to have objects without vmt if no virtual !!)
  1400. + added fpu_used field for tabstractprocdef :
  1401. sets this level to 2 if the functions return with value in FPU
  1402. (is then set to correct value at parsing of implementation)
  1403. THIS MIGHT refuse some code with FPU expression too complex
  1404. that were accepted before and even in some cases
  1405. that don't overflow in fact
  1406. ( like if f : float; is a forward that finally in implementation
  1407. only uses one fpu register !!)
  1408. Nevertheless I think that it will improve security on
  1409. FPU operations !!
  1410. * most other changes only for UseBrowser code
  1411. (added symtable references for record and objects)
  1412. local switch for refs to args and local of each function
  1413. (static symtable still missing)
  1414. UseBrowser still not stable and probably broken by
  1415. the definition hash array !!
  1416. Revision 1.49 1998/09/18 08:01:36 pierre
  1417. + improvement on the usebrowser part
  1418. (does not work correctly for now)
  1419. Revision 1.48 1998/09/09 15:33:07 peter
  1420. * fixed in_global to allow directives also after interface token
  1421. Revision 1.47 1998/09/09 11:50:55 pierre
  1422. * forward def are not put in record or objects
  1423. + added check for forwards also in record and objects
  1424. * dummy parasymtable for unit initialization removed from
  1425. symtable stack
  1426. Revision 1.46 1998/09/03 11:24:01 peter
  1427. * moved more inputfile things from tscannerfile to tinputfile
  1428. * changed ifdef Sourceline to cs_asm_source
  1429. Revision 1.45 1998/08/31 12:26:28 peter
  1430. * m68k and palmos updates from surebugfixes
  1431. Revision 1.44 1998/08/26 15:35:33 peter
  1432. * fixed scannerfiles for macros
  1433. + $I %<environment>%
  1434. Revision 1.43 1998/08/26 10:08:47 peter
  1435. * fixed problem with libprefix at the wrong place
  1436. * fixed lib generation with smartlinking and no -CS used
  1437. Revision 1.42 1998/08/19 18:04:54 peter
  1438. * fixed current_module^.in_implementation flag
  1439. Revision 1.41 1998/08/17 10:10:08 peter
  1440. - removed OLDPPU
  1441. Revision 1.40 1998/08/17 09:17:50 peter
  1442. * static/shared linking updates
  1443. Revision 1.39 1998/08/14 21:56:37 peter
  1444. * setting the outputfile using -o works now to create static libs
  1445. Revision 1.38 1998/08/10 14:50:13 peter
  1446. + localswitches, moduleswitches, globalswitches splitting
  1447. Revision 1.37 1998/08/10 10:18:31 peter
  1448. + Compiler,Comphook unit which are the new interface units to the
  1449. compiler
  1450. Revision 1.36 1998/07/14 14:46:54 peter
  1451. * released NEWINPUT
  1452. Revision 1.35 1998/07/08 12:39:38 peter
  1453. * heap_size for m68k
  1454. Revision 1.34 1998/07/07 11:20:03 peter
  1455. + NEWINPUT for a better inputfile and scanner object
  1456. Revision 1.33 1998/06/25 11:15:34 pierre
  1457. * ppu files where not closed in newppu !!
  1458. second compilation was impossible due to too many opened files
  1459. (not visible in 'make cycle' as we remove all the ppu files)
  1460. Revision 1.32 1998/06/25 08:48:16 florian
  1461. * first version of rtti support
  1462. Revision 1.31 1998/06/24 14:48:35 peter
  1463. * ifdef newppu -> ifndef oldppu
  1464. Revision 1.30 1998/06/17 14:10:16 peter
  1465. * small os2 fixes
  1466. * fixed interdependent units with newppu (remake3 under linux works now)
  1467. Revision 1.29 1998/06/16 08:56:25 peter
  1468. + targetcpu
  1469. * cleaner pmodules for newppu
  1470. Revision 1.28 1998/06/13 00:10:10 peter
  1471. * working browser and newppu
  1472. * some small fixes against crashes which occured in bp7 (but not in
  1473. fpc?!)
  1474. Revision 1.27 1998/06/11 13:58:08 peter
  1475. * small fix to let newppu compile
  1476. Revision 1.26 1998/06/09 16:01:47 pierre
  1477. + added procedure directive parsing for procvars
  1478. (accepted are popstack cdecl and pascal)
  1479. + added C vars with the following syntax
  1480. var C calias 'true_c_name';(can be followed by external)
  1481. reason is that you must add the Cprefix
  1482. which is target dependent
  1483. Revision 1.25 1998/06/08 22:59:49 peter
  1484. * smartlinking works for win32
  1485. * some defines to exclude some compiler parts
  1486. Revision 1.24 1998/06/08 13:13:44 pierre
  1487. + temporary variables now in temp_gen.pas unit
  1488. because it is processor independent
  1489. * mppc68k.bat modified to undefine i386 and support_mmx
  1490. (which are defaults for i386)
  1491. Revision 1.23 1998/06/05 17:47:29 peter
  1492. * some better uses clauses
  1493. Revision 1.22 1998/06/05 14:37:34 pierre
  1494. * fixes for inline for operators
  1495. * inline procedure more correctly restricted
  1496. Revision 1.21 1998/06/04 23:51:53 peter
  1497. * m68k compiles
  1498. + .def file creation moved to gendef.pas so it could also be used
  1499. for win32
  1500. Revision 1.20 1998/06/04 09:55:42 pierre
  1501. * demangled name of procsym reworked to become independant of the mangling scheme
  1502. Revision 1.19 1998/06/03 23:40:38 peter
  1503. + unlimited file support, release tempclose
  1504. Revision 1.18 1998/06/03 22:49:00 peter
  1505. + wordbool,longbool
  1506. * rename bis,von -> high,low
  1507. * moved some systemunit loading/creating to psystem.pas
  1508. Revision 1.17 1998/05/28 14:40:25 peter
  1509. * fixes for newppu, remake3 works now with it
  1510. Revision 1.16 1998/05/27 19:45:06 peter
  1511. * symtable.pas splitted into includefiles
  1512. * symtable adapted for $ifdef NEWPPU
  1513. Revision 1.15 1998/05/23 01:21:22 peter
  1514. + aktasmmode, aktoptprocessor, aktoutputformat
  1515. + smartlink per module $SMARTLINK-/+ (like MMX) and moved to aktswitches
  1516. + $LIBNAME to set the library name where the unit will be put in
  1517. * splitted cgi386 a bit (codeseg to large for bp7)
  1518. * nasm, tasm works again. nasm moved to ag386nsm.pas
  1519. Revision 1.14 1998/05/20 09:42:35 pierre
  1520. + UseTokenInfo now default
  1521. * unit in interface uses and implementation uses gives error now
  1522. * only one error for unknown symbol (uses lastsymknown boolean)
  1523. the problem came from the label code !
  1524. + first inlined procedures and function work
  1525. (warning there might be allowed cases were the result is still wrong !!)
  1526. * UseBrower updated gives a global list of all position of all used symbols
  1527. with switch -gb
  1528. Revision 1.13 1998/05/12 10:47:00 peter
  1529. * moved printstatus to verb_def
  1530. + V_Normal which is between V_Error and V_Warning and doesn't have a
  1531. prefix like error: warning: and is included in V_Default
  1532. * fixed some messages
  1533. * first time parameter scan is only for -v and -T
  1534. - removed old style messages
  1535. Revision 1.12 1998/05/11 13:07:56 peter
  1536. + $ifdef NEWPPU for the new ppuformat
  1537. + $define GDB not longer required
  1538. * removed all warnings and stripped some log comments
  1539. * no findfirst/findnext anymore to remove smartlink *.o files
  1540. Revision 1.11 1998/05/06 18:36:53 peter
  1541. * tai_section extended with code,data,bss sections and enumerated type
  1542. * ident 'compiled by FPC' moved to pmodules
  1543. * small fix for smartlink
  1544. Revision 1.10 1998/05/04 17:54:28 peter
  1545. + smartlinking works (only case jumptable left todo)
  1546. * redesign of systems.pas to support assemblers and linkers
  1547. + Unitname is now also in the PPU-file, increased version to 14
  1548. Revision 1.9 1998/05/01 16:38:45 florian
  1549. * handling of private and protected fixed
  1550. + change_keywords_to_tp implemented to remove
  1551. keywords which aren't supported by tp
  1552. * break and continue are now symbols of the system unit
  1553. + widestring, longstring and ansistring type released
  1554. Revision 1.8 1998/04/30 15:59:41 pierre
  1555. * GDB works again better :
  1556. correct type info in one pass
  1557. + UseTokenInfo for better source position
  1558. * fixed one remaining bug in scanner for line counts
  1559. * several little fixes
  1560. Revision 1.7 1998/04/29 10:33:59 pierre
  1561. + added some code for ansistring (not complete nor working yet)
  1562. * corrected operator overloading
  1563. * corrected nasm output
  1564. + started inline procedures
  1565. + added starstarn : use ** for exponentiation (^ gave problems)
  1566. + started UseTokenInfo cond to get accurate positions
  1567. Revision 1.6 1998/04/27 23:10:28 peter
  1568. + new scanner
  1569. * $makelib -> if smartlink
  1570. * small filename fixes pmodule.setfilename
  1571. * moved import from files.pas -> import.pas
  1572. Revision 1.5 1998/04/14 23:27:03 florian
  1573. + exclude/include with constant second parameter added
  1574. Revision 1.4 1998/04/10 14:41:43 peter
  1575. * removed some Hints
  1576. * small speed optimization for AsmLn
  1577. Revision 1.3 1998/04/03 09:51:00 daniel
  1578. * Fixed heap allocation for OS/2.
  1579. }