psub.pas 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797
  1. {
  2. $Id$
  3. Copyright (c) 1998-2002 by Florian Klaempfl, Daniel Mantione
  4. Does the parsing and codegeneration at subroutine level
  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 psub;
  19. {$i fpcdefs.inc}
  20. {$define NOOPT}
  21. interface
  22. uses
  23. cclasses,globals,
  24. node,
  25. symdef,procinfo;
  26. type
  27. tcgprocinfo=class(tprocinfo)
  28. { code for the subroutine as tree }
  29. code : tnode;
  30. { positions in the tree for init/final }
  31. exitlabelasmnode,
  32. initasmnode,
  33. finalasmnode : tnode;
  34. { list to store the procinfo's of the nested procedures }
  35. nestedprocs : tlinkedlist;
  36. constructor create(aparent:tprocinfo);override;
  37. destructor destroy;override;
  38. procedure generate_code;
  39. procedure resetprocdef;
  40. procedure add_to_symtablestack;
  41. procedure remove_from_symtablestack;
  42. procedure parse_body;
  43. end;
  44. procedure printnode_reset;
  45. { reads the declaration blocks }
  46. procedure read_declarations(islibrary : boolean);
  47. { reads declarations in the interface part of a unit }
  48. procedure read_interface_declarations;
  49. procedure add_entry_exit_code(var code:tnode;const entrypos,exitpos:tfileposinfo);
  50. implementation
  51. uses
  52. { common }
  53. cutils,
  54. { global }
  55. globtype,tokens,verbose,comphook,
  56. systems,
  57. { aasm }
  58. cpubase,aasmtai,
  59. { symtable }
  60. symconst,symbase,symsym,symtype,symtable,defutil,
  61. paramgr,
  62. ppu,fmodule,
  63. { pass 1 }
  64. nutils,nbas,nld,ncal,ncon,nflw,nadd,ncnv,nmem,
  65. pass_1,
  66. {$ifdef state_tracking}
  67. nstate,
  68. {$endif state_tracking}
  69. { pass 2 }
  70. {$ifndef NOPASS2}
  71. pass_2,
  72. {$endif}
  73. { parser }
  74. scanner,
  75. pbase,pstatmnt,pdecl,pdecsub,pexports,
  76. { codegen }
  77. tgobj,rgobj,cgobj,
  78. ncgutil,regvars
  79. {$ifndef NOOPT}
  80. {$ifdef i386}
  81. ,aopt386
  82. {$else i386}
  83. ,aoptcpu
  84. {$endif i386}
  85. {$endif}
  86. ;
  87. {****************************************************************************
  88. PROCEDURE/FUNCTION BODY PARSING
  89. ****************************************************************************}
  90. procedure initializevars(p:tnamedindexitem;arg:pointer);
  91. var
  92. b : tblocknode;
  93. begin
  94. if tsym(p).typ<>varsym then
  95. exit;
  96. with tvarsym(p) do
  97. begin
  98. if assigned(defaultconstsym) then
  99. begin
  100. b:=tblocknode(arg);
  101. b.left:=cstatementnode.create(
  102. cassignmentnode.create(
  103. cloadnode.create(tsym(p),tsym(p).owner),
  104. cloadnode.create(defaultconstsym,defaultconstsym.owner)),
  105. b.left);
  106. end;
  107. end;
  108. end;
  109. function block(islibrary : boolean) : tnode;
  110. begin
  111. { parse const,types and vars }
  112. read_declarations(islibrary);
  113. { do we have an assembler block without the po_assembler?
  114. we should allow this for Delphi compatibility (PFV) }
  115. if (token=_ASM) and (m_delphi in aktmodeswitches) then
  116. include(current_procinfo.procdef.procoptions,po_assembler);
  117. { Handle assembler block different }
  118. if (po_assembler in current_procinfo.procdef.procoptions) then
  119. begin
  120. block:=assembler_block;
  121. exit;
  122. end;
  123. {Unit initialization?.}
  124. if (
  125. assigned(current_procinfo.procdef.localst) and
  126. (current_procinfo.procdef.localst.symtablelevel=main_program_level) and
  127. (current_module.is_unit)
  128. ) or
  129. islibrary then
  130. begin
  131. if (token=_END) then
  132. begin
  133. consume(_END);
  134. { We need at least a node, else the entry/exit code is not
  135. generated and thus no PASCALMAIN symbol which we need (PFV) }
  136. if islibrary then
  137. block:=cnothingnode.create
  138. else
  139. block:=nil;
  140. end
  141. else
  142. begin
  143. if token=_INITIALIZATION then
  144. begin
  145. { The library init code is already called and does not
  146. need to be in the initfinal table (PFV) }
  147. if not islibrary then
  148. current_module.flags:=current_module.flags or uf_init;
  149. block:=statement_block(_INITIALIZATION);
  150. end
  151. else if (token=_FINALIZATION) then
  152. begin
  153. if (current_module.flags and uf_finalize)<>0 then
  154. block:=statement_block(_FINALIZATION)
  155. else
  156. begin
  157. { can we allow no INITIALIZATION for DLL ??
  158. I think it should work PM }
  159. block:=nil;
  160. exit;
  161. end;
  162. end
  163. else
  164. begin
  165. { The library init code is already called and does not
  166. need to be in the initfinal table (PFV) }
  167. if not islibrary then
  168. current_module.flags:=current_module.flags or uf_init;
  169. block:=statement_block(_BEGIN);
  170. end;
  171. end;
  172. end
  173. else
  174. begin
  175. block:=statement_block(_BEGIN);
  176. if symtablestack.symtabletype=localsymtable then
  177. symtablestack.foreach_static({$ifdef FPCPROCVAR}@{$endif}initializevars,block);
  178. end;
  179. if (current_procinfo.procdef.localst.symtablelevel=main_program_level) and
  180. (not current_module.is_unit) then
  181. begin
  182. { there's always a call to FPC_DO_EXIT in the main program }
  183. include(current_procinfo.flags,pi_do_call);
  184. end;
  185. if ([cs_check_range,cs_check_overflow] * aktlocalswitches <> []) then
  186. include(current_procinfo.flags,pi_do_call);
  187. end;
  188. {****************************************************************************
  189. PROCEDURE/FUNCTION COMPILING
  190. ****************************************************************************}
  191. procedure printnode_reset;
  192. begin
  193. assign(printnodefile,treelogfilename);
  194. {$I-}
  195. rewrite(printnodefile);
  196. {$I+}
  197. if ioresult<>0 then
  198. begin
  199. Comment(V_Error,'Error creating '+treelogfilename);
  200. exit;
  201. end;
  202. close(printnodefile);
  203. end;
  204. procedure printnode_procdef(pd:tprocdef);
  205. begin
  206. assign(printnodefile,treelogfilename);
  207. {$I-}
  208. append(printnodefile);
  209. if ioresult<>0 then
  210. rewrite(printnodefile);
  211. {$I+}
  212. if ioresult<>0 then
  213. begin
  214. Comment(V_Error,'Error creating '+treelogfilename);
  215. exit;
  216. end;
  217. writeln(printnodefile);
  218. writeln(printnodefile,'*******************************************************************************');
  219. writeln(printnodefile,current_procinfo.procdef.fullprocname(false));
  220. writeln(printnodefile,'*******************************************************************************');
  221. printnode(printnodefile,pd.code);
  222. close(printnodefile);
  223. end;
  224. function generate_initialize_block:tnode;
  225. var
  226. srsym : tsym;
  227. para : tcallparanode;
  228. newstatement : tstatementnode;
  229. htype : ttype;
  230. begin
  231. result:=internalstatements(newstatement,true);
  232. { temp/para/locals initialize code will be inserted here }
  233. tcgprocinfo(current_procinfo).initasmnode:=casmnode.create_get_position;
  234. addstatement(newstatement,tcgprocinfo(current_procinfo).initasmnode);
  235. if assigned(current_procinfo.procdef._class) then
  236. begin
  237. { a constructor needs a help procedure }
  238. if (current_procinfo.procdef.proctypeoption=potype_constructor) then
  239. begin
  240. if is_class(current_procinfo.procdef._class) then
  241. begin
  242. if (cs_implicit_exceptions in aktmoduleswitches) then
  243. include(current_procinfo.flags,pi_needs_implicit_finally);
  244. srsym:=search_class_member(current_procinfo.procdef._class,'NEWINSTANCE');
  245. if assigned(srsym) and
  246. (srsym.typ=procsym) then
  247. begin
  248. { if vmt<>0 then newinstance }
  249. addstatement(newstatement,cifnode.create(
  250. caddnode.create(unequaln,
  251. load_vmt_pointer_node,
  252. cnilnode.create),
  253. cassignmentnode.create(
  254. ctypeconvnode.create_explicit(
  255. load_self_pointer_node,
  256. voidpointertype),
  257. ccallnode.create(nil,tprocsym(srsym),srsym.owner,load_vmt_pointer_node)),
  258. nil));
  259. end
  260. else
  261. internalerror(200305108);
  262. end
  263. else
  264. if is_object(current_procinfo.procdef._class) then
  265. begin
  266. htype.setdef(current_procinfo.procdef._class);
  267. htype.setdef(tpointerdef.create(htype));
  268. { parameter 3 : vmt_offset }
  269. { parameter 2 : address of pointer to vmt,
  270. this is required to allow setting the vmt to -1 to indicate
  271. that memory was allocated }
  272. { parameter 1 : self pointer }
  273. para:=ccallparanode.create(
  274. cordconstnode.create(current_procinfo.procdef._class.vmt_offset,s32bittype,false),
  275. ccallparanode.create(
  276. ctypeconvnode.create_explicit(
  277. load_vmt_pointer_node,
  278. voidpointertype),
  279. ccallparanode.create(
  280. ctypeconvnode.create_explicit(
  281. load_self_pointer_node,
  282. voidpointertype),
  283. nil)));
  284. addstatement(newstatement,cassignmentnode.create(
  285. ctypeconvnode.create_explicit(
  286. load_self_pointer_node,
  287. voidpointertype),
  288. ccallnode.createintern('fpc_help_constructor',para)));
  289. end
  290. else
  291. internalerror(200305103);
  292. { if self=nil then exit
  293. calling fail instead of exit is useless because
  294. there is nothing to dispose (PFV) }
  295. addstatement(newstatement,cifnode.create(
  296. caddnode.create(equaln,
  297. load_self_pointer_node,
  298. cnilnode.create),
  299. cexitnode.create(nil),
  300. nil));
  301. end;
  302. { maybe call BeforeDestruction for classes }
  303. if (current_procinfo.procdef.proctypeoption=potype_destructor) and
  304. is_class(current_procinfo.procdef._class) then
  305. begin
  306. srsym:=search_class_member(current_procinfo.procdef._class,'BEFOREDESTRUCTION');
  307. if assigned(srsym) and
  308. (srsym.typ=procsym) then
  309. begin
  310. { if vmt<>0 then beforedestruction }
  311. addstatement(newstatement,cifnode.create(
  312. caddnode.create(unequaln,
  313. load_vmt_pointer_node,
  314. cnilnode.create),
  315. ccallnode.create(nil,tprocsym(srsym),srsym.owner,load_self_node),
  316. nil));
  317. end
  318. else
  319. internalerror(200305104);
  320. end;
  321. end;
  322. end;
  323. function generate_finalize_block:tnode;
  324. begin
  325. { temp/para/locals finalize code will be inserted here }
  326. tcgprocinfo(current_procinfo).finalasmnode:=casmnode.create_get_position;
  327. result:=tcgprocinfo(current_procinfo).finalasmnode;
  328. end;
  329. function generate_exitlabel_block:tnode;
  330. begin
  331. { exit label will be inserted here }
  332. tcgprocinfo(current_procinfo).exitlabelasmnode:=casmnode.create_get_position;
  333. result:=tcgprocinfo(current_procinfo).exitlabelasmnode;
  334. end;
  335. function generate_entry_block:tnode;
  336. begin
  337. result:=cnothingnode.create;
  338. end;
  339. function generate_exit_block:tnode;
  340. var
  341. srsym : tsym;
  342. para : tcallparanode;
  343. newstatement : tstatementnode;
  344. begin
  345. generate_exit_block:=internalstatements(newstatement,true);
  346. if assigned(current_procinfo.procdef._class) then
  347. begin
  348. { maybe call AfterConstruction for classes }
  349. if (current_procinfo.procdef.proctypeoption=potype_constructor) and
  350. is_class(current_procinfo.procdef._class) then
  351. begin
  352. srsym:=search_class_member(current_procinfo.procdef._class,'AFTERCONSTRUCTION');
  353. if assigned(srsym) and
  354. (srsym.typ=procsym) then
  355. begin
  356. { if vmt<>0 then afterconstruction }
  357. addstatement(newstatement,cifnode.create(
  358. caddnode.create(unequaln,
  359. load_vmt_pointer_node,
  360. cnilnode.create),
  361. ccallnode.create(nil,tprocsym(srsym),srsym.owner,load_self_node),
  362. nil));
  363. end
  364. else
  365. internalerror(200305106);
  366. end;
  367. { a destructor needs a help procedure }
  368. if (current_procinfo.procdef.proctypeoption=potype_destructor) then
  369. begin
  370. if is_class(current_procinfo.procdef._class) then
  371. begin
  372. srsym:=search_class_member(current_procinfo.procdef._class,'FREEINSTANCE');
  373. if assigned(srsym) and
  374. (srsym.typ=procsym) then
  375. begin
  376. { if self<>0 and vmt=1 then freeinstance }
  377. addstatement(newstatement,cifnode.create(
  378. caddnode.create(andn,
  379. caddnode.create(unequaln,
  380. load_self_pointer_node,
  381. cnilnode.create),
  382. caddnode.create(equaln,
  383. ctypeconvnode.create(
  384. load_vmt_pointer_node,
  385. voidpointertype),
  386. cpointerconstnode.create(1,voidpointertype))),
  387. ccallnode.create(nil,tprocsym(srsym),srsym.owner,load_self_node),
  388. nil));
  389. end
  390. else
  391. internalerror(200305108);
  392. end
  393. else
  394. if is_object(current_procinfo.procdef._class) then
  395. begin
  396. { finalize object data }
  397. if current_procinfo.procdef._class.needs_inittable then
  398. addstatement(newstatement,finalize_data_node(load_self_node));
  399. { parameter 3 : vmt_offset }
  400. { parameter 2 : pointer to vmt }
  401. { parameter 1 : self pointer }
  402. para:=ccallparanode.create(
  403. cordconstnode.create(current_procinfo.procdef._class.vmt_offset,s32bittype,false),
  404. ccallparanode.create(
  405. ctypeconvnode.create_explicit(
  406. load_vmt_pointer_node,
  407. voidpointertype),
  408. ccallparanode.create(
  409. ctypeconvnode.create_explicit(
  410. load_self_pointer_node,
  411. voidpointertype),
  412. nil)));
  413. addstatement(newstatement,
  414. ccallnode.createintern('fpc_help_destructor',para));
  415. end
  416. else
  417. internalerror(200305105);
  418. end;
  419. end;
  420. end;
  421. function generate_except_block:tnode;
  422. var
  423. pd : tprocdef;
  424. newstatement : tstatementnode;
  425. begin
  426. generate_except_block:=internalstatements(newstatement,true);
  427. { a constructor needs call destructor (if available) when it
  428. is not inherited }
  429. if assigned(current_procinfo.procdef._class) and
  430. (current_procinfo.procdef.proctypeoption=potype_constructor) then
  431. begin
  432. pd:=current_procinfo.procdef._class.searchdestructor;
  433. if assigned(pd) then
  434. begin
  435. { if vmt<>0 then call destructor }
  436. addstatement(newstatement,cifnode.create(
  437. caddnode.create(unequaln,
  438. load_vmt_pointer_node,
  439. cnilnode.create),
  440. ccallnode.create(nil,tprocsym(pd.procsym),pd.procsym.owner,load_self_node),
  441. nil));
  442. end;
  443. end
  444. else
  445. begin
  446. { no constructor }
  447. { must be the return value finalized before reraising the exception? }
  448. if (not is_void(current_procinfo.procdef.rettype.def)) and
  449. (current_procinfo.procdef.rettype.def.needs_inittable) and
  450. (not is_class(current_procinfo.procdef.rettype.def)) then
  451. finalize_data_node(load_result_node);
  452. end;
  453. end;
  454. procedure add_entry_exit_code(var code:tnode;const entrypos,exitpos:tfileposinfo);
  455. var
  456. initializecode,
  457. finalizecode,
  458. exitlabelcode,
  459. entrycode,
  460. exitcode,
  461. exceptcode : tnode;
  462. codeblock,
  463. newblock : tblocknode;
  464. codestatement,
  465. newstatement : tstatementnode;
  466. oldfilepos : tfileposinfo;
  467. begin
  468. oldfilepos:=aktfilepos;
  469. { Generate entry,exit and init,final blocks }
  470. aktfilepos:=entrypos;
  471. initializecode:=generate_initialize_block;
  472. entrycode:=generate_entry_block;
  473. aktfilepos:=exitpos;
  474. exitcode:=generate_exit_block;
  475. finalizecode:=generate_finalize_block;
  476. exceptcode:=generate_except_block;
  477. exitlabelcode:=generate_exitlabel_block;
  478. { Generate body of the procedure by combining entry+body+exit }
  479. codeblock:=internalstatements(codestatement,true);
  480. addstatement(codestatement,entrycode);
  481. addstatement(codestatement,code);
  482. addstatement(codestatement,exitcode);
  483. { Generate procedure by combining init+body+final,
  484. depending on the implicit finally we need to add
  485. an try...finally...end wrapper }
  486. newblock:=internalstatements(newstatement,true);
  487. if (pi_needs_implicit_finally in current_procinfo.flags) and
  488. { but it's useless in init/final code of units }
  489. not(current_procinfo.procdef.proctypeoption in [potype_unitfinalize,potype_unitinit]) then
  490. begin
  491. addstatement(newstatement,initializecode);
  492. aktfilepos:=entrypos;
  493. addstatement(newstatement,ctryfinallynode.create_implicit(
  494. codeblock,
  495. finalizecode,
  496. exceptcode));
  497. addstatement(newstatement,exitlabelcode);
  498. end
  499. else
  500. begin
  501. addstatement(newstatement,initializecode);
  502. addstatement(newstatement,codeblock);
  503. addstatement(newstatement,exitlabelcode);
  504. addstatement(newstatement,finalizecode);
  505. end;
  506. resulttypepass(newblock);
  507. code:=newblock;
  508. aktfilepos:=oldfilepos;
  509. end;
  510. {****************************************************************************
  511. TCGProcInfo
  512. ****************************************************************************}
  513. constructor tcgprocinfo.create(aparent:tprocinfo);
  514. begin
  515. inherited Create(aparent);
  516. nestedprocs:=tlinkedlist.create;
  517. end;
  518. destructor tcgprocinfo.destroy;
  519. begin
  520. nestedprocs.free;
  521. inherited destroy;
  522. end;
  523. procedure tcgprocinfo.generate_code;
  524. var
  525. oldprocinfo : tprocinfo;
  526. oldaktmaxfpuregisters : longint;
  527. oldfilepos : tfileposinfo;
  528. templist : Taasmoutput;
  529. headertai : tai;
  530. usesacc,
  531. usesfpu,
  532. usesacchi : boolean;
  533. {$ifdef ra_debug}
  534. i,
  535. {$endif ra_debug}
  536. spillingcounter : integer;
  537. fastspill:boolean;
  538. begin
  539. { the initialization procedure can be empty, then we
  540. don't need to generate anything. When it was an empty
  541. procedure there would be at least a blocknode }
  542. if not assigned(code) then
  543. exit;
  544. { The RA and Tempgen shall not be available yet }
  545. if assigned(rg) or assigned(tg) then
  546. internalerror(200309201);
  547. oldprocinfo:=current_procinfo;
  548. oldfilepos:=aktfilepos;
  549. oldaktmaxfpuregisters:=aktmaxfpuregisters;
  550. current_procinfo:=self;
  551. { get new labels }
  552. aktbreaklabel:=nil;
  553. aktcontinuelabel:=nil;
  554. templist:=Taasmoutput.create;
  555. { add parast/localst to symtablestack }
  556. add_to_symtablestack;
  557. { set the start offset to the start of the temp area in the stack }
  558. tg:=ttgobj.create;
  559. { Create register allocator }
  560. cg.init_register_allocators;
  561. current_procinfo.set_first_temp_offset;
  562. current_procinfo.generate_parameter_info;
  563. { Allocate space in temp/registers for parast and localst }
  564. aktfilepos:=entrypos;
  565. gen_alloc_parast(aktproccode,tparasymtable(current_procinfo.procdef.parast));
  566. if current_procinfo.procdef.localst.symtabletype=localsymtable then
  567. gen_alloc_localst(aktproccode,tlocalsymtable(current_procinfo.procdef.localst));
  568. if (cs_asm_source in aktglobalswitches) then
  569. exprasmlist.concat(Tai_comment.Create(strpnew('Temps start at '+std_regname(current_procinfo.framepointer)+
  570. tostr_with_plus(tg.lasttemp))));
  571. { Load register parameters in temps and insert local copies
  572. for values parameters. This must be done before the body is parsed
  573. because the localloc is updated }
  574. aktfilepos:=entrypos;
  575. gen_load_para_value(aktproccode);
  576. {$warning FIXME!!}
  577. { FIXME!! If a procedure contains assembler blocks (or is pure assembler), }
  578. { then rg.used_in_proc_int already contains info because of that. However, }
  579. { adding that info happened before initialisation of rg.used_in_proc_int, }
  580. { so this info cannot be valid! Currently only changing this for entire }
  581. { assembler procedures... For non-i386, the changed registers are even }
  582. { always all volatile registers (JM) }
  583. {$ifdef i386}
  584. if (po_assembler in current_procinfo.procdef.procoptions) then
  585. begin
  586. rg.used_in_proc_int:=paramanager.get_volatile_registers_int(pocall_oldfpccall);
  587. rg.used_in_proc_other:=paramanager.get_volatile_registers_int(pocall_oldfpccall);
  588. end;
  589. {$endif i386}
  590. { generate code for the body }
  591. generatecode(code);
  592. { first generate entry and initialize code with the correct
  593. position and switches }
  594. aktfilepos:=entrypos;
  595. aktlocalswitches:=entryswitches;
  596. gen_entry_code(templist);
  597. gen_initialize_code(templist,false);
  598. aktproccode.insertlistafter(tasmnode(initasmnode).currenttai,templist);
  599. { now generate finalize and exit code with the correct position
  600. and switches }
  601. aktfilepos:=exitpos;
  602. aktlocalswitches:=exitswitches;
  603. gen_finalize_code(templist,false);
  604. { the finalcode must be concatted if there was no position available,
  605. using insertlistafter will result in an insert at the start
  606. when currentai=nil }
  607. if assigned(tasmnode(finalasmnode).currenttai) then
  608. aktproccode.insertlistafter(tasmnode(finalasmnode).currenttai,templist)
  609. else
  610. aktproccode.concatlist(templist);
  611. { insert exit label at the correct position }
  612. cg.a_label(templist,current_procinfo.aktexitlabel);
  613. if assigned(tasmnode(exitlabelasmnode).currenttai) then
  614. aktproccode.insertlistafter(tasmnode(exitlabelasmnode).currenttai,templist)
  615. else
  616. aktproccode.concatlist(templist);
  617. { exit code }
  618. gen_exit_code(templist);
  619. aktproccode.concatlist(templist);
  620. { note: this must be done only after as much code as possible has }
  621. { been generated. The result is that when you ungetregister() a }
  622. { regvar, it will actually free the regvar (and alse free the }
  623. { the regvars at the same time). Doing this too early will }
  624. { confuse the register allocator, as the regvars will still be }
  625. { used. It should be done before loading the result regs (so }
  626. { they don't conflict with the regvars) and before }
  627. { gen_entry_code (that one has to be able to allocate the }
  628. { regvars again) (JM) }
  629. free_regvars(aktproccode);
  630. { add code that will load the return value, this is not done
  631. for assembler routines when they didn't reference the result
  632. variable }
  633. usesacc:=false;
  634. usesfpu:=false;
  635. usesacchi:=false;
  636. gen_load_return_value(templist,usesacc,usesacchi,usesfpu);
  637. aktproccode.concatlist(templist);
  638. { generate symbol and save end of header position }
  639. aktfilepos:=entrypos;
  640. gen_proc_symbol(templist);
  641. headertai:=tai(templist.last);
  642. { insert symbol }
  643. aktproccode.insertlist(templist);
  644. { Free space in temp/registers for parast and localst, must be
  645. done after gen_entry_code }
  646. aktfilepos:=exitpos;
  647. if current_procinfo.procdef.localst.symtabletype=localsymtable then
  648. gen_free_localst(aktproccode,tlocalsymtable(current_procinfo.procdef.localst));
  649. gen_free_parast(aktproccode,tparasymtable(current_procinfo.procdef.parast));
  650. { The procedure body is finished, we can now
  651. allocate the registers }
  652. if not(cs_no_regalloc in aktglobalswitches) then
  653. begin
  654. {Do register allocation.}
  655. spillingcounter:=0;
  656. repeat
  657. {$ifdef ra_debug}
  658. if aktfilepos.line=1206 then
  659. rg.writegraph(spillingcounter);
  660. {$endif ra_debug}
  661. rg.prepare_colouring;
  662. rg.colour_registers;
  663. rg.epilogue_colouring;
  664. fastspill:=true;
  665. if rg.spillednodes<>'' then
  666. begin
  667. inc(spillingcounter);
  668. if spillingcounter>20 then
  669. {$ifdef ra_debug}
  670. break;
  671. {$else ra_debug}
  672. internalerror(200309041);
  673. {$endif ra_debug}
  674. {$ifdef ra_debug}
  675. if aktfilepos.line=1207 then
  676. begin
  677. writeln('Spilling registers:');
  678. for i:=1 to length(rg.spillednodes) do
  679. writeln(ord(rg.spillednodes[i]));
  680. end;
  681. {$endif ra_debug}
  682. fastspill:=rg.spill_registers(aktproccode,headertai,rg.spillednodes);
  683. end;
  684. until (rg.spillednodes='') or not fastspill;
  685. aktproccode.translate_registers(rg.colour);
  686. (*
  687. {$ifndef NoOpt}
  688. if (cs_optimize in aktglobalswitches) and
  689. { do not optimize pure assembler procedures }
  690. not(pi_is_assembler in current_procinfo.flags) then
  691. optimize(aktproccode);
  692. {$endif NoOpt}
  693. *)
  694. end;
  695. translate_regvars(aktproccode,rg.colour);
  696. { Add save and restore of used registers }
  697. aktfilepos:=entrypos;
  698. gen_save_used_regs(templist);
  699. aktproccode.insertlistafter(headertai,templist);
  700. aktfilepos:=exitpos;
  701. gen_restore_used_regs(aktproccode,usesacc,usesacchi,usesfpu);
  702. { Add stack allocation code after header }
  703. aktfilepos:=entrypos;
  704. gen_stackalloc_code(templist);
  705. aktproccode.insertlistafter(headertai,templist);
  706. { Add exit code at the end }
  707. aktfilepos:=exitpos;
  708. gen_stackfree_code(templist,usesacc,usesacchi);
  709. aktproccode.concatlist(templist);
  710. { Add end symbol and debug info }
  711. aktfilepos:=exitpos;
  712. gen_proc_symbol_end(templist);
  713. aktproccode.concatlist(templist);
  714. { save local data (casetable) also in the same file }
  715. if assigned(aktlocaldata) and
  716. (not aktlocaldata.empty) then
  717. begin
  718. { because of the limited constant size of the arm, all data access is done pc relative }
  719. if target_info.cpu=cpu_arm then
  720. aktproccode.concatlist(aktlocaldata)
  721. else
  722. begin
  723. aktproccode.concat(Tai_section.Create(sec_data));
  724. aktproccode.concatlist(aktlocaldata);
  725. aktproccode.concat(Tai_section.Create(sec_code));
  726. end;
  727. end;
  728. { add the procedure to the codesegment }
  729. if (cs_create_smart in aktmoduleswitches) then
  730. codesegment.concat(Tai_cut.Create);
  731. codesegment.concatlist(aktproccode);
  732. { only now we can remove the temps }
  733. tg.resettempgen;
  734. { stop tempgen and ra }
  735. tg.free;
  736. cg.done_register_allocators;
  737. tg:=nil;
  738. rg:=nil;
  739. { restore symtablestack }
  740. remove_from_symtablestack;
  741. { restore }
  742. templist.free;
  743. aktmaxfpuregisters:=oldaktmaxfpuregisters;
  744. aktfilepos:=oldfilepos;
  745. current_procinfo:=oldprocinfo;
  746. end;
  747. procedure tcgprocinfo.add_to_symtablestack;
  748. var
  749. _class,hp : tobjectdef;
  750. begin
  751. { insert symtables for the class, but only if it is no nested function }
  752. if assigned(procdef._class) and
  753. not(assigned(parent) and
  754. assigned(parent.procdef) and
  755. assigned(parent.procdef._class)) then
  756. begin
  757. { insert them in the reverse order }
  758. hp:=nil;
  759. repeat
  760. _class:=procdef._class;
  761. while _class.childof<>hp do
  762. _class:=_class.childof;
  763. hp:=_class;
  764. _class.symtable.next:=symtablestack;
  765. symtablestack:=_class.symtable;
  766. until hp=procdef._class;
  767. end;
  768. { insert parasymtable in symtablestack when parsing
  769. a function }
  770. if procdef.parast.symtablelevel>=normal_function_level then
  771. begin
  772. procdef.parast.next:=symtablestack;
  773. symtablestack:=procdef.parast;
  774. end;
  775. procdef.localst.next:=symtablestack;
  776. symtablestack:=procdef.localst;
  777. end;
  778. procedure tcgprocinfo.remove_from_symtablestack;
  779. begin
  780. { remove localst/parast }
  781. if procdef.parast.symtablelevel>=normal_function_level then
  782. symtablestack:=symtablestack.next.next
  783. else
  784. symtablestack:=symtablestack.next;
  785. { remove class member symbol tables }
  786. while symtablestack.symtabletype=objectsymtable do
  787. symtablestack:=symtablestack.next;
  788. end;
  789. procedure tcgprocinfo.resetprocdef;
  790. begin
  791. { the local symtables can be deleted, but the parast }
  792. { doesn't, (checking definitons when calling a }
  793. { function }
  794. { not for a inline procedure !! (PM) }
  795. { at lexlevel = 1 localst is the staticsymtable itself }
  796. { so no dispose here !! }
  797. if assigned(code) and
  798. not(cs_browser in aktmoduleswitches) and
  799. (procdef.proccalloption<>pocall_inline) then
  800. begin
  801. if procdef.parast.symtablelevel>=normal_function_level then
  802. procdef.localst.free;
  803. procdef.localst:=nil;
  804. end;
  805. { remove code tree, if not inline procedure }
  806. if assigned(code) then
  807. begin
  808. { the inline procedure has already got a copy of the tree
  809. stored in current_procinfo.procdef.code }
  810. code.free;
  811. if (procdef.proccalloption<>pocall_inline) then
  812. procdef.code:=nil;
  813. end;
  814. end;
  815. procedure tcgprocinfo.parse_body;
  816. var
  817. oldprocinfo : tprocinfo;
  818. begin
  819. oldprocinfo:=current_procinfo;
  820. current_procinfo:=self;
  821. { calculate the lexical level }
  822. if procdef.parast.symtablelevel>maxnesting then
  823. Message(parser_e_too_much_lexlevel);
  824. { static is also important for local procedures !! }
  825. if (po_staticmethod in procdef.procoptions) then
  826. allow_only_static:=true
  827. else if (procdef.parast.symtablelevel=normal_function_level) then
  828. allow_only_static:=false;
  829. { reset break and continue labels }
  830. block_type:=bt_general;
  831. {$ifdef state_tracking}
  832. { aktstate:=Tstate_storage.create;}
  833. {$endif state_tracking}
  834. { create a local symbol table for this routine }
  835. if not assigned(procdef.localst) then
  836. procdef.insert_localst;
  837. { add parast/localst to symtablestack }
  838. add_to_symtablestack;
  839. { constant symbols are inserted in this symboltable }
  840. constsymtable:=symtablestack;
  841. { save entry info }
  842. entrypos:=aktfilepos;
  843. entryswitches:=aktlocalswitches;
  844. { parse the code ... }
  845. code:=block(current_module.islibrary);
  846. { save exit info }
  847. exitswitches:=aktlocalswitches;
  848. exitpos:=last_endtoken_filepos;
  849. if assigned(code) then
  850. begin
  851. { get a better entry point }
  852. entrypos:=code.fileinfo;
  853. { the procedure is now defined }
  854. procdef.forwarddef:=false;
  855. { add implicit entry and exit code }
  856. add_entry_exit_code(code,entrypos,exitpos);
  857. if (Errorcount=0) then
  858. begin
  859. { check if forwards are resolved }
  860. tstoredsymtable(procdef.localst).check_forwards;
  861. { check if all labels are used }
  862. tstoredsymtable(procdef.localst).checklabels;
  863. { remove cross unit overloads }
  864. tstoredsymtable(procdef.localst).unchain_overloaded;
  865. end;
  866. { check for unused symbols, but only if there is no asm block }
  867. if not(pi_uses_asm in flags) then
  868. begin
  869. { not for unit init, becuase the var can be used in finalize,
  870. it will be done in proc_unit }
  871. if not(procdef.proctypeoption in [potype_proginit,potype_unitinit,potype_unitfinalize]) then
  872. tstoredsymtable(procdef.localst).allsymbolsused;
  873. tstoredsymtable(procdef.parast).allsymbolsused;
  874. end;
  875. { Finish type checking pass }
  876. do_resulttypepass(code);
  877. { Print the node to tree.log }
  878. if paraprintnodetree=1 then
  879. printnode_procdef(procdef);
  880. end;
  881. { store a copy of the original tree for inline, for
  882. normal procedures only store a reference to the
  883. current tree }
  884. if (procdef.proccalloption=pocall_inline) then
  885. procdef.code:=code.getcopy
  886. else
  887. procdef.code:=code;
  888. { ... remove symbol tables }
  889. remove_from_symtablestack;
  890. {$ifdef state_tracking}
  891. { aktstate.destroy;}
  892. {$endif state_tracking}
  893. { reset to normal non static function }
  894. if (current_procinfo.procdef.parast.symtablelevel=normal_function_level) then
  895. allow_only_static:=false;
  896. current_procinfo:=oldprocinfo;
  897. end;
  898. {****************************************************************************
  899. PROCEDURE/FUNCTION PARSING
  900. ****************************************************************************}
  901. procedure check_init_paras(p:tnamedindexitem;arg:pointer);
  902. begin
  903. if tsym(p).typ<>varsym then
  904. exit;
  905. with tvarsym(p) do
  906. if (not is_class(vartype.def) and
  907. vartype.def.needs_inittable and
  908. (varspez in [vs_value,vs_out])) then
  909. include(current_procinfo.flags,pi_do_call);
  910. end;
  911. procedure read_proc;
  912. {
  913. Parses the procedure directives, then parses the procedure body, then
  914. generates the code for it
  915. }
  916. procedure do_generate_code(pi:tcgprocinfo);
  917. var
  918. hpi : tcgprocinfo;
  919. begin
  920. { generate code for this procedure }
  921. pi.generate_code;
  922. { process nested procs }
  923. hpi:=tcgprocinfo(pi.nestedprocs.first);
  924. while assigned(hpi) do
  925. begin
  926. do_generate_code(hpi);
  927. hpi:=tcgprocinfo(hpi.next);
  928. end;
  929. pi.resetprocdef;
  930. end;
  931. var
  932. old_current_procinfo : tprocinfo;
  933. oldconstsymtable : tsymtable;
  934. oldselftokenmode,
  935. oldfailtokenmode : tmodeswitch;
  936. pdflags : tpdflags;
  937. pd : tprocdef;
  938. isnestedproc : boolean;
  939. begin
  940. { save old state }
  941. oldconstsymtable:=constsymtable;
  942. old_current_procinfo:=current_procinfo;
  943. { reset current_procinfo.procdef to nil to be sure that nothing is writing
  944. to an other procdef }
  945. current_procinfo:=nil;
  946. { parse procedure declaration }
  947. if assigned(old_current_procinfo) and
  948. assigned(old_current_procinfo.procdef) then
  949. pd:=parse_proc_dec(old_current_procinfo.procdef._class)
  950. else
  951. pd:=parse_proc_dec(nil);
  952. { set the default function options }
  953. if parse_only then
  954. begin
  955. pd.forwarddef:=true;
  956. { set also the interface flag, for better error message when the
  957. implementation doesn't much this header }
  958. pd.interfacedef:=true;
  959. include(pd.procoptions,po_public);
  960. pdflags:=[pd_interface];
  961. end
  962. else
  963. begin
  964. pdflags:=[pd_body];
  965. if (not current_module.in_interface) then
  966. include(pdflags,pd_implemen);
  967. if (not current_module.is_unit) or
  968. (cs_create_smart in aktmoduleswitches) then
  969. include(pd.procoptions,po_public);
  970. pd.forwarddef:=false;
  971. end;
  972. { parse the directives that may follow }
  973. parse_proc_directives(pd,pdflags);
  974. { hint directives, these can be separated by semicolons here,
  975. that needs to be handled here with a loop (PFV) }
  976. while try_consume_hintdirective(pd.symoptions) do
  977. Consume(_SEMICOLON);
  978. { Set calling convention }
  979. handle_calling_convention(pd);
  980. { everything of the proc definition is known, we can now
  981. calculate the parameters }
  982. calc_parast(pd);
  983. { search for forward declarations }
  984. if not proc_add_definition(pd) then
  985. begin
  986. { A method must be forward defined (in the object declaration) }
  987. if assigned(pd._class) and
  988. (not assigned(old_current_procinfo.procdef._class)) then
  989. begin
  990. MessagePos1(pd.fileinfo,parser_e_header_dont_match_any_member,pd.fullprocname(false));
  991. tprocsym(pd.procsym).write_parameter_lists(pd);
  992. end
  993. else
  994. begin
  995. { Give a better error if there is a forward def in the interface and only
  996. a single implementation }
  997. if (not pd.forwarddef) and
  998. (not pd.interfacedef) and
  999. (tprocsym(pd.procsym).procdef_count>1) and
  1000. tprocsym(pd.procsym).first_procdef.forwarddef and
  1001. tprocsym(pd.procsym).first_procdef.interfacedef and
  1002. not(tprocsym(pd.procsym).procdef_count>2) then
  1003. begin
  1004. MessagePos1(pd.fileinfo,parser_e_header_dont_match_forward,pd.fullprocname(false));
  1005. tprocsym(pd.procsym).write_parameter_lists(pd);
  1006. end;
  1007. end;
  1008. end;
  1009. { compile procedure when a body is needed }
  1010. if (pd_body in pdflags) then
  1011. begin
  1012. Message1(parser_d_procedure_start,pd.fullprocname(false));
  1013. { create a new procedure }
  1014. current_procinfo:=cprocinfo.create(old_current_procinfo);
  1015. current_module.procinfo:=current_procinfo;
  1016. current_procinfo.procdef:=pd;
  1017. isnestedproc:=(current_procinfo.procdef.parast.symtablelevel>normal_function_level);
  1018. { Insert mangledname }
  1019. pd.aliasnames.insert(pd.mangledname);
  1020. { Insert result variables in the localst }
  1021. insert_funcret_local(pd);
  1022. { check if there are para's which require initing -> set }
  1023. { pi_do_call (if not yet set) }
  1024. if not(pi_do_call in current_procinfo.flags) then
  1025. pd.parast.foreach_static({$ifdef FPCPROCVAR}@{$endif}check_init_paras,nil);
  1026. { set _FAIL as keyword if constructor }
  1027. if (pd.proctypeoption=potype_constructor) then
  1028. begin
  1029. oldfailtokenmode:=tokeninfo^[_FAIL].keyword;
  1030. tokeninfo^[_FAIL].keyword:=m_all;
  1031. end;
  1032. { set _SELF as keyword if methods }
  1033. if assigned(pd._class) then
  1034. begin
  1035. oldselftokenmode:=tokeninfo^[_SELF].keyword;
  1036. tokeninfo^[_SELF].keyword:=m_all;
  1037. end;
  1038. tcgprocinfo(current_procinfo).parse_body;
  1039. { When it's a nested procedure then defer the code generation,
  1040. when back at normal function level then generate the code
  1041. for all defered nested procedures and the current procedure }
  1042. if isnestedproc then
  1043. tcgprocinfo(current_procinfo.parent).nestedprocs.insert(current_procinfo)
  1044. else
  1045. begin
  1046. if status.errorcount=0 then
  1047. do_generate_code(tcgprocinfo(current_procinfo));
  1048. end;
  1049. { reset _FAIL as _SELF normal }
  1050. if (pd.proctypeoption=potype_constructor) then
  1051. tokeninfo^[_FAIL].keyword:=oldfailtokenmode;
  1052. if assigned(pd._class) then
  1053. tokeninfo^[_SELF].keyword:=oldselftokenmode;
  1054. consume(_SEMICOLON);
  1055. { release procinfo }
  1056. if tprocinfo(current_module.procinfo)<>current_procinfo then
  1057. internalerror(200304274);
  1058. current_module.procinfo:=current_procinfo.parent;
  1059. if not isnestedproc then
  1060. current_procinfo.free;
  1061. end;
  1062. { Restore old state }
  1063. constsymtable:=oldconstsymtable;
  1064. current_procinfo:=old_current_procinfo;
  1065. end;
  1066. {****************************************************************************
  1067. DECLARATION PARSING
  1068. ****************************************************************************}
  1069. { search in symtablestack for not complete classes }
  1070. procedure check_forward_class(p : tnamedindexitem;arg:pointer);
  1071. begin
  1072. if (tsym(p).typ=typesym) and
  1073. (ttypesym(p).restype.def.deftype=objectdef) and
  1074. (oo_is_forward in tobjectdef(ttypesym(p).restype.def).objectoptions) then
  1075. MessagePos1(tsym(p).fileinfo,sym_e_forward_type_not_resolved,tsym(p).realname);
  1076. end;
  1077. procedure read_declarations(islibrary : boolean);
  1078. begin
  1079. repeat
  1080. if not assigned(current_procinfo) then
  1081. internalerror(200304251);
  1082. case token of
  1083. _LABEL:
  1084. begin
  1085. label_dec;
  1086. end;
  1087. _CONST:
  1088. begin
  1089. const_dec;
  1090. end;
  1091. _TYPE:
  1092. begin
  1093. type_dec;
  1094. end;
  1095. _VAR:
  1096. var_dec;
  1097. _THREADVAR:
  1098. threadvar_dec;
  1099. _CONSTRUCTOR,_DESTRUCTOR,
  1100. _FUNCTION,_PROCEDURE,_OPERATOR,_CLASS:
  1101. begin
  1102. read_proc;
  1103. end;
  1104. _RESOURCESTRING:
  1105. resourcestring_dec;
  1106. _EXPORTS:
  1107. begin
  1108. if not(assigned(current_procinfo.procdef.localst)) or
  1109. (current_procinfo.procdef.localst.symtablelevel>main_program_level) or
  1110. (current_module.is_unit) then
  1111. begin
  1112. Message(parser_e_syntax_error);
  1113. consume_all_until(_SEMICOLON);
  1114. end
  1115. else if islibrary or
  1116. (target_info.system in [system_i386_WIN32,system_i386_wdosx,system_i386_Netware]) then
  1117. read_exports
  1118. else
  1119. begin
  1120. Message(parser_w_unsupported_feature);
  1121. consume(_BEGIN);
  1122. end;
  1123. end
  1124. else break;
  1125. end;
  1126. until false;
  1127. { check for incomplete class definitions, this is only required
  1128. for fpc modes }
  1129. if (m_fpc in aktmodeswitches) then
  1130. symtablestack.foreach_static({$ifdef FPCPROCVAR}@{$endif}check_forward_class,nil);
  1131. end;
  1132. procedure read_interface_declarations;
  1133. begin
  1134. repeat
  1135. case token of
  1136. _CONST :
  1137. const_dec;
  1138. _TYPE :
  1139. type_dec;
  1140. _VAR :
  1141. var_dec;
  1142. _THREADVAR :
  1143. threadvar_dec;
  1144. _RESOURCESTRING:
  1145. resourcestring_dec;
  1146. _FUNCTION,
  1147. _PROCEDURE,
  1148. _OPERATOR :
  1149. read_proc;
  1150. else
  1151. break;
  1152. end;
  1153. until false;
  1154. { check for incomplete class definitions, this is only required
  1155. for fpc modes }
  1156. if (m_fpc in aktmodeswitches) then
  1157. symtablestack.foreach_static({$ifdef FPCPROCVAR}@{$endif}check_forward_class,nil);
  1158. end;
  1159. begin
  1160. cprocinfo:=tcgprocinfo;
  1161. end.
  1162. {
  1163. $Log$
  1164. Revision 1.159 2003-10-07 15:17:07 peter
  1165. * inline supported again, LOC_REFERENCEs are used to pass the
  1166. parameters
  1167. * inlineparasymtable,inlinelocalsymtable removed
  1168. * exitlabel inserting fixed
  1169. Revision 1.158 2003/10/06 22:23:41 florian
  1170. + added basic olevariant support
  1171. Revision 1.157 2003/10/03 14:45:09 peter
  1172. * more proc directive for procvar fixes
  1173. Revision 1.156 2003/10/02 21:20:32 peter
  1174. * handle_calling_convention removed from parse_proc_directive to
  1175. separate call
  1176. Revision 1.155 2003/10/01 20:34:49 peter
  1177. * procinfo unit contains tprocinfo
  1178. * cginfo renamed to cgbase
  1179. * moved cgmessage to verbose
  1180. * fixed ppc and sparc compiles
  1181. Revision 1.154 2003/09/29 20:58:56 peter
  1182. * optimized releasing of registers
  1183. Revision 1.153 2003/09/28 17:55:04 peter
  1184. * parent framepointer changed to hidden parameter
  1185. * tloadparentfpnode added
  1186. Revision 1.152 2003/09/27 13:29:43 peter
  1187. * fix reported file position for not matched forwards
  1188. Revision 1.151 2003/09/25 21:25:13 peter
  1189. * remove allocate_intterupt_parameter, allocation is platform
  1190. dependent and needs to be done in create_paraloc_info
  1191. Revision 1.150 2003/09/25 16:19:32 peter
  1192. * fix filepositions
  1193. * insert spill temp allocations at the start of the proc
  1194. Revision 1.149 2003/09/23 17:56:06 peter
  1195. * locals and paras are allocated in the code generation
  1196. * tvarsym.localloc contains the location of para/local when
  1197. generating code for the current procedure
  1198. Revision 1.148 2003/09/14 19:18:10 peter
  1199. * remove obsolete code already in comments
  1200. Revision 1.147 2003/09/14 12:58:00 peter
  1201. * support mulitple overloads in implementation, this is delphi
  1202. compatible
  1203. * procsym only stores the overloads available in the interface
  1204. Revision 1.146 2003/09/12 19:07:42 daniel
  1205. * Fixed fast spilling functionality by re-adding the code that initializes
  1206. precoloured nodes to degree 255. I would like to play hangman on the one
  1207. who removed that code.
  1208. Revision 1.145 2003/09/10 19:14:31 daniel
  1209. * Failed attempt to restore broken fastspill functionality
  1210. Revision 1.144 2003/09/09 20:59:27 daniel
  1211. * Adding register allocation order
  1212. Revision 1.143 2003/09/09 15:55:44 peter
  1213. * use register with least interferences in spillregister
  1214. Revision 1.142 2003/09/07 22:09:35 peter
  1215. * preparations for different default calling conventions
  1216. * various RA fixes
  1217. Revision 1.141 2003/09/04 14:46:12 peter
  1218. * abort with IE when spilling requires > 20 loops
  1219. Revision 1.140 2003/09/03 15:55:01 peter
  1220. * NEWRA branch merged
  1221. Revision 1.139 2003/09/03 11:18:37 florian
  1222. * fixed arm concatcopy
  1223. + arm support in the common compiler sources added
  1224. * moved some generic cg code around
  1225. + tfputype added
  1226. * ...
  1227. Revision 1.138.2.1 2003/08/31 13:50:16 daniel
  1228. * Remove sorting and use pregenerated indexes
  1229. * Some work on making things compile
  1230. Revision 1.138 2003/08/20 17:48:49 peter
  1231. * fixed stackalloc to not allocate localst.datasize twice
  1232. * order of stackalloc code fixed for implicit init/final
  1233. Revision 1.137 2003/08/20 15:50:35 peter
  1234. * define NOOPT until optimizer is fixed
  1235. Revision 1.136 2003/08/20 09:07:00 daniel
  1236. * New register coding now mandatory, some more convert_registers calls
  1237. removed.
  1238. Revision 1.135 2003/08/20 07:48:03 daniel
  1239. * Made internal assembler use new register coding
  1240. Revision 1.134 2003/08/17 16:59:20 jonas
  1241. * fixed regvars so they work with newra (at least for ppc)
  1242. * fixed some volatile register bugs
  1243. + -dnotranslation option for -dnewra, which causes the registers not to
  1244. be translated from virtual to normal registers. Requires support in
  1245. the assembler writer as well, which is only implemented in aggas/
  1246. agppcgas currently
  1247. Revision 1.133 2003/07/23 11:04:15 jonas
  1248. * split en_exit_code into a part that may allocate a register and a part
  1249. that doesn't, so the former can be done before the register colouring
  1250. has been performed
  1251. Revision 1.132 2003/07/06 17:58:22 peter
  1252. * framepointer fixes for sparc
  1253. * parent framepointer code more generic
  1254. Revision 1.131 2003/07/06 15:31:21 daniel
  1255. * Fixed register allocator. *Lots* of fixes.
  1256. Revision 1.130 2003/07/05 20:15:24 jonas
  1257. * set pi_do_call if range/overflow checking is on
  1258. Revision 1.129 2003/06/17 16:34:44 jonas
  1259. * lots of newra fixes (need getfuncretparaloc implementation for i386)!
  1260. * renamed all_intregisters to paramanager.get_volatile_registers_int(pocall_default) and made it
  1261. processor dependent
  1262. Revision 1.128 2003/06/14 14:53:50 jonas
  1263. * fixed newra cycle for x86
  1264. * added constants for indicating source and destination operands of the
  1265. "move reg,reg" instruction to aasmcpu (and use those in rgobj)
  1266. Revision 1.127 2003/06/13 21:19:31 peter
  1267. * current_procdef removed, use current_procinfo.procdef instead
  1268. Revision 1.126 2003/06/12 16:43:07 peter
  1269. * newra compiles for sparc
  1270. Revision 1.125 2003/06/09 12:23:30 peter
  1271. * init/final of procedure data splitted from genentrycode
  1272. * use asmnode getposition to insert final at the correct position
  1273. als for the implicit try...finally
  1274. Revision 1.124 2003/06/07 19:37:43 jonas
  1275. * pi_do_call must always be set for the main program, since it always
  1276. ends with a call to FPC_DO_EXIT
  1277. Revision 1.123 2003/06/07 18:57:04 jonas
  1278. + added freeintparaloc
  1279. * ppc get/freeintparaloc now check whether the parameter regs are
  1280. properly allocated/deallocated (and get an extra list para)
  1281. * ppc a_call_* now internalerrors if pi_do_call is not yet set
  1282. * fixed lot of missing pi_do_call's
  1283. Revision 1.122 2003/06/03 13:01:59 daniel
  1284. * Register allocator finished
  1285. Revision 1.121 2003/05/31 20:23:39 jonas
  1286. * added pi_do_call if a procedure has a value shortstring parameter
  1287. (it's copied to the local stackframe with a helper)
  1288. Revision 1.120 2003/05/30 23:57:08 peter
  1289. * more sparc cleanup
  1290. * accumulator removed, splitted in function_return_reg (called) and
  1291. function_result_reg (caller)
  1292. Revision 1.119 2003/05/28 23:58:18 jonas
  1293. * added missing initialization of rg.usedintin,byproc
  1294. * ppc now also saves/restores used fpu registers
  1295. * ncgcal doesn't add used registers to usedby/inproc anymore, except for
  1296. i386
  1297. Revision 1.118 2003/05/26 21:17:18 peter
  1298. * procinlinenode removed
  1299. * aktexit2label removed, fast exit removed
  1300. + tcallnode.inlined_pass_2 added
  1301. Revision 1.117 2003/05/25 08:59:47 peter
  1302. * do not generate code when there was an error
  1303. Revision 1.116 2003/05/23 18:49:55 jonas
  1304. * generate code for parent procedure before that of nested procedures as
  1305. well (I only need pass_1 to be done for the ppc, but pass_1 and pass_2
  1306. are grouped and it doesn't hurt that pass_2 is done as well)
  1307. Revision 1.115 2003/05/22 21:31:35 peter
  1308. * defer codegeneration for nested procedures
  1309. Revision 1.114 2003/05/16 20:00:39 jonas
  1310. * powerpc nested procedure fixes, should work completely now if all
  1311. local variables of the parent procedure are declared before the
  1312. nested procedures are declared
  1313. Revision 1.113 2003/05/16 14:33:31 peter
  1314. * regvar fixes
  1315. Revision 1.112 2003/05/13 21:26:38 peter
  1316. * only call destructor in except block when there is a destructor
  1317. available
  1318. Revision 1.111 2003/05/13 19:14:41 peter
  1319. * failn removed
  1320. * inherited result code check moven to pexpr
  1321. Revision 1.110 2003/05/13 15:18:49 peter
  1322. * fixed various crashes
  1323. Revision 1.109 2003/05/11 21:37:03 peter
  1324. * moved implicit exception frame from ncgutil to psub
  1325. * constructor/destructor helpers moved from cobj/ncgutil to psub
  1326. Revision 1.108 2003/05/09 17:47:03 peter
  1327. * self moved to hidden parameter
  1328. * removed hdisposen,hnewn,selfn
  1329. Revision 1.107 2003/04/27 11:21:34 peter
  1330. * aktprocdef renamed to current_procinfo.procdef
  1331. * procinfo renamed to current_procinfo
  1332. * procinfo will now be stored in current_module so it can be
  1333. cleaned up properly
  1334. * gen_main_procsym changed to create_main_proc and release_main_proc
  1335. to also generate a tprocinfo structure
  1336. * fixed unit implicit initfinal
  1337. Revision 1.106 2003/04/27 07:29:50 peter
  1338. * current_procinfo.procdef cleanup, current_procdef is now always nil when parsing
  1339. a new procdef declaration
  1340. * aktprocsym removed
  1341. * lexlevel removed, use symtable.symtablelevel instead
  1342. * implicit init/final code uses the normal genentry/genexit
  1343. * funcret state checking updated for new funcret handling
  1344. Revision 1.105 2003/04/26 00:31:42 peter
  1345. * set return_offset moved to after_header
  1346. Revision 1.104 2003/04/25 20:59:34 peter
  1347. * removed funcretn,funcretsym, function result is now in varsym
  1348. and aliases for result and function name are added using absolutesym
  1349. * vs_hidden parameter for funcret passed in parameter
  1350. * vs_hidden fixes
  1351. * writenode changed to printnode and released from extdebug
  1352. * -vp option added to generate a tree.log with the nodetree
  1353. * nicer printnode for statements, callnode
  1354. Revision 1.103 2003/04/24 13:03:01 florian
  1355. * comp is now written with its bit pattern to the ppu instead as an extended
  1356. Revision 1.102 2003/04/23 12:35:34 florian
  1357. * fixed several issues with powerpc
  1358. + applied a patch from Jonas for nested function calls (PowerPC only)
  1359. * ...
  1360. Revision 1.101 2003/04/22 14:33:38 peter
  1361. * removed some notes/hints
  1362. Revision 1.100 2003/04/22 13:47:08 peter
  1363. * fixed C style array of const
  1364. * fixed C array passing
  1365. * fixed left to right with high parameters
  1366. Revision 1.99 2003/04/22 10:09:35 daniel
  1367. + Implemented the actual register allocator
  1368. + Scratch registers unavailable when new register allocator used
  1369. + maybe_save/maybe_restore unavailable when new register allocator used
  1370. Revision 1.98 2003/04/17 07:50:24 daniel
  1371. * Some work on interference graph construction
  1372. Revision 1.97 2003/04/16 09:26:55 jonas
  1373. * assembler procedures now again get a stackframe if they have local
  1374. variables. No space is reserved for a function result however.
  1375. Also, the register parameters aren't automatically saved on the stack
  1376. anymore in assembler procedures.
  1377. Revision 1.96 2003/04/05 21:09:31 jonas
  1378. * several ppc/generic result offset related fixes. The "normal" result
  1379. offset seems now to be calculated correctly and a lot of duplicate
  1380. calculations have been removed. Nested functions accessing the parent's
  1381. function result don't work at all though :(
  1382. Revision 1.95 2003/04/02 16:11:34 peter
  1383. * give error when exports is not supported
  1384. Revision 1.94 2003/03/12 22:43:38 jonas
  1385. * more powerpc and generic fixes related to the new register allocator
  1386. Revision 1.93 2003/03/08 08:59:07 daniel
  1387. + $define newra will enable new register allocator
  1388. + getregisterint will return imaginary registers with $newra
  1389. + -sr switch added, will skip register allocation so you can see
  1390. the direct output of the code generator before register allocation
  1391. Revision 1.92 2003/02/19 22:00:14 daniel
  1392. * Code generator converted to new register notation
  1393. - Horribily outdated todo.txt removed
  1394. Revision 1.91 2003/01/09 21:52:37 peter
  1395. * merged some verbosity options.
  1396. * V_LineInfo is a verbosity flag to include line info
  1397. Revision 1.90 2003/01/09 20:40:59 daniel
  1398. * Converted some code in cgx86.pas to new register numbering
  1399. Revision 1.89 2003/01/09 15:49:56 daniel
  1400. * Added register conversion
  1401. Revision 1.88 2003/01/08 18:43:56 daniel
  1402. * Tregister changed into a record
  1403. Revision 1.87 2003/01/03 20:35:08 peter
  1404. * check also interfacedef when checking for matching forwarddef
  1405. Revision 1.86 2003/01/02 11:14:02 michael
  1406. + Patch from peter to support initial values for local variables
  1407. Revision 1.85 2002/12/29 18:59:34 peter
  1408. * fixed parsing of declarations before asm statement
  1409. Revision 1.84 2002/12/29 18:25:18 peter
  1410. * parse declarations before check _ASM token
  1411. Revision 1.83 2002/12/29 14:57:50 peter
  1412. * unit loading changed to first register units and load them
  1413. afterwards. This is needed to support uses xxx in yyy correctly
  1414. * unit dependency check fixed
  1415. Revision 1.82 2002/12/25 01:26:56 peter
  1416. * duplicate procsym-unitsym fix
  1417. Revision 1.81 2002/12/15 13:37:15 peter
  1418. * don't include uf_init for library. The code is already called and
  1419. does not need to be in the initfinal table
  1420. Revision 1.80 2002/12/07 14:27:09 carl
  1421. * 3% memory optimization
  1422. * changed some types
  1423. + added type checking with different size for call node and for
  1424. parameters
  1425. Revision 1.79 2002/11/25 18:43:32 carl
  1426. - removed the invalid if <> checking (Delphi is strange on this)
  1427. + implemented abstract warning on instance creation of class with
  1428. abstract methods.
  1429. * some error message cleanups
  1430. Revision 1.78 2002/11/25 17:43:23 peter
  1431. * splitted defbase in defutil,symutil,defcmp
  1432. * merged isconvertable and is_equal into compare_defs(_ext)
  1433. * made operator search faster by walking the list only once
  1434. Revision 1.77 2002/11/23 22:50:06 carl
  1435. * some small speed optimizations
  1436. + added several new warnings/hints
  1437. Revision 1.76 2002/11/18 17:31:58 peter
  1438. * pass proccalloption to ret_in_xxx and push_xxx functions
  1439. Revision 1.75 2002/11/17 16:31:57 carl
  1440. * memory optimization (3-4%) : cleanup of tai fields,
  1441. cleanup of tdef and tsym fields.
  1442. * make it work for m68k
  1443. Revision 1.74 2002/11/15 01:58:53 peter
  1444. * merged changes from 1.0.7 up to 04-11
  1445. - -V option for generating bug report tracing
  1446. - more tracing for option parsing
  1447. - errors for cdecl and high()
  1448. - win32 import stabs
  1449. - win32 records<=8 are returned in eax:edx (turned off by default)
  1450. - heaptrc update
  1451. - more info for temp management in .s file with EXTDEBUG
  1452. Revision 1.73 2002/11/09 15:32:30 carl
  1453. * noopt for non-i386 targets
  1454. Revision 1.72 2002/09/10 20:31:48 florian
  1455. * call to current_procinfo.after_header added
  1456. Revision 1.71 2002/09/07 15:25:07 peter
  1457. * old logs removed and tabs fixed
  1458. Revision 1.70 2002/09/03 16:26:27 daniel
  1459. * Make Tprocdef.defs protected
  1460. Revision 1.69 2002/08/25 19:25:20 peter
  1461. * sym.insert_in_data removed
  1462. * symtable.insertvardata/insertconstdata added
  1463. * removed insert_in_data call from symtable.insert, it needs to be
  1464. called separatly. This allows to deref the address calculation
  1465. * procedures now calculate the parast addresses after the procedure
  1466. directives are parsed. This fixes the cdecl parast problem
  1467. * push_addr_param has an extra argument that specifies if cdecl is used
  1468. or not
  1469. Revision 1.68 2002/08/17 09:23:41 florian
  1470. * first part of procinfo rewrite
  1471. Revision 1.67 2002/08/16 14:24:59 carl
  1472. * issameref() to test if two references are the same (then emit no opcodes)
  1473. + ret_in_reg to replace ret_in_acc
  1474. (fix some register allocation bugs at the same time)
  1475. + save_std_register now has an extra parameter which is the
  1476. usedinproc registers
  1477. Revision 1.66 2002/08/11 14:32:27 peter
  1478. * renamed current_library to objectlibrary
  1479. Revision 1.65 2002/08/11 13:24:13 peter
  1480. * saving of asmsymbols in ppu supported
  1481. * asmsymbollist global is removed and moved into a new class
  1482. tasmlibrarydata that will hold the info of a .a file which
  1483. corresponds with a single module. Added librarydata to tmodule
  1484. to keep the library info stored for the module. In the future the
  1485. objectfiles will also be stored to the tasmlibrarydata class
  1486. * all getlabel/newasmsymbol and friends are moved to the new class
  1487. Revision 1.64 2002/08/09 19:14:28 carl
  1488. * fixed stackframe parameter (should only contain local size),
  1489. set to zero currently
  1490. Revision 1.63 2002/08/06 20:55:22 florian
  1491. * first part of ppc calling conventions fix
  1492. Revision 1.62 2002/07/26 21:15:41 florian
  1493. * rewrote the system handling
  1494. Revision 1.61 2002/07/20 11:57:56 florian
  1495. * types.pas renamed to defbase.pas because D6 contains a types
  1496. unit so this would conflicts if D6 programms are compiled
  1497. + Willamette/SSE2 instructions to assembler added
  1498. Revision 1.60 2002/07/19 11:41:36 daniel
  1499. * State tracker work
  1500. * The whilen and repeatn are now completely unified into whilerepeatn. This
  1501. allows the state tracker to change while nodes automatically into
  1502. repeat nodes.
  1503. * Resulttypepass improvements to the notn. 'not not a' is optimized away and
  1504. 'not(a>b)' is optimized into 'a<=b'.
  1505. * Resulttypepass improvements to the whilerepeatn. 'while not a' is optimized
  1506. by removing the notn and later switchting the true and falselabels. The
  1507. same is done with 'repeat until not a'.
  1508. Revision 1.59 2002/07/15 18:03:15 florian
  1509. * readded removed changes
  1510. Revision 1.57 2002/07/11 14:41:28 florian
  1511. * start of the new generic parameter handling
  1512. Revision 1.58 2002/07/14 18:00:44 daniel
  1513. + Added the beginning of a state tracker. This will track the values of
  1514. variables through procedures and optimize things away.
  1515. Revision 1.56 2002/07/07 09:52:32 florian
  1516. * powerpc target fixed, very simple units can be compiled
  1517. * some basic stuff for better callparanode handling, far from being finished
  1518. Revision 1.55 2002/07/04 20:43:01 florian
  1519. * first x86-64 patches
  1520. Revision 1.54 2002/07/01 18:46:25 peter
  1521. * internal linker
  1522. * reorganized aasm layer
  1523. Revision 1.53 2002/05/18 13:34:14 peter
  1524. * readded missing revisions
  1525. Revision 1.52 2002/05/16 19:46:44 carl
  1526. + defines.inc -> fpcdefs.inc to avoid conflicts if compiling by hand
  1527. + try to fix temp allocation (still in ifdef)
  1528. + generic constructor calls
  1529. + start of tassembler / tmodulebase class cleanup
  1530. Revision 1.51 2002/05/14 19:34:49 peter
  1531. * removed old logs and updated copyright year
  1532. }