psub.pas 69 KB

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