pdecsub.pas 106 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901
  1. {
  2. Copyright (c) 1998-2002 by Florian Klaempfl, Daniel Mantione
  3. Does the parsing of the procedures/functions
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program; if not, write to the Free Software
  14. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  15. ****************************************************************************
  16. }
  17. unit pdecsub;
  18. {$i fpcdefs.inc}
  19. interface
  20. uses
  21. tokens,symconst,symtype,symdef,symsym;
  22. type
  23. tpdflag=(
  24. pd_body, { directive needs a body }
  25. pd_implemen, { directive can be used implementation section }
  26. pd_interface, { directive can be used interface section }
  27. pd_object, { directive can be used object declaration }
  28. pd_procvar, { directive can be used procvar declaration }
  29. pd_notobject, { directive can not be used object declaration }
  30. pd_notobjintf, { directive can not be used interface declaration }
  31. pd_notprocvar, { directive can not be used procvar declaration }
  32. pd_dispinterface,{ directive can be used with dispinterface methods }
  33. pd_cppobject { directive can be used with cppclass }
  34. );
  35. tpdflags=set of tpdflag;
  36. function check_proc_directive(isprocvar:boolean):boolean;
  37. procedure insert_funcret_local(pd:tprocdef);
  38. function proc_add_definition(var currpd:tprocdef):boolean;
  39. function proc_get_importname(pd:tprocdef):string;
  40. procedure proc_set_mangledname(pd:tprocdef);
  41. procedure handle_calling_convention(pd:tabstractprocdef);
  42. procedure parse_parameter_dec(pd:tabstractprocdef);
  43. procedure parse_proc_directives(pd:tabstractprocdef;var pdflags:tpdflags);
  44. procedure parse_var_proc_directives(sym:tsym);
  45. procedure parse_object_proc_directives(pd:tabstractprocdef);
  46. function parse_proc_head(aclass:tobjectdef;potype:tproctypeoption;var pd:tprocdef):boolean;
  47. function parse_proc_dec(aclass:tobjectdef):tprocdef;
  48. implementation
  49. uses
  50. SysUtils,
  51. { common }
  52. cutils,cclasses,
  53. { global }
  54. globtype,globals,verbose,constexp,
  55. systems,
  56. cpuinfo,
  57. { symtable }
  58. symbase,symtable,defutil,defcmp,paramgr,cpupara,
  59. { pass 1 }
  60. fmodule,node,htypechk,
  61. nmat,nadd,ncal,nset,ncnv,ninl,ncon,nld,nflw,
  62. { parser }
  63. scanner,
  64. pbase,pexpr,ptype,pdecl
  65. ;
  66. const
  67. { Please leave this here, this module should NOT use
  68. these variables.
  69. Declaring it as string here results in an error when compiling (PFV) }
  70. current_procinfo = 'error';
  71. procedure insert_funcret_para(pd:tabstractprocdef);
  72. var
  73. storepos : tfileposinfo;
  74. vs : tparavarsym;
  75. paranr : word;
  76. begin
  77. if not(pd.proctypeoption in [potype_constructor,potype_destructor]) and
  78. not is_void(pd.returndef) and
  79. paramanager.ret_in_param(pd.returndef,pd.proccalloption) then
  80. begin
  81. storepos:=current_tokenpos;
  82. if pd.typ=procdef then
  83. current_tokenpos:=tprocdef(pd).fileinfo;
  84. {$if defined(i386)}
  85. { For left to right add it at the end to be delphi compatible }
  86. if (target_info.system in system_all_windows) and
  87. (pd.proccalloption in (pushleftright_pocalls+[pocall_safecall])) then
  88. paranr:=paranr_result_leftright
  89. else
  90. {$elseif defined(x86) or defined(arm)}
  91. { other platforms don't have a "safecall" convention,
  92. and never reverse the parameter pushing order
  93. }
  94. if (target_info.system in system_all_windows) and
  95. (pd.proccalloption = pocall_safecall) then
  96. paranr:=paranr_result_leftright
  97. else
  98. {$endif}
  99. paranr:=paranr_result;
  100. { Generate result variable accessing function result }
  101. vs:=tparavarsym.create('$result',paranr,vs_var,pd.returndef,[vo_is_funcret,vo_is_hidden_para]);
  102. pd.parast.insert(vs);
  103. { Store the this symbol as funcretsym for procedures }
  104. if pd.typ=procdef then
  105. tprocdef(pd).funcretsym:=vs;
  106. current_tokenpos:=storepos;
  107. end;
  108. end;
  109. procedure insert_parentfp_para(pd:tabstractprocdef);
  110. var
  111. storepos : tfileposinfo;
  112. vs : tparavarsym;
  113. begin
  114. if pd.parast.symtablelevel>normal_function_level then
  115. begin
  116. storepos:=current_tokenpos;
  117. if pd.typ=procdef then
  118. current_tokenpos:=tprocdef(pd).fileinfo;
  119. { Generate result variable accessing function result, it
  120. can't be put in a register since it must be accessable
  121. from the framepointer }
  122. vs:=tparavarsym.create('$parentfp',paranr_parentfp,vs_value
  123. ,voidpointertype,[vo_is_parentfp,vo_is_hidden_para]);
  124. vs.varregable:=vr_none;
  125. pd.parast.insert(vs);
  126. current_tokenpos:=storepos;
  127. end;
  128. end;
  129. procedure insert_self_and_vmt_para(pd:tabstractprocdef);
  130. var
  131. storepos : tfileposinfo;
  132. vs : tparavarsym;
  133. hdef : tdef;
  134. vsp : tvarspez;
  135. begin
  136. if (pd.typ=procvardef) and
  137. pd.is_methodpointer then
  138. begin
  139. { Generate self variable }
  140. vs:=tparavarsym.create('$self',paranr_self,vs_value,voidpointertype,[vo_is_self,vo_is_hidden_para]);
  141. pd.parast.insert(vs);
  142. end
  143. else
  144. begin
  145. if (pd.typ=procdef) and
  146. assigned(tprocdef(pd)._class) and
  147. (pd.parast.symtablelevel=normal_function_level) then
  148. begin
  149. { static class methods have no hidden self/vmt pointer }
  150. if (po_staticmethod in pd.procoptions) and
  151. (po_classmethod in pd.procoptions) then
  152. exit;
  153. storepos:=current_tokenpos;
  154. current_tokenpos:=tprocdef(pd).fileinfo;
  155. { Generate VMT variable for constructor/destructor }
  156. if (pd.proctypeoption in [potype_constructor,potype_destructor]) and not(is_cppclass(tprocdef(pd)._class)) then
  157. begin
  158. { can't use classrefdef as type because inheriting
  159. will then always file because of a type mismatch }
  160. vs:=tparavarsym.create('$vmt',paranr_vmt,vs_value,voidpointertype,[vo_is_vmt,vo_is_hidden_para]);
  161. pd.parast.insert(vs);
  162. end;
  163. { Generate self variable, for classes we need
  164. to use the generic voidpointer to be compatible with
  165. methodpointers }
  166. vsp:=vs_value;
  167. if (po_staticmethod in pd.procoptions) or
  168. (po_classmethod in pd.procoptions) then
  169. hdef:=tclassrefdef.create(tprocdef(pd)._class)
  170. else
  171. begin
  172. if is_object(tprocdef(pd)._class) then
  173. vsp:=vs_var;
  174. hdef:=tprocdef(pd)._class;
  175. end;
  176. vs:=tparavarsym.create('$self',paranr_self,vsp,hdef,[vo_is_self,vo_is_hidden_para]);
  177. pd.parast.insert(vs);
  178. current_tokenpos:=storepos;
  179. end;
  180. end;
  181. end;
  182. procedure insert_funcret_local(pd:tprocdef);
  183. var
  184. storepos : tfileposinfo;
  185. vs : tlocalvarsym;
  186. aliasvs : tabsolutevarsym;
  187. sl : tpropaccesslist;
  188. hs : string;
  189. begin
  190. { The result from constructors and destructors can't be accessed directly }
  191. if not(pd.proctypeoption in [potype_constructor,potype_destructor]) and
  192. not is_void(pd.returndef) then
  193. begin
  194. storepos:=current_tokenpos;
  195. current_tokenpos:=pd.fileinfo;
  196. { We need to insert a varsym for the result in the localst
  197. when it is returning in a register }
  198. if not paramanager.ret_in_param(pd.returndef,pd.proccalloption) then
  199. begin
  200. vs:=tlocalvarsym.create('$result',vs_value,pd.returndef,[vo_is_funcret]);
  201. pd.localst.insert(vs);
  202. pd.funcretsym:=vs;
  203. end;
  204. { insert the name of the procedure as alias for the function result,
  205. we can't use realname because that will not work for compilerprocs
  206. as the name is lowercase and unreachable from the code }
  207. if assigned(pd.resultname) then
  208. hs:=pd.resultname^
  209. else
  210. hs:=pd.procsym.name;
  211. sl:=tpropaccesslist.create;
  212. sl.addsym(sl_load,pd.funcretsym);
  213. aliasvs:=tabsolutevarsym.create_ref(hs,pd.returndef,sl);
  214. include(aliasvs.varoptions,vo_is_funcret);
  215. tlocalsymtable(pd.localst).insert(aliasvs);
  216. { insert result also if support is on }
  217. if (m_result in current_settings.modeswitches) then
  218. begin
  219. sl:=tpropaccesslist.create;
  220. sl.addsym(sl_load,pd.funcretsym);
  221. aliasvs:=tabsolutevarsym.create_ref('RESULT',pd.returndef,sl);
  222. include(aliasvs.varoptions,vo_is_funcret);
  223. include(aliasvs.varoptions,vo_is_result);
  224. tlocalsymtable(pd.localst).insert(aliasvs);
  225. end;
  226. current_tokenpos:=storepos;
  227. end;
  228. end;
  229. procedure insert_hidden_para(p:TObject;arg:pointer);
  230. var
  231. hvs : tparavarsym;
  232. pd : tabstractprocdef absolute arg;
  233. begin
  234. if (tsym(p).typ<>paravarsym) then
  235. exit;
  236. with tparavarsym(p) do
  237. begin
  238. { We need a local copy for a value parameter when only the
  239. address is pushed. Open arrays and Array of Const are
  240. an exception because they are allocated at runtime and the
  241. address that is pushed is patched }
  242. if (varspez=vs_value) and
  243. paramanager.push_addr_param(varspez,vardef,pd.proccalloption) and
  244. not(is_open_array(vardef) or
  245. is_array_of_const(vardef)) then
  246. include(varoptions,vo_has_local_copy);
  247. { needs high parameter ? }
  248. if paramanager.push_high_param(varspez,vardef,pd.proccalloption) then
  249. begin
  250. hvs:=tparavarsym.create('$high'+name,paranr+1,vs_const,sinttype,[vo_is_high_para,vo_is_hidden_para]);
  251. hvs.symoptions:=[];
  252. owner.insert(hvs);
  253. end
  254. else
  255. begin
  256. { Give a warning that cdecl routines does not include high()
  257. support }
  258. if (pd.proccalloption in [pocall_cdecl,pocall_cppdecl]) and
  259. paramanager.push_high_param(varspez,vardef,pocall_default) then
  260. begin
  261. if is_open_string(vardef) then
  262. MessagePos(fileinfo,parser_w_cdecl_no_openstring);
  263. if not(po_external in pd.procoptions) and
  264. (pd.typ<>procvardef) then
  265. if is_array_of_const(vardef) then
  266. MessagePos(fileinfo,parser_e_varargs_need_cdecl_and_external)
  267. else
  268. MessagePos(fileinfo,parser_w_cdecl_has_no_high);
  269. end;
  270. if (vardef.typ=formaldef) and (Tformaldef(vardef).typed) then
  271. begin
  272. hvs:=tparavarsym.create('$typinfo'+name,paranr+1,vs_const,voidpointertype,
  273. [vo_is_typinfo_para,vo_is_hidden_para]);
  274. owner.insert(hvs);
  275. end;
  276. end;
  277. end;
  278. end;
  279. procedure check_c_para(pd:Tabstractprocdef);
  280. var
  281. i,
  282. lastparaidx : longint;
  283. sym : TSym;
  284. begin
  285. lastparaidx:=pd.parast.SymList.Count-1;
  286. for i:=0 to pd.parast.SymList.Count-1 do
  287. begin
  288. sym:=tsym(pd.parast.SymList[i]);
  289. if (sym.typ=paravarsym) and
  290. (tparavarsym(sym).vardef.typ=arraydef) then
  291. begin
  292. if not is_variant_array(tparavarsym(sym).vardef) and
  293. not is_array_of_const(tparavarsym(sym).vardef) and
  294. (tparavarsym(sym).varspez<>vs_var) then
  295. MessagePos(tparavarsym(sym).fileinfo,parser_h_c_arrays_are_references);
  296. if is_array_of_const(tparavarsym(sym).vardef) and
  297. (i<lastparaidx) and
  298. (tsym(pd.parast.SymList[i+1]).typ=paravarsym) and
  299. not(vo_is_high_para in tparavarsym(pd.parast.SymList[i+1]).varoptions) then
  300. MessagePos(tparavarsym(sym).fileinfo,parser_e_C_array_of_const_must_be_last);
  301. end;
  302. end;
  303. end;
  304. procedure check_msg_para(p:TObject;arg:pointer);
  305. begin
  306. if (tsym(p).typ<>paravarsym) then
  307. exit;
  308. with tparavarsym(p) do
  309. begin
  310. { Count parameters }
  311. if (paranr>=10) then
  312. inc(plongint(arg)^);
  313. { First parameter must be var }
  314. if (paranr=10) and
  315. (varspez<>vs_var) then
  316. MessagePos(fileinfo,parser_e_ill_msg_param);
  317. end;
  318. end;
  319. procedure set_addr_param_regable(p:TObject;arg:pointer);
  320. begin
  321. if (tsym(p).typ<>paravarsym) then
  322. exit;
  323. with tparavarsym(p) do
  324. begin
  325. if not vardef.needs_inittable and
  326. paramanager.push_addr_param(varspez,vardef,tprocdef(arg).proccalloption) then
  327. varregable:=vr_intreg;
  328. end;
  329. end;
  330. procedure parse_parameter_dec(pd:tabstractprocdef);
  331. {
  332. handle_procvar needs the same changes
  333. }
  334. type
  335. tppv = (pv_none,pv_proc,pv_func);
  336. var
  337. sc : TFPObjectList;
  338. hdef : tdef;
  339. arrayelementdef : tdef;
  340. vs : tparavarsym;
  341. i : longint;
  342. srsym : tsym;
  343. pv : tprocvardef;
  344. varspez : Tvarspez;
  345. defaultvalue : tconstsym;
  346. defaultrequired : boolean;
  347. old_block_type : tblock_type;
  348. currparast : tparasymtable;
  349. parseprocvar : tppv;
  350. locationstr : string;
  351. paranr : integer;
  352. dummytype : ttypesym;
  353. explicit_paraloc,
  354. need_array: boolean;
  355. begin
  356. old_block_type:=block_type;
  357. explicit_paraloc:=false;
  358. consume(_LKLAMMER);
  359. { Delphi/Kylix supports nonsense like }
  360. { procedure p(); }
  361. if try_to_consume(_RKLAMMER) and
  362. not(m_tp7 in current_settings.modeswitches) then
  363. exit;
  364. { parsing a proc or procvar ? }
  365. currparast:=tparasymtable(pd.parast);
  366. { reset }
  367. sc:=TFPObjectList.create(false);
  368. defaultrequired:=false;
  369. paranr:=0;
  370. inc(testcurobject);
  371. block_type:=bt_var;
  372. repeat
  373. parseprocvar:=pv_none;
  374. if try_to_consume(_VAR) then
  375. varspez:=vs_var
  376. else
  377. if try_to_consume(_CONST) then
  378. varspez:=vs_const
  379. else
  380. if (m_out in current_settings.modeswitches) and
  381. try_to_consume(_OUT) then
  382. varspez:=vs_out
  383. else
  384. if (m_mac in current_settings.modeswitches) and
  385. try_to_consume(_POINTPOINTPOINT) then
  386. begin
  387. include(pd.procoptions,po_varargs);
  388. break;
  389. end
  390. else
  391. if (m_mac in current_settings.modeswitches) and
  392. try_to_consume(_PROCEDURE) then
  393. begin
  394. parseprocvar:=pv_proc;
  395. varspez:=vs_const;
  396. end
  397. else
  398. if (m_mac in current_settings.modeswitches) and
  399. try_to_consume(_FUNCTION) then
  400. begin
  401. parseprocvar:=pv_func;
  402. varspez:=vs_const;
  403. end
  404. else
  405. varspez:=vs_value;
  406. defaultvalue:=nil;
  407. hdef:=nil;
  408. { read identifiers and insert with error type }
  409. sc.clear;
  410. repeat
  411. inc(paranr);
  412. vs:=tparavarsym.create(orgpattern,paranr*10,varspez,generrordef,[]);
  413. currparast.insert(vs);
  414. if assigned(vs.owner) then
  415. sc.add(vs)
  416. else
  417. vs.free;
  418. consume(_ID);
  419. until not try_to_consume(_COMMA);
  420. locationstr:='';
  421. { macpas anonymous procvar }
  422. if parseprocvar<>pv_none then
  423. begin
  424. pv:=tprocvardef.create(normal_function_level);
  425. if token=_LKLAMMER then
  426. parse_parameter_dec(pv);
  427. if parseprocvar=pv_func then
  428. begin
  429. block_type:=bt_var_type;
  430. consume(_COLON);
  431. single_type(pv.returndef,false,false);
  432. block_type:=bt_var;
  433. end;
  434. hdef:=pv;
  435. { possible proc directives }
  436. if check_proc_directive(true) then
  437. begin
  438. dummytype:=ttypesym.create('unnamed',hdef);
  439. parse_var_proc_directives(tsym(dummytype));
  440. dummytype.typedef:=nil;
  441. hdef.typesym:=nil;
  442. dummytype.free;
  443. end;
  444. { Add implicit hidden parameters and function result }
  445. handle_calling_convention(pv);
  446. end
  447. else
  448. { read type declaration, force reading for value and const paras }
  449. if (token=_COLON) or (varspez=vs_value) then
  450. begin
  451. consume(_COLON);
  452. { check for an open array }
  453. need_array:=false;
  454. { bitpacked open array are not yet supported }
  455. if (token=_PACKED) and
  456. not(cs_bitpacking in current_settings.localswitches) then
  457. begin
  458. consume(_PACKED);
  459. need_array:=true;
  460. end;
  461. if (token=_ARRAY) or
  462. need_array then
  463. begin
  464. consume(_ARRAY);
  465. consume(_OF);
  466. { define range and type of range }
  467. hdef:=tarraydef.create(0,-1,s32inttype);
  468. { array of const ? }
  469. if (token=_CONST) and (m_objpas in current_settings.modeswitches) then
  470. begin
  471. consume(_CONST);
  472. srsym:=search_system_type('TVARREC');
  473. tarraydef(hdef).elementdef:=ttypesym(srsym).typedef;
  474. include(tarraydef(hdef).arrayoptions,ado_IsArrayOfConst);
  475. end
  476. else
  477. begin
  478. { define field type }
  479. single_type(arrayelementdef,false,false);
  480. tarraydef(hdef).elementdef:=arrayelementdef;
  481. end;
  482. end
  483. else
  484. begin
  485. if (m_mac in current_settings.modeswitches) then
  486. try_to_consume(_UNIV); {currently does nothing}
  487. if try_to_consume(_TYPE) then
  488. hdef:=ctypedformaltype
  489. else
  490. begin
  491. block_type:=bt_var_type;
  492. single_type(hdef,false,false);
  493. block_type:=bt_var;
  494. end;
  495. { open string ? }
  496. if (varspez in [vs_out,vs_var]) and
  497. (cs_openstring in current_settings.moduleswitches) and
  498. is_shortstring(hdef) then
  499. hdef:=openshortstringtype;
  500. if (target_info.system in [system_powerpc_morphos,system_m68k_amiga]) then
  501. begin
  502. if (idtoken=_LOCATION) then
  503. begin
  504. consume(_LOCATION);
  505. locationstr:=pattern;
  506. consume(_CSTRING);
  507. end
  508. else
  509. begin
  510. if explicit_paraloc then
  511. Message(parser_e_paraloc_all_paras);
  512. locationstr:='';
  513. end;
  514. end
  515. else
  516. locationstr:='';
  517. { default parameter }
  518. if (m_default_para in current_settings.modeswitches) then
  519. begin
  520. if try_to_consume(_EQUAL) then
  521. begin
  522. vs:=tparavarsym(sc[0]);
  523. if sc.count>1 then
  524. Message(parser_e_default_value_only_one_para);
  525. { prefix 'def' to the parameter name }
  526. defaultvalue:=ReadConstant('$def'+vs.name,vs.fileinfo);
  527. if assigned(defaultvalue) then
  528. begin
  529. include(defaultvalue.symoptions,sp_internal);
  530. pd.parast.insert(defaultvalue);
  531. end;
  532. defaultrequired:=true;
  533. end
  534. else
  535. begin
  536. if defaultrequired then
  537. Message1(parser_e_default_value_expected_for_para,vs.name);
  538. end;
  539. end;
  540. end;
  541. end
  542. else
  543. hdef:=cformaltype;
  544. { File types are only allowed for var and out parameters }
  545. if (hdef.typ=filedef) and
  546. not(varspez in [vs_out,vs_var]) then
  547. CGMessage(cg_e_file_must_call_by_reference);
  548. for i:=0 to sc.count-1 do
  549. begin
  550. vs:=tparavarsym(sc[i]);
  551. { update varsym }
  552. vs.vardef:=hdef;
  553. vs.defaultconstsym:=defaultvalue;
  554. if (target_info.system in [system_powerpc_morphos,system_m68k_amiga]) then
  555. begin
  556. if locationstr<>'' then
  557. begin
  558. if sc.count>1 then
  559. Message(parser_e_paraloc_only_one_para);
  560. if (paranr>1) and not(explicit_paraloc) then
  561. Message(parser_e_paraloc_all_paras);
  562. explicit_paraloc:=true;
  563. include(vs.varoptions,vo_has_explicit_paraloc);
  564. if not(paramanager.parseparaloc(vs,upper(locationstr))) then
  565. message(parser_e_illegal_explicit_paraloc);
  566. end
  567. else
  568. if explicit_paraloc then
  569. Message(parser_e_paraloc_all_paras);
  570. end;
  571. end;
  572. until not try_to_consume(_SEMICOLON);
  573. if explicit_paraloc then
  574. begin
  575. pd.has_paraloc_info:=true;
  576. include(pd.procoptions,po_explicitparaloc);
  577. end;
  578. { remove parasymtable from stack }
  579. sc.free;
  580. { reset object options }
  581. dec(testcurobject);
  582. block_type:=old_block_type;
  583. consume(_RKLAMMER);
  584. end;
  585. function parse_proc_head(aclass:tobjectdef;potype:tproctypeoption;var pd:tprocdef):boolean;
  586. var
  587. hs : string;
  588. orgsp,sp : TIDString;
  589. srsym : tsym;
  590. srsymtable : TSymtable;
  591. checkstack : psymtablestackitem;
  592. storepos,
  593. procstartfilepos : tfileposinfo;
  594. searchagain : boolean;
  595. st,
  596. genericst : TSymtable;
  597. aprocsym : tprocsym;
  598. popclass : boolean;
  599. ImplIntf : TImplementedInterface;
  600. old_parse_generic : boolean;
  601. begin
  602. { Save the position where this procedure really starts }
  603. procstartfilepos:=current_tokenpos;
  604. old_parse_generic:=parse_generic;
  605. result:=false;
  606. pd:=nil;
  607. aprocsym:=nil;
  608. if (potype=potype_operator) then
  609. begin
  610. sp:=overloaded_names[optoken];
  611. orgsp:=sp;
  612. end
  613. else
  614. begin
  615. sp:=pattern;
  616. orgsp:=orgpattern;
  617. consume(_ID);
  618. end;
  619. { examine interface map: function/procedure iname.functionname=locfuncname }
  620. if assigned(aclass) and
  621. assigned(aclass.ImplementedInterfaces) and
  622. (aclass.ImplementedInterfaces.count>0) and
  623. try_to_consume(_POINT) then
  624. begin
  625. storepos:=current_tokenpos;
  626. current_tokenpos:=procstartfilepos;
  627. { get interface syms}
  628. searchsym(sp,srsym,srsymtable);
  629. if not assigned(srsym) then
  630. begin
  631. identifier_not_found(orgsp);
  632. srsym:=generrorsym;
  633. end;
  634. current_tokenpos:=storepos;
  635. { qualifier is interface? }
  636. ImplIntf:=nil;
  637. if (srsym.typ=typesym) and
  638. (ttypesym(srsym).typedef.typ=objectdef) then
  639. ImplIntf:=aclass.find_implemented_interface(tobjectdef(ttypesym(srsym).typedef));
  640. if ImplIntf=nil then
  641. Message(parser_e_interface_id_expected);
  642. consume(_ID);
  643. { Create unique name <interface>.<method> }
  644. hs:=sp+'.'+pattern;
  645. consume(_EQUAL);
  646. if assigned(ImplIntf) and
  647. (token=_ID) then
  648. ImplIntf.AddMapping(hs,pattern);
  649. consume(_ID);
  650. result:=true;
  651. exit;
  652. end;
  653. { method ? }
  654. if not assigned(aclass) and
  655. (potype<>potype_operator) and
  656. (symtablestack.top.symtablelevel=main_program_level) and
  657. try_to_consume(_POINT) then
  658. begin
  659. { search for object name }
  660. storepos:=current_tokenpos;
  661. current_tokenpos:=procstartfilepos;
  662. searchsym(sp,srsym,srsymtable);
  663. if not assigned(srsym) then
  664. begin
  665. identifier_not_found(orgsp);
  666. srsym:=generrorsym;
  667. end;
  668. current_tokenpos:=storepos;
  669. { consume proc name }
  670. sp:=pattern;
  671. orgsp:=orgpattern;
  672. procstartfilepos:=current_tokenpos;
  673. consume(_ID);
  674. { qualifier is class name ? }
  675. if (srsym.typ=typesym) and
  676. (ttypesym(srsym).typedef.typ=objectdef) then
  677. begin
  678. aclass:=tobjectdef(ttypesym(srsym).typedef);
  679. srsym:=tsym(aclass.symtable.Find(sp));
  680. if assigned(srsym) then
  681. begin
  682. if srsym.typ=procsym then
  683. aprocsym:=tprocsym(srsym)
  684. else
  685. begin
  686. { we use a different error message for tp7 so it looks more compatible }
  687. if (m_fpc in current_settings.modeswitches) then
  688. Message1(parser_e_overloaded_no_procedure,srsym.realname)
  689. else
  690. Message(parser_e_methode_id_expected);
  691. { rename the name to an unique name to avoid an
  692. error when inserting the symbol in the symtable }
  693. orgsp:=orgsp+'$'+tostr(current_filepos.line);
  694. end;
  695. end
  696. else
  697. begin
  698. Message(parser_e_methode_id_expected);
  699. { recover by making it a normal procedure instead of method }
  700. aclass:=nil;
  701. end;
  702. end
  703. else
  704. Message(parser_e_class_id_expected);
  705. end
  706. else
  707. begin
  708. { check for constructor/destructor which is not allowed here }
  709. if (not parse_only) and
  710. (potype in [potype_constructor,potype_destructor]) then
  711. Message(parser_e_constructors_always_objects);
  712. repeat
  713. searchagain:=false;
  714. current_tokenpos:=procstartfilepos;
  715. srsymtable:=symtablestack.top;
  716. srsym:=tsym(srsymtable.Find(sp));
  717. { Also look in the globalsymtable if we didn't found
  718. the symbol in the localsymtable }
  719. if not assigned(srsym) and
  720. not(parse_only) and
  721. (srsymtable=current_module.localsymtable) and
  722. assigned(current_module.globalsymtable) then
  723. srsym:=tsym(current_module.globalsymtable.Find(sp));
  724. { Check if overloaded is a procsym }
  725. if assigned(srsym) then
  726. begin
  727. if srsym.typ=procsym then
  728. aprocsym:=tprocsym(srsym)
  729. else
  730. begin
  731. { when the other symbol is a unit symbol then hide the unit
  732. symbol, this is not supported in tp7 }
  733. if not(m_tp7 in current_settings.modeswitches) and
  734. (srsym.typ=unitsym) then
  735. begin
  736. HideSym(srsym);
  737. searchagain:=true;
  738. end
  739. else
  740. begin
  741. { we use a different error message for tp7 so it looks more compatible }
  742. if (m_fpc in current_settings.modeswitches) then
  743. Message1(parser_e_overloaded_no_procedure,srsym.realname)
  744. else
  745. Message1(sym_e_duplicate_id,srsym.realname);
  746. { rename the name to an unique name to avoid an
  747. error when inserting the symbol in the symtable }
  748. orgsp:=orgsp+'$'+tostr(current_filepos.line);
  749. end;
  750. end;
  751. end;
  752. until not searchagain;
  753. end;
  754. { test again if assigned, it can be reset to recover }
  755. if not assigned(aprocsym) then
  756. begin
  757. { create a new procsym and set the real filepos }
  758. current_tokenpos:=procstartfilepos;
  759. { for operator we have only one procsym for each overloaded
  760. operation }
  761. if (potype=potype_operator) then
  762. begin
  763. Aprocsym:=Tprocsym(symtablestack.top.Find(sp));
  764. if Aprocsym=nil then
  765. Aprocsym:=tprocsym.create('$'+sp);
  766. end
  767. else
  768. aprocsym:=tprocsym.create(orgsp);
  769. symtablestack.top.insert(aprocsym);
  770. end;
  771. { to get the correct symtablelevel we must ignore ObjectSymtables }
  772. st:=nil;
  773. checkstack:=symtablestack.stack;
  774. while assigned(checkstack) do
  775. begin
  776. st:=checkstack^.symtable;
  777. if st.symtabletype in [staticsymtable,globalsymtable,localsymtable] then
  778. break;
  779. checkstack:=checkstack^.next;
  780. end;
  781. pd:=tprocdef.create(st.symtablelevel+1);
  782. pd._class:=aclass;
  783. pd.procsym:=aprocsym;
  784. pd.proctypeoption:=potype;
  785. { methods inherit df_generic or df_specialization from the objectdef }
  786. if assigned(pd._class) and
  787. (pd.parast.symtablelevel=normal_function_level) then
  788. begin
  789. if (df_generic in pd._class.defoptions) then
  790. begin
  791. include(pd.defoptions,df_generic);
  792. parse_generic:=true;
  793. end;
  794. if (df_specialization in pd._class.defoptions) then
  795. begin
  796. include(pd.defoptions,df_specialization);
  797. { Find corresponding genericdef, we need it later to
  798. replay the tokens to generate the body }
  799. if not assigned(pd._class.genericdef) then
  800. internalerror(200512113);
  801. genericst:=pd._class.genericdef.GetSymtable(gs_record);
  802. if not assigned(genericst) then
  803. internalerror(200512114);
  804. { We are parsing the same objectdef, the def index numbers
  805. are the same }
  806. pd.genericdef:=tstoreddef(genericst.DefList[pd.owner.DefList.IndexOf(pd)]);
  807. if not assigned(pd.genericdef) or
  808. (pd.genericdef.typ<>procdef) then
  809. internalerror(200512115);
  810. end;
  811. end;
  812. { methods need to be exported }
  813. if assigned(aclass) and
  814. (
  815. (symtablestack.top.symtabletype=ObjectSymtable) or
  816. (symtablestack.top.symtablelevel=main_program_level)
  817. ) then
  818. include(pd.procoptions,po_global);
  819. { symbol options that need to be kept per procdef }
  820. pd.fileinfo:=procstartfilepos;
  821. pd.visibility:=symtablestack.top.currentvisibility;
  822. { parse parameters }
  823. if token=_LKLAMMER then
  824. begin
  825. { Add ObjectSymtable to be able to find generic type definitions }
  826. popclass:=false;
  827. if assigned(pd._class) and
  828. (pd.parast.symtablelevel=normal_function_level) and
  829. (symtablestack.top.symtabletype<>ObjectSymtable) then
  830. begin
  831. symtablestack.push(pd._class.symtable);
  832. popclass:=true;
  833. end;
  834. { Add parameter symtable }
  835. if pd.parast.symtabletype<>staticsymtable then
  836. symtablestack.push(pd.parast);
  837. parse_parameter_dec(pd);
  838. if pd.parast.symtabletype<>staticsymtable then
  839. symtablestack.pop(pd.parast);
  840. if popclass then
  841. symtablestack.pop(pd._class.symtable);
  842. end;
  843. parse_generic:=old_parse_generic;
  844. result:=true;
  845. end;
  846. function parse_proc_dec(aclass:tobjectdef):tprocdef;
  847. var
  848. pd : tprocdef;
  849. isclassmethod : boolean;
  850. locationstr: string;
  851. old_parse_generic,
  852. popclass : boolean;
  853. begin
  854. locationstr:='';
  855. pd:=nil;
  856. isclassmethod:=false;
  857. { read class method }
  858. if try_to_consume(_CLASS) then
  859. begin
  860. { class method only allowed for procedures and functions }
  861. if not(token in [_FUNCTION,_PROCEDURE]) then
  862. Message(parser_e_procedure_or_function_expected);
  863. if is_interface(aclass) then
  864. Message(parser_e_no_static_method_in_interfaces)
  865. else
  866. isclassmethod:=true;
  867. end;
  868. case token of
  869. _FUNCTION :
  870. begin
  871. consume(_FUNCTION);
  872. if parse_proc_head(aclass,potype_function,pd) then
  873. begin
  874. { pd=nil when it is a interface mapping }
  875. if assigned(pd) then
  876. begin
  877. if try_to_consume(_COLON) then
  878. begin
  879. old_parse_generic:=parse_generic;
  880. inc(testcurobject);
  881. { Add ObjectSymtable to be able to find generic type definitions }
  882. popclass:=false;
  883. if assigned(pd._class) and
  884. (pd.parast.symtablelevel=normal_function_level) and
  885. (symtablestack.top.symtabletype<>ObjectSymtable) then
  886. begin
  887. symtablestack.push(pd._class.symtable);
  888. popclass:=true;
  889. parse_generic:=(df_generic in pd._class.defoptions);
  890. end;
  891. single_type(pd.returndef,false,false);
  892. if popclass then
  893. symtablestack.pop(pd._class.symtable);
  894. dec(testcurobject);
  895. parse_generic:=old_parse_generic;
  896. if (target_info.system in [system_m68k_amiga]) then
  897. begin
  898. if (idtoken=_LOCATION) then
  899. begin
  900. if po_explicitparaloc in pd.procoptions then
  901. begin
  902. consume(_LOCATION);
  903. locationstr:=pattern;
  904. consume(_CSTRING);
  905. end
  906. else
  907. { I guess this needs a new message... (KB) }
  908. Message(parser_e_paraloc_all_paras);
  909. end
  910. else
  911. begin
  912. if po_explicitparaloc in pd.procoptions then
  913. { assign default locationstr, if none specified }
  914. { and we've arguments with explicit paraloc }
  915. locationstr:='D0';
  916. end;
  917. end;
  918. end
  919. else
  920. begin
  921. if (
  922. parse_only and
  923. not(is_interface(pd._class))
  924. ) or
  925. (m_repeat_forward in current_settings.modeswitches) then
  926. begin
  927. consume(_COLON);
  928. consume_all_until(_SEMICOLON);
  929. end;
  930. end;
  931. if isclassmethod then
  932. include(pd.procoptions,po_classmethod);
  933. end;
  934. end
  935. else
  936. begin
  937. { recover }
  938. consume(_COLON);
  939. consume_all_until(_SEMICOLON);
  940. end;
  941. end;
  942. _PROCEDURE :
  943. begin
  944. consume(_PROCEDURE);
  945. if parse_proc_head(aclass,potype_procedure,pd) then
  946. begin
  947. { pd=nil when it is a interface mapping }
  948. if assigned(pd) then
  949. begin
  950. pd.returndef:=voidtype;
  951. if isclassmethod then
  952. include(pd.procoptions,po_classmethod);
  953. end;
  954. end;
  955. end;
  956. _CONSTRUCTOR :
  957. begin
  958. consume(_CONSTRUCTOR);
  959. parse_proc_head(aclass,potype_constructor,pd);
  960. if assigned(pd) and
  961. assigned(pd._class) then
  962. begin
  963. { Set return type, class constructors return the
  964. created instance, object constructors return boolean }
  965. if is_class(pd._class) then
  966. pd.returndef:=pd._class
  967. else
  968. {$ifdef CPU64bitaddr}
  969. pd.returndef:=bool64type;
  970. {$else CPU64bitaddr}
  971. pd.returndef:=bool32type;
  972. {$endif CPU64bitaddr}
  973. end;
  974. end;
  975. _DESTRUCTOR :
  976. begin
  977. consume(_DESTRUCTOR);
  978. parse_proc_head(aclass,potype_destructor,pd);
  979. if assigned(pd) then
  980. pd.returndef:=voidtype;
  981. end;
  982. _OPERATOR :
  983. begin
  984. consume(_OPERATOR);
  985. if (token in [first_overloaded..last_overloaded]) then
  986. begin
  987. optoken:=token;
  988. end
  989. else
  990. begin
  991. { Use the dummy NOTOKEN that is also declared
  992. for the overloaded_operator[] }
  993. optoken:=NOTOKEN;
  994. case token of
  995. _CARET:
  996. Message1(parser_e_overload_operator_failed,'**');
  997. _ID:
  998. if idtoken = _ENUMERATOR then
  999. optoken := _OP_ENUMERATOR
  1000. else
  1001. Message1(parser_e_overload_operator_failed,'');
  1002. _UNEQUAL:
  1003. Message1(parser_e_overload_operator_failed,'=');
  1004. else
  1005. Message1(parser_e_overload_operator_failed,'');
  1006. end;
  1007. end;
  1008. consume(token);
  1009. parse_proc_head(aclass,potype_operator,pd);
  1010. if assigned(pd) then
  1011. begin
  1012. { operators always need to be searched in all units }
  1013. include(pd.procoptions,po_overload);
  1014. if pd.parast.symtablelevel>normal_function_level then
  1015. Message(parser_e_no_local_operator);
  1016. if token<>_ID then
  1017. begin
  1018. if not(m_result in current_settings.modeswitches) then
  1019. consume(_ID);
  1020. end
  1021. else
  1022. begin
  1023. pd.resultname:=stringdup(orgpattern);
  1024. consume(_ID);
  1025. end;
  1026. if not try_to_consume(_COLON) then
  1027. begin
  1028. consume(_COLON);
  1029. pd.returndef:=generrordef;
  1030. consume_all_until(_SEMICOLON);
  1031. end
  1032. else
  1033. begin
  1034. single_type(pd.returndef,false,false);
  1035. if (optoken in [_EQUAL,_GT,_LT,_GTE,_LTE]) and
  1036. ((pd.returndef.typ<>orddef) or
  1037. (torddef(pd.returndef).ordtype<>pasbool)) then
  1038. Message(parser_e_comparative_operator_return_boolean);
  1039. if (optoken=_ASSIGNMENT) and
  1040. equal_defs(pd.returndef,tparavarsym(pd.parast.SymList[0]).vardef) then
  1041. message(parser_e_no_such_assignment)
  1042. else if not isoperatoracceptable(pd,optoken) then
  1043. Message(parser_e_overload_impossible);
  1044. end;
  1045. end
  1046. else
  1047. begin
  1048. { recover }
  1049. try_to_consume(_ID);
  1050. consume(_COLON);
  1051. consume_all_until(_SEMICOLON);
  1052. end;
  1053. end;
  1054. end;
  1055. { file types can't be function results }
  1056. if assigned(pd) and
  1057. (pd.returndef.typ=filedef) then
  1058. message(parser_e_illegal_function_result);
  1059. { support procedure proc stdcall export; }
  1060. if not(check_proc_directive(false)) then
  1061. begin
  1062. if (token=_COLON) then
  1063. begin
  1064. message(parser_e_field_not_allowed_here);
  1065. consume_all_until(_SEMICOLON);
  1066. end;
  1067. consume(_SEMICOLON);
  1068. end;
  1069. result:=pd;
  1070. if locationstr<>'' then
  1071. begin
  1072. if not(paramanager.parsefuncretloc(pd,upper(locationstr))) then
  1073. { I guess this needs a new message... (KB) }
  1074. message(parser_e_illegal_explicit_paraloc);
  1075. end;
  1076. end;
  1077. {****************************************************************************
  1078. Procedure directive handlers
  1079. ****************************************************************************}
  1080. procedure pd_far(pd:tabstractprocdef);
  1081. begin
  1082. Message1(parser_w_proc_directive_ignored,'FAR');
  1083. end;
  1084. procedure pd_near(pd:tabstractprocdef);
  1085. begin
  1086. Message1(parser_w_proc_directive_ignored,'NEAR');
  1087. end;
  1088. procedure pd_export(pd:tabstractprocdef);
  1089. begin
  1090. if pd.typ<>procdef then
  1091. internalerror(200304264);
  1092. if assigned(tprocdef(pd)._class) then
  1093. Message(parser_e_methods_dont_be_export);
  1094. if pd.parast.symtablelevel>normal_function_level then
  1095. Message(parser_e_dont_nest_export);
  1096. end;
  1097. procedure pd_forward(pd:tabstractprocdef);
  1098. begin
  1099. if pd.typ<>procdef then
  1100. internalerror(200304265);
  1101. tprocdef(pd).forwarddef:=true;
  1102. end;
  1103. procedure pd_alias(pd:tabstractprocdef);
  1104. begin
  1105. if pd.typ<>procdef then
  1106. internalerror(200304266);
  1107. consume(_COLON);
  1108. tprocdef(pd).aliasnames.insert(get_stringconst);
  1109. include(pd.procoptions,po_has_public_name);
  1110. end;
  1111. procedure pd_public(pd:tabstractprocdef);
  1112. begin
  1113. if pd.typ<>procdef then
  1114. internalerror(200304266);
  1115. if try_to_consume(_NAME) then
  1116. begin
  1117. tprocdef(pd).aliasnames.insert(get_stringconst);
  1118. include(pd.procoptions,po_has_public_name);
  1119. end;
  1120. end;
  1121. procedure pd_asmname(pd:tabstractprocdef);
  1122. begin
  1123. if pd.typ<>procdef then
  1124. internalerror(200304267);
  1125. tprocdef(pd).aliasnames.insert(target_info.Cprefix+pattern);
  1126. if token=_CCHAR then
  1127. consume(_CCHAR)
  1128. else
  1129. consume(_CSTRING);
  1130. { we don't need anything else }
  1131. tprocdef(pd).forwarddef:=false;
  1132. end;
  1133. procedure pd_internconst(pd:tabstractprocdef);
  1134. var v:Tconstexprint;
  1135. begin
  1136. if pd.typ<>procdef then
  1137. internalerror(200304268);
  1138. consume(_COLON);
  1139. v:=get_intconst;
  1140. if (v<int64(low(longint))) or (v>int64(high(longint))) then
  1141. message(parser_e_range_check_error)
  1142. else
  1143. Tprocdef(pd).extnumber:=longint(v.svalue);
  1144. end;
  1145. procedure pd_internproc(pd:tabstractprocdef);
  1146. var v:Tconstexprint;
  1147. begin
  1148. if pd.typ<>procdef then
  1149. internalerror(200304268);
  1150. consume(_COLON);
  1151. v:=get_intconst;
  1152. if (v<int64(low(longint))) or (v>int64(high(longint))) then
  1153. message(parser_e_range_check_error)
  1154. else
  1155. Tprocdef(pd).extnumber:=longint(v.svalue);
  1156. { the proc is defined }
  1157. tprocdef(pd).forwarddef:=false;
  1158. end;
  1159. procedure pd_interrupt(pd:tabstractprocdef);
  1160. begin
  1161. if pd.parast.symtablelevel>normal_function_level then
  1162. Message(parser_e_dont_nest_interrupt);
  1163. end;
  1164. procedure pd_abstract(pd:tabstractprocdef);
  1165. begin
  1166. if pd.typ<>procdef then
  1167. internalerror(200304269);
  1168. if oo_is_sealed in tprocdef(pd)._class.objectoptions then
  1169. Message(parser_e_sealed_class_cannot_have_abstract_methods)
  1170. else
  1171. if (po_virtualmethod in pd.procoptions) then
  1172. include(pd.procoptions,po_abstractmethod)
  1173. else
  1174. Message(parser_e_only_virtual_methods_abstract);
  1175. { the method is defined }
  1176. tprocdef(pd).forwarddef:=false;
  1177. end;
  1178. procedure pd_final(pd:tabstractprocdef);
  1179. begin
  1180. if pd.typ<>procdef then
  1181. internalerror(200910170);
  1182. if (po_virtualmethod in pd.procoptions) then
  1183. include(pd.procoptions,po_finalmethod)
  1184. else
  1185. Message(parser_e_only_virtual_methods_final);
  1186. end;
  1187. procedure pd_enumerator(pd:tabstractprocdef);
  1188. begin
  1189. if pd.typ<>procdef then
  1190. internalerror(200910250);
  1191. if (token = _ID) then
  1192. begin
  1193. if pattern='MOVENEXT' then
  1194. begin
  1195. if oo_has_enumerator_movenext in tprocdef(pd)._class.objectoptions then
  1196. message(parser_e_only_one_enumerator_movenext);
  1197. if (pd.proctypeoption = potype_function) and is_boolean(pd.returndef) then
  1198. begin
  1199. include(tprocdef(pd)._class.objectoptions, oo_has_enumerator_movenext);
  1200. include(pd.procoptions,po_enumerator_movenext);
  1201. end
  1202. else
  1203. Message(parser_e_enumerator_movenext_is_not_valid)
  1204. end
  1205. else
  1206. Message1(parser_e_invalid_enumerator_identifier, pattern);
  1207. consume(token);
  1208. end
  1209. else
  1210. Message(parser_e_enumerator_identifier_required);
  1211. end;
  1212. procedure pd_virtual(pd:tabstractprocdef);
  1213. {$ifdef WITHDMT}
  1214. var
  1215. pt : tnode;
  1216. {$endif WITHDMT}
  1217. begin
  1218. if pd.typ<>procdef then
  1219. internalerror(2003042610);
  1220. if (pd.proctypeoption=potype_constructor) and
  1221. is_object(tprocdef(pd)._class) then
  1222. Message(parser_e_constructor_cannot_be_not_virtual);
  1223. {$ifdef WITHDMT}
  1224. if is_object(tprocdef(pd)._class) and
  1225. (token<>_SEMICOLON) then
  1226. begin
  1227. { any type of parameter is allowed here! }
  1228. pt:=comp_expr(true);
  1229. if is_constintnode(pt) then
  1230. begin
  1231. include(pd.procoptions,po_msgint);
  1232. pd.messageinf.i:=pt.value;
  1233. end
  1234. else
  1235. Message(parser_e_ill_msg_expr);
  1236. disposetree(pt);
  1237. end;
  1238. {$endif WITHDMT}
  1239. end;
  1240. procedure pd_dispid(pd:tabstractprocdef);
  1241. var pt:Tnode;
  1242. begin
  1243. if pd.typ<>procdef then
  1244. internalerror(200604301);
  1245. pt:=comp_expr(true);
  1246. if is_constintnode(pt) then
  1247. if (Tordconstnode(pt).value<int64(low(longint))) or (Tordconstnode(pt).value>int64(high(longint))) then
  1248. message(parser_e_range_check_error)
  1249. else
  1250. Tprocdef(pd).dispid:=Tordconstnode(pt).value.svalue
  1251. else
  1252. message(parser_e_dispid_must_be_ord_const);
  1253. pt.free;
  1254. end;
  1255. procedure pd_static(pd:tabstractprocdef);
  1256. begin
  1257. if (cs_static_keyword in current_settings.moduleswitches) then
  1258. begin
  1259. if pd.typ=procdef then
  1260. include(tprocdef(pd).procsym.symoptions,sp_static);
  1261. include(pd.procoptions,po_staticmethod);
  1262. end;
  1263. end;
  1264. procedure pd_override(pd:tabstractprocdef);
  1265. begin
  1266. if pd.typ<>procdef then
  1267. internalerror(2003042611);
  1268. if not(is_class_or_interface(tprocdef(pd)._class)) then
  1269. Message(parser_e_no_object_override);
  1270. end;
  1271. procedure pd_overload(pd:tabstractprocdef);
  1272. begin
  1273. if pd.typ<>procdef then
  1274. internalerror(2003042612);
  1275. include(tprocdef(pd).procsym.symoptions,sp_has_overloaded);
  1276. end;
  1277. procedure pd_message(pd:tabstractprocdef);
  1278. var
  1279. pt : tnode;
  1280. paracnt : longint;
  1281. begin
  1282. if pd.typ<>procdef then
  1283. internalerror(2003042613);
  1284. if not is_class(tprocdef(pd)._class) then
  1285. Message(parser_e_msg_only_for_classes);
  1286. if ([po_msgstr,po_msgint]*pd.procoptions)<>[] then
  1287. Message(parser_e_multiple_messages);
  1288. { check parameter type }
  1289. paracnt:=0;
  1290. pd.parast.SymList.ForEachCall(@check_msg_para,@paracnt);
  1291. if paracnt<>1 then
  1292. Message(parser_e_ill_msg_param);
  1293. pt:=comp_expr(true);
  1294. if pt.nodetype=stringconstn then
  1295. begin
  1296. include(pd.procoptions,po_msgstr);
  1297. tprocdef(pd).messageinf.str:=stringdup(tstringconstnode(pt).value_str);
  1298. end
  1299. else
  1300. if is_constintnode(pt) then
  1301. begin
  1302. include(pd.procoptions,po_msgint);
  1303. if (Tordconstnode(pt).value<int64(low(Tprocdef(pd).messageinf.i))) or
  1304. (Tordconstnode(pt).value>int64(high(Tprocdef(pd).messageinf.i))) then
  1305. message(parser_e_range_check_error)
  1306. else
  1307. Tprocdef(pd).messageinf.i:=tordconstnode(pt).value.svalue;
  1308. end
  1309. else
  1310. Message(parser_e_ill_msg_expr);
  1311. pt.free;
  1312. end;
  1313. procedure pd_reintroduce(pd:tabstractprocdef);
  1314. begin
  1315. if pd.typ<>procdef then
  1316. internalerror(200401211);
  1317. if not(is_class_or_interface_or_object(tprocdef(pd)._class)) then
  1318. Message(parser_e_no_object_reintroduce);
  1319. end;
  1320. procedure pd_syscall(pd:tabstractprocdef);
  1321. {$if defined(powerpc) or defined(m68k)}
  1322. var
  1323. vs : tparavarsym;
  1324. sym : tsym;
  1325. symtable : TSymtable;
  1326. v: Tconstexprint;
  1327. {$endif defined(powerpc) or defined(m68k)}
  1328. begin
  1329. if (pd.typ<>procdef) and (target_info.system <> system_powerpc_amiga) then
  1330. internalerror(2003042614);
  1331. tprocdef(pd).forwarddef:=false;
  1332. {$ifdef m68k}
  1333. if target_info.system in [system_m68k_amiga] then
  1334. begin
  1335. include(pd.procoptions,po_syscall_legacy);
  1336. if consume_sym(sym,symtable) then
  1337. begin
  1338. if (sym.typ=staticvarsym) and
  1339. (
  1340. (tabstractvarsym(sym).vardef.typ=pointerdef) or
  1341. is_32bitint(tabstractvarsym(sym).vardef)
  1342. ) then
  1343. begin
  1344. tprocdef(pd).libsym:=sym;
  1345. if po_syscall_legacy in tprocdef(pd).procoptions then
  1346. begin
  1347. vs:=tparavarsym.create('$syscalllib',paranr_syscall_legacy,vs_value,tabstractvarsym(sym).vardef,[vo_is_syscall_lib,vo_is_hidden_para,vo_has_explicit_paraloc]);
  1348. paramanager.parseparaloc(vs,'A6');
  1349. pd.parast.insert(vs);
  1350. end
  1351. end
  1352. else
  1353. Message(parser_e_32bitint_or_pointer_variable_expected);
  1354. end;
  1355. (paramanager as tm68kparamanager).create_funcretloc_info(pd,calleeside);
  1356. (paramanager as tm68kparamanager).create_funcretloc_info(pd,callerside);
  1357. v:=get_intconst;
  1358. if (v<low(Tprocdef(pd).extnumber)) or (v>high(Tprocdef(pd).extnumber)) then
  1359. message(parser_e_range_check_error)
  1360. else
  1361. Tprocdef(pd).extnumber:=v.uvalue;
  1362. end;
  1363. {$endif m68k}
  1364. {$ifdef powerpc}
  1365. if target_info.system = system_powerpc_amiga then
  1366. begin
  1367. include(pd.procoptions,po_syscall_basesysv);
  1368. if consume_sym(sym,symtable) then
  1369. begin
  1370. if (sym.typ=staticvarsym) and
  1371. (
  1372. (tabstractvarsym(sym).vardef.typ=pointerdef) or
  1373. is_32bitint(tabstractvarsym(sym).vardef)
  1374. ) then
  1375. begin
  1376. tprocdef(pd).libsym:=sym;
  1377. vs:=tparavarsym.create('$syscalllib',paranr_syscall_basesysv,vs_value,tabstractvarsym(sym).vardef,[vo_is_syscall_lib,vo_is_hidden_para]);
  1378. pd.parast.insert(vs);
  1379. end
  1380. else
  1381. Message(parser_e_32bitint_or_pointer_variable_expected);
  1382. end;
  1383. (paramanager as tppcparamanager).create_funcretloc_info(pd,calleeside);
  1384. (paramanager as tppcparamanager).create_funcretloc_info(pd,callerside);
  1385. v:=get_intconst;
  1386. if (v<low(Tprocdef(pd).extnumber)) or (v>high(Tprocdef(pd).extnumber)) then
  1387. message(parser_e_range_check_error)
  1388. else
  1389. Tprocdef(pd).extnumber:=v.uvalue;
  1390. end else
  1391. if target_info.system = system_powerpc_morphos then
  1392. begin
  1393. if idtoken=_LEGACY then
  1394. begin
  1395. consume(_LEGACY);
  1396. include(pd.procoptions,po_syscall_legacy);
  1397. end
  1398. else if idtoken=_SYSV then
  1399. begin
  1400. consume(_SYSV);
  1401. include(pd.procoptions,po_syscall_sysv);
  1402. end
  1403. else if idtoken=_BASESYSV then
  1404. begin
  1405. consume(_BASESYSV);
  1406. include(pd.procoptions,po_syscall_basesysv);
  1407. end
  1408. else if idtoken=_SYSVBASE then
  1409. begin
  1410. consume(_SYSVBASE);
  1411. include(pd.procoptions,po_syscall_sysvbase);
  1412. end
  1413. else if idtoken=_R12BASE then
  1414. begin
  1415. consume(_R12BASE);
  1416. include(pd.procoptions,po_syscall_r12base);
  1417. end
  1418. else
  1419. if syscall_convention='LEGACY' then
  1420. include(pd.procoptions,po_syscall_legacy)
  1421. else if syscall_convention='SYSV' then
  1422. include(pd.procoptions,po_syscall_sysv)
  1423. else if syscall_convention='BASESYSV' then
  1424. include(pd.procoptions,po_syscall_basesysv)
  1425. else if syscall_convention='SYSVBASE' then
  1426. include(pd.procoptions,po_syscall_sysvbase)
  1427. else if syscall_convention='R12BASE' then
  1428. include(pd.procoptions,po_syscall_r12base)
  1429. else
  1430. internalerror(2005010404);
  1431. if consume_sym(sym,symtable) then
  1432. begin
  1433. if (sym.typ=staticvarsym) and
  1434. (
  1435. (tabstractvarsym(sym).vardef.typ=pointerdef) or
  1436. is_32bitint(tabstractvarsym(sym).vardef)
  1437. ) then
  1438. begin
  1439. tprocdef(pd).libsym:=sym;
  1440. if po_syscall_legacy in tprocdef(pd).procoptions then
  1441. begin
  1442. vs:=tparavarsym.create('$syscalllib',paranr_syscall_legacy,vs_value,tabstractvarsym(sym).vardef,[vo_is_syscall_lib,vo_is_hidden_para,vo_has_explicit_paraloc]);
  1443. paramanager.parseparaloc(vs,'A6');
  1444. pd.parast.insert(vs);
  1445. end
  1446. else if po_syscall_sysv in tprocdef(pd).procoptions then
  1447. begin
  1448. { Nothing to be done for sysv here for now, but this might change }
  1449. end
  1450. else if po_syscall_basesysv in tprocdef(pd).procoptions then
  1451. begin
  1452. vs:=tparavarsym.create('$syscalllib',paranr_syscall_basesysv,vs_value,tabstractvarsym(sym).vardef,[vo_is_syscall_lib,vo_is_hidden_para]);
  1453. pd.parast.insert(vs);
  1454. end
  1455. else if po_syscall_sysvbase in tprocdef(pd).procoptions then
  1456. begin
  1457. vs:=tparavarsym.create('$syscalllib',paranr_syscall_sysvbase,vs_value,tabstractvarsym(sym).vardef,[vo_is_syscall_lib,vo_is_hidden_para]);
  1458. pd.parast.insert(vs);
  1459. end
  1460. else if po_syscall_r12base in tprocdef(pd).procoptions then
  1461. begin
  1462. vs:=tparavarsym.create('$syscalllib',paranr_syscall_r12base,vs_value,tabstractvarsym(sym).vardef,[vo_is_syscall_lib,vo_is_hidden_para,vo_has_explicit_paraloc]);
  1463. paramanager.parseparaloc(vs,'R12');
  1464. pd.parast.insert(vs);
  1465. end
  1466. else
  1467. internalerror(2005010501);
  1468. end
  1469. else
  1470. Message(parser_e_32bitint_or_pointer_variable_expected);
  1471. end;
  1472. (paramanager as tppcparamanager).create_funcretloc_info(pd,calleeside);
  1473. (paramanager as tppcparamanager).create_funcretloc_info(pd,callerside);
  1474. v:=get_intconst;
  1475. if (v<low(Tprocdef(pd).extnumber)) or (v>high(Tprocdef(pd).extnumber)) then
  1476. message(parser_e_range_check_error)
  1477. else
  1478. Tprocdef(pd).extnumber:=v.uvalue;
  1479. end;
  1480. {$endif powerpc}
  1481. end;
  1482. procedure pd_external(pd:tabstractprocdef);
  1483. {
  1484. If import_dll=nil the procedure is assumed to be in another
  1485. object file. In that object file it should have the name to
  1486. which import_name is pointing to. Otherwise, the procedure is
  1487. assumed to be in the DLL to which import_dll is pointing to. In
  1488. that case either import_nr<>0 or import_name<>nil is true, so
  1489. the procedure is either imported by number or by name. (DM)
  1490. }
  1491. var
  1492. hs : string;
  1493. v:Tconstexprint;
  1494. begin
  1495. if pd.typ<>procdef then
  1496. internalerror(2003042615);
  1497. with tprocdef(pd) do
  1498. begin
  1499. forwarddef:=false;
  1500. { forbid local external procedures }
  1501. if parast.symtablelevel>normal_function_level then
  1502. Message(parser_e_no_local_proc_external);
  1503. { If the procedure should be imported from a DLL, a constant string follows.
  1504. This isn't really correct, an contant string expression follows
  1505. so we check if an semicolon follows, else a string constant have to
  1506. follow (FK) }
  1507. if not(token=_SEMICOLON) and not(idtoken=_NAME) then
  1508. begin
  1509. { Always add library prefix and suffix to create an uniform name }
  1510. hs:=get_stringconst;
  1511. if ExtractFileExt(hs)='' then
  1512. hs:=ChangeFileExt(hs,target_info.sharedlibext);
  1513. if Copy(hs,1,length(target_info.sharedlibprefix))<>target_info.sharedlibprefix then
  1514. hs:=target_info.sharedlibprefix+hs;
  1515. import_dll:=stringdup(hs);
  1516. include(procoptions,po_has_importdll);
  1517. if (idtoken=_NAME) then
  1518. begin
  1519. consume(_NAME);
  1520. import_name:=stringdup(get_stringconst);
  1521. include(procoptions,po_has_importname);
  1522. if import_name^='' then
  1523. message(parser_e_empty_import_name);
  1524. end;
  1525. if (idtoken=_INDEX) then
  1526. begin
  1527. {After the word index follows the index number in the DLL.}
  1528. consume(_INDEX);
  1529. v:=get_intconst;
  1530. if (v<int64(low(import_nr))) or (v>int64(high(import_nr))) then
  1531. message(parser_e_range_check_error)
  1532. else
  1533. import_nr:=longint(v.svalue);
  1534. end;
  1535. { default is to used the realname of the procedure }
  1536. if (import_nr=0) and not assigned(import_name) then
  1537. begin
  1538. import_name:=stringdup(procsym.realname);
  1539. include(procoptions,po_has_importname);
  1540. end;
  1541. end
  1542. else
  1543. begin
  1544. if (idtoken=_NAME) then
  1545. begin
  1546. consume(_NAME);
  1547. import_name:=stringdup(get_stringconst);
  1548. include(procoptions,po_has_importname);
  1549. if import_name^='' then
  1550. message(parser_e_empty_import_name);
  1551. end;
  1552. end;
  1553. end;
  1554. end;
  1555. procedure pd_weakexternal(pd:tabstractprocdef);
  1556. begin
  1557. if not(target_info.system in system_weak_linking) then
  1558. message(parser_e_weak_external_not_supported)
  1559. else
  1560. pd_external(pd);
  1561. end;
  1562. type
  1563. pd_handler=procedure(pd:tabstractprocdef);
  1564. proc_dir_rec=record
  1565. idtok : ttoken;
  1566. pd_flags : tpdflags;
  1567. handler : pd_handler;
  1568. pocall : tproccalloption;
  1569. pooption : tprocoptions;
  1570. mutexclpocall : tproccalloptions;
  1571. mutexclpotype : tproctypeoptions;
  1572. mutexclpo : tprocoptions;
  1573. end;
  1574. const
  1575. {Should contain the number of procedure directives we support.}
  1576. num_proc_directives=42;
  1577. proc_direcdata:array[1..num_proc_directives] of proc_dir_rec=
  1578. (
  1579. (
  1580. idtok:_ABSTRACT;
  1581. pd_flags : [pd_interface,pd_object,pd_notobjintf];
  1582. handler : @pd_abstract;
  1583. pocall : pocall_none;
  1584. pooption : [po_abstractmethod];
  1585. mutexclpocall : [pocall_internproc];
  1586. mutexclpotype : [];
  1587. mutexclpo : [po_exports,po_interrupt,po_external,po_inline]
  1588. ),(
  1589. idtok:_ALIAS;
  1590. pd_flags : [pd_implemen,pd_body,pd_notobjintf];
  1591. handler : @pd_alias;
  1592. pocall : pocall_none;
  1593. pooption : [];
  1594. mutexclpocall : [];
  1595. mutexclpotype : [];
  1596. mutexclpo : [po_external,po_inline]
  1597. ),(
  1598. idtok:_ASMNAME;
  1599. pd_flags : [pd_interface,pd_implemen,pd_notobjintf];
  1600. handler : @pd_asmname;
  1601. pocall : pocall_cdecl;
  1602. pooption : [po_external];
  1603. mutexclpocall : [pocall_internproc];
  1604. mutexclpotype : [];
  1605. mutexclpo : [po_external,po_inline]
  1606. ),(
  1607. idtok:_ASSEMBLER;
  1608. pd_flags : [pd_interface,pd_implemen,pd_body,pd_notobjintf];
  1609. handler : nil;
  1610. pocall : pocall_none;
  1611. pooption : [po_assembler];
  1612. mutexclpocall : [];
  1613. mutexclpotype : [];
  1614. mutexclpo : [po_external]
  1615. ),(
  1616. idtok:_C; {same as cdecl for mode mac}
  1617. pd_flags : [pd_interface,pd_implemen,pd_body,pd_procvar];
  1618. handler : nil;
  1619. pocall : pocall_cdecl;
  1620. pooption : [];
  1621. mutexclpocall : [];
  1622. mutexclpotype : [potype_constructor,potype_destructor];
  1623. mutexclpo : [po_assembler,po_external]
  1624. ),(
  1625. idtok:_CDECL;
  1626. pd_flags : [pd_interface,pd_implemen,pd_body,pd_procvar];
  1627. handler : nil;
  1628. pocall : pocall_cdecl;
  1629. pooption : [];
  1630. mutexclpocall : [];
  1631. mutexclpotype : [potype_constructor,potype_destructor];
  1632. mutexclpo : [po_assembler,po_external]
  1633. ),(
  1634. idtok:_DISPID;
  1635. pd_flags : [pd_dispinterface];
  1636. handler : @pd_dispid;
  1637. pocall : pocall_none;
  1638. pooption : [po_dispid];
  1639. mutexclpocall : [pocall_internproc];
  1640. mutexclpotype : [potype_constructor,potype_destructor,potype_operator];
  1641. mutexclpo : [po_interrupt,po_external,po_inline]
  1642. ),(
  1643. idtok:_DYNAMIC;
  1644. pd_flags : [pd_interface,pd_object,pd_notobjintf];
  1645. handler : @pd_virtual;
  1646. pocall : pocall_none;
  1647. pooption : [po_virtualmethod];
  1648. mutexclpocall : [pocall_internproc];
  1649. mutexclpotype : [];
  1650. mutexclpo : [po_exports,po_interrupt,po_external,po_overridingmethod,po_inline]
  1651. ),(
  1652. idtok:_EXPORT;
  1653. pd_flags : [pd_body,pd_interface,pd_implemen,pd_notobjintf];
  1654. handler : @pd_export;
  1655. pocall : pocall_none;
  1656. pooption : [po_exports,po_global];
  1657. mutexclpocall : [pocall_internproc];
  1658. mutexclpotype : [potype_constructor,potype_destructor];
  1659. mutexclpo : [po_external,po_interrupt,po_inline]
  1660. ),(
  1661. idtok:_EXTERNAL;
  1662. pd_flags : [pd_implemen,pd_interface,pd_notobject,pd_notobjintf,pd_cppobject];
  1663. handler : @pd_external;
  1664. pocall : pocall_none;
  1665. pooption : [po_external];
  1666. mutexclpocall : [pocall_internproc,pocall_syscall];
  1667. { allowed for external cpp classes }
  1668. mutexclpotype : [{potype_constructor,potype_destructor}];
  1669. mutexclpo : [po_public,po_exports,po_interrupt,po_assembler,po_inline]
  1670. ),(
  1671. idtok:_FAR;
  1672. pd_flags : [pd_implemen,pd_body,pd_interface,pd_procvar,pd_notobject,pd_notobjintf];
  1673. handler : @pd_far;
  1674. pocall : pocall_none;
  1675. pooption : [];
  1676. mutexclpocall : [pocall_internproc];
  1677. mutexclpotype : [];
  1678. mutexclpo : [po_inline]
  1679. ),(
  1680. idtok:_FAR16;
  1681. pd_flags : [pd_interface,pd_implemen,pd_body,pd_procvar,pd_notobject];
  1682. handler : nil;
  1683. pocall : pocall_far16;
  1684. pooption : [];
  1685. mutexclpocall : [];
  1686. mutexclpotype : [];
  1687. mutexclpo : [po_external]
  1688. ),(
  1689. idtok:_FINAL;
  1690. pd_flags : [pd_interface,pd_object,pd_notobjintf];
  1691. handler : @pd_final;
  1692. pocall : pocall_none;
  1693. pooption : [po_finalmethod];
  1694. mutexclpocall : [pocall_internproc];
  1695. mutexclpotype : [];
  1696. mutexclpo : [po_exports,po_interrupt,po_external,po_inline]
  1697. ),(
  1698. idtok:_FORWARD;
  1699. pd_flags : [pd_implemen,pd_notobject,pd_notobjintf];
  1700. handler : @pd_forward;
  1701. pocall : pocall_none;
  1702. pooption : [];
  1703. mutexclpocall : [pocall_internproc];
  1704. mutexclpotype : [];
  1705. mutexclpo : [po_external,po_inline]
  1706. ),(
  1707. idtok:_OLDFPCCALL;
  1708. pd_flags : [pd_interface,pd_implemen,pd_body,pd_procvar];
  1709. handler : nil;
  1710. pocall : pocall_oldfpccall;
  1711. pooption : [];
  1712. mutexclpocall : [];
  1713. mutexclpotype : [];
  1714. mutexclpo : []
  1715. ),(
  1716. idtok:_INLINE;
  1717. pd_flags : [pd_interface,pd_implemen,pd_body,pd_notobjintf];
  1718. handler : nil;
  1719. pocall : pocall_none;
  1720. pooption : [po_inline];
  1721. mutexclpocall : [];
  1722. mutexclpotype : [potype_constructor,potype_destructor];
  1723. mutexclpo : [po_exports,po_external,po_interrupt,po_virtualmethod]
  1724. ),(
  1725. idtok:_INTERNCONST;
  1726. pd_flags : [pd_interface,pd_body,pd_notobject,pd_notobjintf];
  1727. handler : @pd_internconst;
  1728. pocall : pocall_none;
  1729. pooption : [po_internconst];
  1730. mutexclpocall : [];
  1731. mutexclpotype : [potype_operator];
  1732. mutexclpo : []
  1733. ),(
  1734. idtok:_INTERNPROC;
  1735. pd_flags : [pd_interface,pd_notobject,pd_notobjintf];
  1736. handler : @pd_internproc;
  1737. pocall : pocall_internproc;
  1738. pooption : [];
  1739. mutexclpocall : [];
  1740. mutexclpotype : [potype_constructor,potype_destructor,potype_operator];
  1741. mutexclpo : [po_exports,po_external,po_interrupt,po_assembler,po_iocheck,po_virtualmethod]
  1742. ),(
  1743. idtok:_INTERRUPT;
  1744. pd_flags : [pd_implemen,pd_body,pd_notobject,pd_notobjintf];
  1745. handler : @pd_interrupt;
  1746. pocall : pocall_oldfpccall;
  1747. pooption : [po_interrupt];
  1748. mutexclpocall : [pocall_internproc,pocall_cdecl,pocall_cppdecl,pocall_stdcall,
  1749. pocall_pascal,pocall_far16,pocall_oldfpccall];
  1750. mutexclpotype : [potype_constructor,potype_destructor,potype_operator];
  1751. mutexclpo : [po_external,po_inline]
  1752. ),(
  1753. idtok:_IOCHECK;
  1754. pd_flags : [pd_implemen,pd_body,pd_notobjintf];
  1755. handler : nil;
  1756. pocall : pocall_none;
  1757. pooption : [po_iocheck];
  1758. mutexclpocall : [pocall_internproc];
  1759. mutexclpotype : [];
  1760. mutexclpo : [po_external]
  1761. ),(
  1762. idtok:_LOCAL;
  1763. pd_flags : [pd_implemen,pd_body];
  1764. handler : nil;
  1765. pocall : pocall_none;
  1766. pooption : [po_kylixlocal];
  1767. mutexclpocall : [pocall_internproc,pocall_far16];
  1768. mutexclpotype : [];
  1769. mutexclpo : [po_external,po_exports]
  1770. ),(
  1771. idtok:_MESSAGE;
  1772. pd_flags : [pd_interface,pd_object,pd_notobjintf];
  1773. handler : @pd_message;
  1774. pocall : pocall_none;
  1775. pooption : []; { can be po_msgstr or po_msgint }
  1776. mutexclpocall : [pocall_internproc];
  1777. mutexclpotype : [potype_constructor,potype_destructor,potype_operator];
  1778. mutexclpo : [po_interrupt,po_external,po_inline]
  1779. ),(
  1780. idtok:_MWPASCAL;
  1781. pd_flags : [pd_interface,pd_implemen,pd_body,pd_procvar];
  1782. handler : nil;
  1783. pocall : pocall_mwpascal;
  1784. pooption : [];
  1785. mutexclpocall : [];
  1786. mutexclpotype : [];
  1787. mutexclpo : []
  1788. ),(
  1789. idtok:_NEAR;
  1790. pd_flags : [pd_implemen,pd_body,pd_procvar,pd_notobjintf];
  1791. handler : @pd_near;
  1792. pocall : pocall_none;
  1793. pooption : [];
  1794. mutexclpocall : [pocall_internproc];
  1795. mutexclpotype : [];
  1796. mutexclpo : []
  1797. ),(
  1798. idtok:_NOSTACKFRAME;
  1799. pd_flags : [pd_implemen,pd_body,pd_procvar,pd_notobjintf];
  1800. handler : nil;
  1801. pocall : pocall_none;
  1802. pooption : [po_nostackframe];
  1803. mutexclpocall : [pocall_internproc];
  1804. mutexclpotype : [];
  1805. mutexclpo : []
  1806. ),(
  1807. idtok:_OVERLOAD;
  1808. pd_flags : [pd_implemen,pd_interface,pd_body];
  1809. handler : @pd_overload;
  1810. pocall : pocall_none;
  1811. pooption : [po_overload];
  1812. mutexclpocall : [pocall_internproc];
  1813. mutexclpotype : [];
  1814. mutexclpo : []
  1815. ),(
  1816. idtok:_OVERRIDE;
  1817. pd_flags : [pd_interface,pd_object,pd_notobjintf];
  1818. handler : @pd_override;
  1819. pocall : pocall_none;
  1820. pooption : [po_overridingmethod,po_virtualmethod];
  1821. mutexclpocall : [pocall_internproc];
  1822. mutexclpotype : [];
  1823. mutexclpo : [po_exports,po_external,po_interrupt,po_virtualmethod,po_inline]
  1824. ),(
  1825. idtok:_PASCAL;
  1826. pd_flags : [pd_interface,pd_implemen,pd_body,pd_procvar];
  1827. handler : nil;
  1828. pocall : pocall_pascal;
  1829. pooption : [];
  1830. mutexclpocall : [];
  1831. mutexclpotype : [potype_constructor,potype_destructor];
  1832. mutexclpo : [po_external]
  1833. ),(
  1834. idtok:_PUBLIC;
  1835. pd_flags : [pd_interface,pd_implemen,pd_body,pd_notobject,pd_notobjintf];
  1836. handler : @pd_public;
  1837. pocall : pocall_none;
  1838. pooption : [po_public,po_global];
  1839. mutexclpocall : [pocall_internproc];
  1840. mutexclpotype : [];
  1841. mutexclpo : [po_external,po_inline]
  1842. ),(
  1843. idtok:_REGISTER;
  1844. pd_flags : [pd_interface,pd_implemen,pd_body,pd_procvar];
  1845. handler : nil;
  1846. pocall : pocall_register;
  1847. pooption : [];
  1848. mutexclpocall : [];
  1849. mutexclpotype : [potype_constructor,potype_destructor];
  1850. mutexclpo : [po_external]
  1851. ),(
  1852. idtok:_REINTRODUCE;
  1853. pd_flags : [pd_interface,pd_object,pd_notobjintf];
  1854. handler : @pd_reintroduce;
  1855. pocall : pocall_none;
  1856. pooption : [po_reintroduce];
  1857. mutexclpocall : [pocall_internproc];
  1858. mutexclpotype : [];
  1859. mutexclpo : [po_external,po_interrupt,po_exports,po_overridingmethod,po_inline]
  1860. ),(
  1861. idtok:_SAFECALL;
  1862. pd_flags : [pd_interface,pd_implemen,pd_body,pd_procvar];
  1863. handler : nil;
  1864. pocall : pocall_safecall;
  1865. pooption : [];
  1866. mutexclpocall : [];
  1867. mutexclpotype : [potype_constructor,potype_destructor];
  1868. mutexclpo : [po_external]
  1869. ),(
  1870. idtok:_SOFTFLOAT;
  1871. pd_flags : [pd_interface,pd_implemen,pd_body,pd_procvar];
  1872. handler : nil;
  1873. pocall : pocall_softfloat;
  1874. pooption : [];
  1875. mutexclpocall : [];
  1876. mutexclpotype : [potype_constructor,potype_destructor];
  1877. { it's available with po_external because the libgcc floating point routines on the arm
  1878. uses this calling convention }
  1879. mutexclpo : []
  1880. ),(
  1881. idtok:_STATIC;
  1882. pd_flags : [pd_interface,pd_implemen,pd_body,pd_object,pd_notobjintf];
  1883. handler : @pd_static;
  1884. pocall : pocall_none;
  1885. pooption : [po_staticmethod];
  1886. mutexclpocall : [pocall_internproc];
  1887. mutexclpotype : [potype_constructor,potype_destructor];
  1888. mutexclpo : [po_external,po_interrupt,po_exports,po_inline]
  1889. ),(
  1890. idtok:_STDCALL;
  1891. pd_flags : [pd_interface,pd_implemen,pd_body,pd_procvar];
  1892. handler : nil;
  1893. pocall : pocall_stdcall;
  1894. pooption : [];
  1895. mutexclpocall : [];
  1896. mutexclpotype : [potype_constructor,potype_destructor];
  1897. mutexclpo : [po_external]
  1898. ),(
  1899. idtok:_SYSCALL;
  1900. { Different kind of syscalls are valid for AOS68k, AOSPPC and MOS. }
  1901. { FIX ME!!! MorphOS/AOS68k pd_flags should be:
  1902. pd_interface, pd_implemen, pd_notobject, pd_notobjintf (KB) }
  1903. pd_flags : [pd_interface,pd_implemen,pd_procvar];
  1904. handler : @pd_syscall;
  1905. pocall : pocall_syscall;
  1906. pooption : [];
  1907. mutexclpocall : [];
  1908. mutexclpotype : [potype_constructor,potype_destructor];
  1909. mutexclpo : [po_external,po_assembler,po_interrupt,po_exports]
  1910. ),(
  1911. idtok:_VIRTUAL;
  1912. pd_flags : [pd_interface,pd_object,pd_notobjintf];
  1913. handler : @pd_virtual;
  1914. pocall : pocall_none;
  1915. pooption : [po_virtualmethod];
  1916. mutexclpocall : [pocall_internproc];
  1917. mutexclpotype : [];
  1918. mutexclpo : [po_external,po_interrupt,po_exports,po_overridingmethod,po_inline]
  1919. ),(
  1920. idtok:_CPPDECL;
  1921. pd_flags : [pd_interface,pd_implemen,pd_body,pd_procvar];
  1922. handler : nil;
  1923. pocall : pocall_cppdecl;
  1924. pooption : [];
  1925. mutexclpocall : [];
  1926. mutexclpotype : [potype_constructor,potype_destructor];
  1927. mutexclpo : [po_assembler,po_external,po_virtualmethod]
  1928. ),(
  1929. idtok:_VARARGS;
  1930. pd_flags : [pd_interface,pd_implemen,pd_procvar];
  1931. handler : nil;
  1932. pocall : pocall_none;
  1933. pooption : [po_varargs];
  1934. mutexclpocall : [pocall_internproc,pocall_stdcall,pocall_register,
  1935. pocall_far16,pocall_oldfpccall,pocall_mwpascal];
  1936. mutexclpotype : [];
  1937. mutexclpo : [po_assembler,po_interrupt,po_inline]
  1938. ),(
  1939. idtok:_COMPILERPROC;
  1940. pd_flags : [pd_interface,pd_implemen,pd_body,pd_notobjintf];
  1941. handler : nil;
  1942. pocall : pocall_none;
  1943. pooption : [po_compilerproc];
  1944. mutexclpocall : [];
  1945. mutexclpotype : [potype_constructor,potype_destructor];
  1946. mutexclpo : [po_interrupt]
  1947. ),(
  1948. idtok:_WEAKEXTERNAL;
  1949. pd_flags : [pd_implemen,pd_interface,pd_notobject,pd_notobjintf,pd_cppobject];
  1950. handler : @pd_weakexternal;
  1951. pocall : pocall_none;
  1952. { mark it both external and weak external, so we don't have to
  1953. adapt all code for external symbols to also check for weak external
  1954. }
  1955. pooption : [po_external,po_weakexternal];
  1956. mutexclpocall : [pocall_internproc,pocall_syscall];
  1957. { allowed for external cpp classes }
  1958. mutexclpotype : [{potype_constructor,potype_destructor}];
  1959. mutexclpo : [po_public,po_exports,po_interrupt,po_assembler,po_inline]
  1960. ),(
  1961. idtok:_ENUMERATOR;
  1962. pd_flags : [pd_interface,pd_object];
  1963. handler : @pd_enumerator;
  1964. pocall : pocall_none;
  1965. pooption : [po_enumerator_movenext];
  1966. mutexclpocall : [pocall_internproc];
  1967. mutexclpotype : [];
  1968. mutexclpo : [po_exports,po_interrupt,po_external,po_inline]
  1969. )
  1970. );
  1971. function check_proc_directive(isprocvar:boolean):boolean;
  1972. var
  1973. i : longint;
  1974. begin
  1975. result:=false;
  1976. for i:=1 to num_proc_directives do
  1977. if proc_direcdata[i].idtok=idtoken then
  1978. begin
  1979. if ((not isprocvar) or
  1980. (pd_procvar in proc_direcdata[i].pd_flags)) and
  1981. { don't eat a public directive in classes }
  1982. not((idtoken=_PUBLIC) and (symtablestack.top.symtabletype=ObjectSymtable)) then
  1983. result:=true;
  1984. exit;
  1985. end;
  1986. end;
  1987. function parse_proc_direc(pd:tabstractprocdef;var pdflags:tpdflags):boolean;
  1988. {
  1989. Parse the procedure directive, returns true if a correct directive is found
  1990. }
  1991. var
  1992. p : longint;
  1993. found : boolean;
  1994. name : TIDString;
  1995. begin
  1996. parse_proc_direc:=false;
  1997. name:=tokeninfo^[idtoken].str;
  1998. found:=false;
  1999. { Hint directive? Then exit immediatly }
  2000. if (m_hintdirective in current_settings.modeswitches) then
  2001. begin
  2002. case idtoken of
  2003. _LIBRARY,
  2004. _PLATFORM,
  2005. _UNIMPLEMENTED,
  2006. _EXPERIMENTAL,
  2007. _DEPRECATED :
  2008. exit;
  2009. end;
  2010. end;
  2011. { C directive is MAC only, because it breaks too much existing code
  2012. on other platforms (PFV) }
  2013. if (idtoken=_C) and
  2014. not(m_mac in current_settings.modeswitches) then
  2015. exit;
  2016. { retrieve data for directive if found }
  2017. for p:=1 to num_proc_directives do
  2018. if proc_direcdata[p].idtok=idtoken then
  2019. begin
  2020. found:=true;
  2021. break;
  2022. end;
  2023. { Check if the procedure directive is known }
  2024. if not found then
  2025. begin
  2026. { parsing a procvar type the name can be any
  2027. next variable !! }
  2028. if ((pdflags * [pd_procvar,pd_object])=[]) and
  2029. not(idtoken=_PROPERTY) then
  2030. Message1(parser_w_unknown_proc_directive_ignored,name);
  2031. exit;
  2032. end;
  2033. { static needs a special treatment }
  2034. if (idtoken=_STATIC) and not (cs_static_keyword in current_settings.moduleswitches) then
  2035. exit;
  2036. { check if method and directive not for object, like public.
  2037. This needs to be checked also for procvars }
  2038. if (pd_notobject in proc_direcdata[p].pd_flags) and
  2039. (symtablestack.top.symtabletype=ObjectSymtable) and
  2040. { directive allowed for cpp classes? }
  2041. not(is_cppclass(tdef(symtablestack.top.defowner)) and (pd_cppobject in proc_direcdata[p].pd_flags)) then
  2042. exit;
  2043. { Conflicts between directives ? }
  2044. if (pd.proctypeoption in proc_direcdata[p].mutexclpotype) or
  2045. (pd.proccalloption in proc_direcdata[p].mutexclpocall) or
  2046. ((pd.procoptions*proc_direcdata[p].mutexclpo)<>[]) then
  2047. begin
  2048. Message1(parser_e_proc_dir_conflict,name);
  2049. exit;
  2050. end;
  2051. { set calling convention }
  2052. if proc_direcdata[p].pocall<>pocall_none then
  2053. begin
  2054. if (po_hascallingconvention in pd.procoptions) then
  2055. begin
  2056. Message2(parser_w_proc_overriding_calling,
  2057. proccalloptionStr[pd.proccalloption],
  2058. proccalloptionStr[proc_direcdata[p].pocall]);
  2059. end;
  2060. { check if the target processor supports this calling convention }
  2061. if not(proc_direcdata[p].pocall in supported_calling_conventions) then
  2062. begin
  2063. Message1(parser_e_illegal_calling_convention,proccalloptionStr[proc_direcdata[p].pocall]);
  2064. { recover }
  2065. proc_direcdata[p].pocall:=pocall_stdcall;
  2066. end;
  2067. pd.proccalloption:=proc_direcdata[p].pocall;
  2068. include(pd.procoptions,po_hascallingconvention);
  2069. end;
  2070. if pd.typ=procdef then
  2071. begin
  2072. { Check if the directive is only for objects }
  2073. if (pd_object in proc_direcdata[p].pd_flags) and
  2074. not assigned(tprocdef(pd)._class) then
  2075. exit;
  2076. { check if method and directive not for interface }
  2077. if (pd_notobjintf in proc_direcdata[p].pd_flags) and
  2078. is_interface(tprocdef(pd)._class) then
  2079. exit;
  2080. { check if method and directive not for interface }
  2081. if is_dispinterface(tprocdef(pd)._class) and
  2082. not(pd_dispinterface in proc_direcdata[p].pd_flags) then
  2083. exit;
  2084. end;
  2085. { consume directive, and turn flag on }
  2086. consume(token);
  2087. parse_proc_direc:=true;
  2088. { Check the pd_flags if the directive should be allowed }
  2089. if (pd_interface in pdflags) and
  2090. not(pd_interface in proc_direcdata[p].pd_flags) then
  2091. begin
  2092. Message1(parser_e_proc_dir_not_allowed_in_interface,name);
  2093. exit;
  2094. end;
  2095. if (pd_implemen in pdflags) and
  2096. not(pd_implemen in proc_direcdata[p].pd_flags) then
  2097. begin
  2098. Message1(parser_e_proc_dir_not_allowed_in_implementation,name);
  2099. exit;
  2100. end;
  2101. if (pd_procvar in pdflags) and
  2102. not(pd_procvar in proc_direcdata[p].pd_flags) then
  2103. begin
  2104. Message1(parser_e_proc_dir_not_allowed_in_procvar,name);
  2105. exit;
  2106. end;
  2107. { Return the new pd_flags }
  2108. if not(pd_body in proc_direcdata[p].pd_flags) then
  2109. exclude(pdflags,pd_body);
  2110. { Add the correct flag }
  2111. pd.procoptions:=pd.procoptions+proc_direcdata[p].pooption;
  2112. { Call the handler }
  2113. if pointer(proc_direcdata[p].handler)<>nil then
  2114. proc_direcdata[p].handler(pd);
  2115. end;
  2116. function proc_get_importname(pd:tprocdef):string;
  2117. function maybe_cprefix(const s:string):string;
  2118. begin
  2119. if not(pd.proccalloption in [pocall_cdecl,pocall_cppdecl]) then
  2120. result:=s
  2121. else
  2122. result:=target_info.Cprefix+s;
  2123. end;
  2124. begin
  2125. result:='';
  2126. if not(po_external in pd.procoptions) then
  2127. internalerror(200412151);
  2128. { external name or number is specified }
  2129. if assigned(pd.import_name) or (pd.import_nr<>0) then
  2130. begin
  2131. if assigned(pd.import_dll) then
  2132. begin
  2133. { If we are not using direct dll linking under win32 then imports
  2134. need to use the normal name since two functions can refer to the
  2135. same DLL function. This is also needed for compatability
  2136. with Delphi and TP7 }
  2137. (*
  2138. case target_info.system of
  2139. system_i386_emx,
  2140. system_i386_os2 :
  2141. begin
  2142. { keep normal mangledname }
  2143. if not (Assigned (PD.Import_Name)) then
  2144. Result := PD.MangledName;
  2145. end;
  2146. else
  2147. *)
  2148. if assigned(pd.import_name) then
  2149. begin
  2150. if target_info.system in (system_all_windows +
  2151. [system_i386_emx, system_i386_os2]) then
  2152. { cprefix is not used in DLL imports under Windows or OS/2 }
  2153. result:=pd.import_name^
  2154. else
  2155. result:=maybe_cprefix(pd.import_name^);
  2156. end
  2157. else
  2158. result:=ExtractFileName(pd.import_dll^)+'_index_'+tostr(pd.import_nr);
  2159. end
  2160. else
  2161. result:=maybe_cprefix(pd.import_name^);
  2162. end
  2163. else
  2164. begin
  2165. { Default names when importing variables }
  2166. case pd.proccalloption of
  2167. pocall_cdecl :
  2168. begin
  2169. if assigned(pd._class) then
  2170. result:=target_info.Cprefix+pd._class.objrealname^+'_'+pd.procsym.realname
  2171. else
  2172. result:=target_info.Cprefix+pd.procsym.realname;
  2173. end;
  2174. pocall_cppdecl :
  2175. begin
  2176. result:=target_info.Cprefix+pd.cplusplusmangledname;
  2177. end;
  2178. else
  2179. begin
  2180. {In MacPas a single "external" has the same effect as "external name 'xxx'" }
  2181. if (m_mac in current_settings.modeswitches) then
  2182. result:=tprocdef(pd).procsym.realname;
  2183. end;
  2184. end;
  2185. end;
  2186. end;
  2187. procedure proc_set_mangledname(pd:tprocdef);
  2188. var
  2189. s : string;
  2190. begin
  2191. { When the mangledname is already set we aren't allowed to change
  2192. it because it can already be used somewhere (PFV) }
  2193. if not(po_has_mangledname in pd.procoptions) then
  2194. begin
  2195. if (po_external in pd.procoptions) then
  2196. begin
  2197. { External Procedures are only allowed to change the mangledname
  2198. in their first declaration }
  2199. if (pd.forwarddef or (not pd.hasforward)) then
  2200. begin
  2201. s:=proc_get_importname(pd);
  2202. if s<>'' then
  2203. begin
  2204. { Replace ? and @ in import name, since GNU AS does not allow these characters in symbol names. }
  2205. { This allows to import VC++ mangled names from DLLs. }
  2206. { Do not perform replacement, if external symbol is not imported from DLL. }
  2207. if (target_info.system in system_all_windows) and (pd.import_dll<>nil) then
  2208. begin
  2209. Replace(s,'?','__q$$');
  2210. {$ifdef arm}
  2211. { @ symbol is not allowed in ARM assembler only }
  2212. Replace(s,'@','__a$$');
  2213. {$endif arm}
  2214. end;
  2215. pd.setmangledname(s);
  2216. end;
  2217. end;
  2218. end
  2219. else
  2220. { Normal procedures }
  2221. begin
  2222. if (po_compilerproc in pd.procoptions) then
  2223. begin
  2224. pd.setmangledname(lower(pd.procsym.name));
  2225. end;
  2226. end;
  2227. end;
  2228. { Public/exported alias names }
  2229. if (([po_public,po_exports]*pd.procoptions)<>[]) and
  2230. not(po_has_public_name in pd.procoptions) then
  2231. begin
  2232. case pd.proccalloption of
  2233. pocall_cdecl :
  2234. begin
  2235. if assigned(pd._class) then
  2236. pd.aliasnames.insert(target_info.Cprefix+pd._class.objrealname^+'_'+pd.procsym.realname)
  2237. else
  2238. begin
  2239. { Export names are not mangled on Windows and OS/2, see also pexports.pas }
  2240. if (target_info.system in (system_all_windows+[system_i386_emx, system_i386_os2])) and
  2241. (po_exports in pd.procoptions) then
  2242. pd.aliasnames.insert(pd.procsym.realname)
  2243. else
  2244. pd.aliasnames.insert(target_info.Cprefix+pd.procsym.realname);
  2245. end;
  2246. end;
  2247. pocall_cppdecl :
  2248. begin
  2249. pd.aliasnames.insert(target_info.Cprefix+pd.cplusplusmangledname);
  2250. end;
  2251. end;
  2252. { prevent adding the alias a second time }
  2253. include(pd.procoptions,po_has_public_name);
  2254. end;
  2255. end;
  2256. procedure handle_calling_convention(pd:tabstractprocdef);
  2257. begin
  2258. { set the default calling convention if none provided }
  2259. if not(po_hascallingconvention in pd.procoptions) then
  2260. pd.proccalloption:=current_settings.defproccall
  2261. else
  2262. begin
  2263. if pd.proccalloption=pocall_none then
  2264. internalerror(200309081);
  2265. end;
  2266. { handle proccall specific settings }
  2267. case pd.proccalloption of
  2268. pocall_cdecl,
  2269. pocall_cppdecl :
  2270. begin
  2271. { check C cdecl para types }
  2272. check_c_para(pd);
  2273. end;
  2274. pocall_far16 :
  2275. begin
  2276. { Temporary stub, must be rewritten to support OS/2 far16 }
  2277. Message1(parser_w_proc_directive_ignored,'FAR16');
  2278. end;
  2279. end;
  2280. { Inlining is enabled and supported? }
  2281. if (po_inline in pd.procoptions) and
  2282. not(cs_do_inline in current_settings.localswitches) then
  2283. begin
  2284. { Give an error if inline is not supported by the compiler mode,
  2285. otherwise only give a warning that this procedure will not be inlined }
  2286. if not(m_default_inline in current_settings.modeswitches) then
  2287. Message(parser_e_proc_inline_not_supported)
  2288. else
  2289. Message(parser_w_inlining_disabled);
  2290. exclude(pd.procoptions,po_inline);
  2291. end;
  2292. { For varargs directive also cdecl and external must be defined }
  2293. if (po_varargs in pd.procoptions) then
  2294. begin
  2295. { check first for external in the interface, if available there
  2296. then the cdecl must also be there since there is no implementation
  2297. available to contain it }
  2298. if parse_only then
  2299. begin
  2300. { if external is available, then cdecl must also be available,
  2301. procvars don't need external }
  2302. if not((po_external in pd.procoptions) or
  2303. (pd.typ=procvardef)) and
  2304. not(pd.proccalloption in [pocall_cdecl,pocall_cppdecl,pocall_mwpascal]) then
  2305. Message(parser_e_varargs_need_cdecl_and_external);
  2306. end
  2307. else
  2308. begin
  2309. { both must be defined now }
  2310. if not((po_external in pd.procoptions) or
  2311. (pd.typ=procvardef)) or
  2312. not(pd.proccalloption in [pocall_cdecl,pocall_cppdecl,pocall_mwpascal]) then
  2313. Message(parser_e_varargs_need_cdecl_and_external);
  2314. end;
  2315. end;
  2316. { insert hidden high parameters }
  2317. pd.parast.SymList.ForEachCall(@insert_hidden_para,pd);
  2318. { insert hidden self parameter }
  2319. insert_self_and_vmt_para(pd);
  2320. { insert funcret parameter if required }
  2321. insert_funcret_para(pd);
  2322. { Make var parameters regable, this must be done after the calling
  2323. convention is set. }
  2324. { this must be done before parentfp is insert, because getting all cases
  2325. where parentfp must be in a memory location isn't catched properly so
  2326. we put parentfp never in a register }
  2327. pd.parast.SymList.ForEachCall(@set_addr_param_regable,pd);
  2328. { insert parentfp parameter if required }
  2329. insert_parentfp_para(pd);
  2330. { Calculate parameter tlist }
  2331. pd.calcparas;
  2332. end;
  2333. procedure parse_proc_directives(pd:tabstractprocdef;var pdflags:tpdflags);
  2334. {
  2335. Parse the procedure directives. It does not matter if procedure directives
  2336. are written using ;procdir; or ['procdir'] syntax.
  2337. }
  2338. var
  2339. res : boolean;
  2340. begin
  2341. if (m_mac in current_settings.modeswitches) and (cs_externally_visible in current_settings.localswitches) then
  2342. begin
  2343. tprocdef(pd).aliasnames.insert(tprocdef(pd).procsym.realname);
  2344. include(pd.procoptions,po_public);
  2345. include(pd.procoptions,po_has_public_name);
  2346. include(pd.procoptions,po_global);
  2347. end;
  2348. while token in [_ID,_LECKKLAMMER] do
  2349. begin
  2350. if try_to_consume(_LECKKLAMMER) then
  2351. begin
  2352. repeat
  2353. parse_proc_direc(pd,pdflags);
  2354. until not try_to_consume(_COMMA);
  2355. consume(_RECKKLAMMER);
  2356. { we always expect at least '[];' }
  2357. res:=true;
  2358. end
  2359. else
  2360. begin
  2361. res:=parse_proc_direc(pd,pdflags);
  2362. end;
  2363. { A procedure directive normally followed by a semicolon, but in
  2364. a const section or reading a type we should stop when _EQUAL is found,
  2365. because a constant/default value follows }
  2366. if res then
  2367. begin
  2368. if (block_type=bt_const_type) and
  2369. (token=_EQUAL) then
  2370. break;
  2371. { support procedure proc;stdcall export; }
  2372. if not(check_proc_directive((pd.typ=procvardef))) then
  2373. begin
  2374. { support "record p : procedure stdcall end;" and
  2375. "var p : procedure stdcall = nil;" }
  2376. if (pd_procvar in pdflags) and
  2377. (token in [_END,_RKLAMMER,_EQUAL]) then
  2378. break
  2379. else
  2380. begin
  2381. if (token=_COLON) then
  2382. begin
  2383. Message(parser_e_field_not_allowed_here);
  2384. consume_all_until(_SEMICOLON);
  2385. end;
  2386. consume(_SEMICOLON)
  2387. end;
  2388. end;
  2389. end
  2390. else
  2391. break;
  2392. end;
  2393. end;
  2394. procedure parse_var_proc_directives(sym:tsym);
  2395. var
  2396. pdflags : tpdflags;
  2397. pd : tabstractprocdef;
  2398. begin
  2399. pdflags:=[pd_procvar];
  2400. pd:=nil;
  2401. case sym.typ of
  2402. fieldvarsym,
  2403. staticvarsym,
  2404. localvarsym,
  2405. paravarsym :
  2406. pd:=tabstractprocdef(tabstractvarsym(sym).vardef);
  2407. typesym :
  2408. pd:=tabstractprocdef(ttypesym(sym).typedef);
  2409. else
  2410. internalerror(2003042617);
  2411. end;
  2412. if pd.typ<>procvardef then
  2413. internalerror(2003042618);
  2414. { names should never be used anyway }
  2415. parse_proc_directives(pd,pdflags);
  2416. end;
  2417. procedure parse_object_proc_directives(pd:tabstractprocdef);
  2418. var
  2419. pdflags : tpdflags;
  2420. begin
  2421. pdflags:=[pd_object];
  2422. parse_proc_directives(pd,pdflags);
  2423. end;
  2424. function proc_add_definition(var currpd:tprocdef):boolean;
  2425. {
  2426. Add definition aprocdef to the overloaded definitions of aprocsym. If a
  2427. forwarddef is found and reused it returns true
  2428. }
  2429. var
  2430. fwpd : tprocdef;
  2431. currparasym,
  2432. fwparasym : tsym;
  2433. currparacnt,
  2434. fwparacnt,
  2435. curridx,
  2436. fwidx,
  2437. i : longint;
  2438. po_comp : tprocoptions;
  2439. paracompopt: tcompare_paras_options;
  2440. forwardfound : boolean;
  2441. begin
  2442. forwardfound:=false;
  2443. { check overloaded functions if the same function already exists }
  2444. for i:=0 to tprocsym(currpd.procsym).ProcdefList.Count-1 do
  2445. begin
  2446. fwpd:=tprocdef(tprocsym(currpd.procsym).ProcdefList[i]);
  2447. { Skip overloaded definitions that are declared in other units }
  2448. if fwpd.procsym<>currpd.procsym then
  2449. continue;
  2450. { check the parameters, for delphi/tp it is possible to
  2451. leave the parameters away in the implementation (forwarddef=false).
  2452. But for an overload declared function this is not allowed }
  2453. if { check if empty implementation arguments match is allowed }
  2454. (
  2455. not(m_repeat_forward in current_settings.modeswitches) and
  2456. not(currpd.forwarddef) and
  2457. is_bareprocdef(currpd) and
  2458. not(po_overload in fwpd.procoptions)
  2459. ) or
  2460. { check arguments, we need to check only the user visible parameters. The hidden parameters
  2461. can be in a different location because of the calling convention, eg. L-R vs. R-L order (PFV) }
  2462. (
  2463. (compare_paras(currpd.paras,fwpd.paras,cp_none,[cpo_comparedefaultvalue,cpo_ignorehidden,cpo_openequalisexact])=te_exact) and
  2464. (fwpd.returndef=currpd.returndef)
  2465. ) then
  2466. begin
  2467. { Check if we've found the forwarddef, if found then
  2468. we need to update the forward def with the current
  2469. implementation settings }
  2470. if fwpd.forwarddef then
  2471. begin
  2472. forwardfound:=true;
  2473. if not(m_repeat_forward in current_settings.modeswitches) and
  2474. (fwpd.proccalloption<>currpd.proccalloption) then
  2475. paracompopt:=[cpo_ignorehidden,cpo_comparedefaultvalue,cpo_openequalisexact]
  2476. else
  2477. paracompopt:=[cpo_comparedefaultvalue,cpo_openequalisexact];
  2478. { Check calling convention }
  2479. if (fwpd.proccalloption<>currpd.proccalloption) then
  2480. begin
  2481. { In delphi it is possible to specify the calling
  2482. convention in the interface or implementation if
  2483. there was no convention specified in the other
  2484. part }
  2485. if (m_delphi in current_settings.modeswitches) then
  2486. begin
  2487. if not(po_hascallingconvention in currpd.procoptions) then
  2488. currpd.proccalloption:=fwpd.proccalloption
  2489. else
  2490. if not(po_hascallingconvention in fwpd.procoptions) then
  2491. fwpd.proccalloption:=currpd.proccalloption
  2492. else
  2493. begin
  2494. MessagePos(currpd.fileinfo,parser_e_call_convention_dont_match_forward);
  2495. tprocsym(currpd.procsym).write_parameter_lists(currpd);
  2496. { restore interface settings }
  2497. currpd.proccalloption:=fwpd.proccalloption;
  2498. end;
  2499. end
  2500. else
  2501. begin
  2502. MessagePos(currpd.fileinfo,parser_e_call_convention_dont_match_forward);
  2503. tprocsym(currpd.procsym).write_parameter_lists(currpd);
  2504. { restore interface settings }
  2505. currpd.proccalloption:=fwpd.proccalloption;
  2506. end;
  2507. end;
  2508. { Check if the procedure type and return type are correct,
  2509. also the parameters must match also with the type }
  2510. if ((m_repeat_forward in current_settings.modeswitches) or
  2511. not is_bareprocdef(currpd)) and
  2512. ((compare_paras(currpd.paras,fwpd.paras,cp_all,paracompopt)<>te_exact) or
  2513. (fwpd.returndef<>currpd.returndef)) then
  2514. begin
  2515. MessagePos1(currpd.fileinfo,parser_e_header_dont_match_forward,
  2516. fwpd.fullprocname(false));
  2517. tprocsym(currpd.procsym).write_parameter_lists(currpd);
  2518. break;
  2519. end;
  2520. { Check if both are declared forward }
  2521. if fwpd.forwarddef and currpd.forwarddef then
  2522. begin
  2523. MessagePos1(currpd.fileinfo,parser_e_function_already_declared_public_forward,
  2524. currpd.fullprocname(false));
  2525. end;
  2526. { internconst or internproc only need to be defined once }
  2527. if (fwpd.proccalloption=pocall_internproc) then
  2528. currpd.proccalloption:=fwpd.proccalloption
  2529. else
  2530. if (currpd.proccalloption=pocall_internproc) then
  2531. fwpd.proccalloption:=currpd.proccalloption;
  2532. { Check procedure options, Delphi requires that class is
  2533. repeated in the implementation for class methods }
  2534. if (m_fpc in current_settings.modeswitches) then
  2535. po_comp:=[po_classmethod,po_varargs,po_methodpointer,po_interrupt]
  2536. else
  2537. po_comp:=[po_classmethod,po_methodpointer];
  2538. if ((po_comp * fwpd.procoptions)<>(po_comp * currpd.procoptions)) or
  2539. (fwpd.proctypeoption <> currpd.proctypeoption) then
  2540. begin
  2541. MessagePos1(currpd.fileinfo,parser_e_header_dont_match_forward,
  2542. fwpd.fullprocname(false));
  2543. tprocsym(fwpd.procsym).write_parameter_lists(fwpd);
  2544. { This error is non-fatal, we can recover }
  2545. end;
  2546. { Forward declaration is external? }
  2547. if (po_external in fwpd.procoptions) then
  2548. MessagePos(currpd.fileinfo,parser_e_proc_already_external);
  2549. { Check parameters }
  2550. if (m_repeat_forward in current_settings.modeswitches) or
  2551. (currpd.minparacount>0) then
  2552. begin
  2553. { If mangled names are equal then they have the same amount of arguments }
  2554. { We can check the names of the arguments }
  2555. { both symtables are in the same order from left to right }
  2556. curridx:=0;
  2557. fwidx:=0;
  2558. currparacnt:=currpd.parast.SymList.Count;
  2559. fwparacnt:=fwpd.parast.SymList.Count;
  2560. repeat
  2561. { skip default parameter constsyms }
  2562. while (curridx<currparacnt) and
  2563. (tsym(currpd.parast.SymList[curridx]).typ<>paravarsym) do
  2564. inc(curridx);
  2565. while (fwidx<fwparacnt) and
  2566. (tsym(fwpd.parast.SymList[fwidx]).typ<>paravarsym) do
  2567. inc(fwidx);
  2568. { stop when one of the two lists is at the end }
  2569. if (fwidx>=fwparacnt) or (curridx>=currparacnt) then
  2570. break;
  2571. { compare names of parameters, ignore implictly
  2572. renamed parameters }
  2573. currparasym:=tsym(currpd.parast.SymList[curridx]);
  2574. fwparasym:=tsym(fwpd.parast.SymList[fwidx]);
  2575. if not(sp_implicitrename in currparasym.symoptions) and
  2576. not(sp_implicitrename in fwparasym.symoptions) then
  2577. begin
  2578. if (currparasym.name<>fwparasym.name) then
  2579. begin
  2580. MessagePos3(currpd.fileinfo,parser_e_header_different_var_names,
  2581. tprocsym(currpd.procsym).realname,fwparasym.realname,currparasym.realname);
  2582. break;
  2583. end;
  2584. end;
  2585. { next parameter }
  2586. inc(curridx);
  2587. inc(fwidx);
  2588. until false;
  2589. end;
  2590. { Everything is checked, now we can update the forward declaration
  2591. with the new data from the implementation }
  2592. fwpd.forwarddef:=currpd.forwarddef;
  2593. fwpd.hasforward:=true;
  2594. fwpd.procoptions:=fwpd.procoptions+currpd.procoptions;
  2595. { marked as local but exported from unit? }
  2596. if (po_kylixlocal in fwpd.procoptions) and (fwpd.owner.symtabletype=globalsymtable) then
  2597. MessagePos(fwpd.fileinfo,type_e_cant_export_local);
  2598. if fwpd.extnumber=$ffff then
  2599. fwpd.extnumber:=currpd.extnumber;
  2600. while not currpd.aliasnames.empty do
  2601. fwpd.aliasnames.insert(currpd.aliasnames.getfirst);
  2602. { update fileinfo so position references the implementation,
  2603. also update funcretsym if it is already generated }
  2604. fwpd.fileinfo:=currpd.fileinfo;
  2605. if assigned(fwpd.funcretsym) then
  2606. fwpd.funcretsym.fileinfo:=currpd.fileinfo;
  2607. if assigned(currpd.deprecatedmsg) then
  2608. begin
  2609. stringdispose(fwpd.deprecatedmsg);
  2610. fwpd.deprecatedmsg:=stringdup(currpd.deprecatedmsg^);
  2611. end;
  2612. { import names }
  2613. if assigned(currpd.import_dll) then
  2614. begin
  2615. stringdispose(fwpd.import_dll);
  2616. fwpd.import_dll:=stringdup(currpd.import_dll^);
  2617. end;
  2618. if assigned(currpd.import_name) then
  2619. begin
  2620. stringdispose(fwpd.import_name);
  2621. fwpd.import_name:=stringdup(currpd.import_name^);
  2622. end;
  2623. fwpd.import_nr:=currpd.import_nr;
  2624. { for compilerproc defines we need to rename and update the
  2625. symbolname to lowercase }
  2626. if (po_compilerproc in fwpd.procoptions) then
  2627. begin
  2628. { rename to lowercase so users can't access it }
  2629. fwpd.procsym.realname:='$'+lower(fwpd.procsym.name);
  2630. { the mangeled name is already changed by the pd_compilerproc }
  2631. { handler. It must be done immediately because if we have a }
  2632. { call to a compilerproc before it's implementation is }
  2633. { encountered, it must already use the new mangled name (JM) }
  2634. end;
  2635. { Release current procdef }
  2636. currpd.owner.deletedef(currpd);
  2637. currpd:=fwpd;
  2638. end
  2639. else
  2640. begin
  2641. { abstract methods aren't forward defined, but this }
  2642. { needs another error message }
  2643. if (po_abstractmethod in fwpd.procoptions) then
  2644. MessagePos(currpd.fileinfo,parser_e_abstract_no_definition)
  2645. else
  2646. begin
  2647. MessagePos(currpd.fileinfo,parser_e_overloaded_have_same_parameters);
  2648. tprocsym(currpd.procsym).write_parameter_lists(currpd);
  2649. end;
  2650. end;
  2651. { we found one proc with the same arguments, there are no others
  2652. so we can stop }
  2653. break;
  2654. end;
  2655. { check for allowing overload directive }
  2656. if not(m_fpc in current_settings.modeswitches) then
  2657. begin
  2658. { overload directive turns on overloading }
  2659. if ((po_overload in currpd.procoptions) or
  2660. (po_overload in fwpd.procoptions)) then
  2661. begin
  2662. { check if all procs have overloading, but not if the proc is a method or
  2663. already declared forward, then the check is already done }
  2664. if not(fwpd.hasforward or
  2665. assigned(currpd._class) or
  2666. (currpd.forwarddef<>fwpd.forwarddef) or
  2667. ((po_overload in currpd.procoptions) and
  2668. (po_overload in fwpd.procoptions))) then
  2669. begin
  2670. MessagePos1(currpd.fileinfo,parser_e_no_overload_for_all_procs,currpd.procsym.realname);
  2671. break;
  2672. end;
  2673. end
  2674. else
  2675. begin
  2676. if not(fwpd.forwarddef) then
  2677. begin
  2678. if (m_tp7 in current_settings.modeswitches) then
  2679. MessagePos(currpd.fileinfo,parser_e_procedure_overloading_is_off)
  2680. else
  2681. MessagePos1(currpd.fileinfo,parser_e_no_overload_for_all_procs,currpd.procsym.realname);
  2682. break;
  2683. end;
  2684. end;
  2685. end; { equal arguments }
  2686. end;
  2687. { if we didn't reuse a forwarddef then we add the procdef to the overloaded
  2688. list }
  2689. if not forwardfound then
  2690. begin
  2691. { can happen in Delphi mode }
  2692. if (currpd.proctypeoption = potype_function) and
  2693. is_void(currpd.returndef) then
  2694. MessagePos1(currpd.fileinfo,parser_e_no_funcret_specified,currpd.procsym.realname);
  2695. tprocsym(currpd.procsym).ProcdefList.Add(currpd);
  2696. end;
  2697. proc_add_definition:=forwardfound;
  2698. end;
  2699. end.