pdecsub.pas 127 KB

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