htypechk.pas 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118
  1. {
  2. $Id$
  3. Copyright (c) 1998-2002 by Florian Klaempfl
  4. This unit exports some help routines for the type checking
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program; if not, write to the Free Software
  15. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  16. ****************************************************************************
  17. }
  18. unit htypechk;
  19. {$i fpcdefs.inc}
  20. interface
  21. uses
  22. tokens,cpuinfo,
  23. node,
  24. symconst,symtype,symdef,symsym,symbase;
  25. type
  26. Ttok2nodeRec=record
  27. tok : ttoken;
  28. nod : tnodetype;
  29. op_overloading_supported : boolean;
  30. end;
  31. pcandidate = ^tcandidate;
  32. tcandidate = record
  33. next : pcandidate;
  34. data : tprocdef;
  35. wrongparaidx,
  36. firstparaidx : integer;
  37. exact_count,
  38. equal_count,
  39. cl1_count,
  40. cl2_count,
  41. cl3_count,
  42. coper_count : integer; { should be signed }
  43. ordinal_distance : bestreal;
  44. invalid : boolean;
  45. wrongparanr : byte;
  46. end;
  47. tcallcandidates = class
  48. private
  49. FProcSym : tprocsym;
  50. FProcs : pcandidate;
  51. FProcVisibleCnt,
  52. FProcCnt : integer;
  53. FParaNode : tnode;
  54. FParaLength : smallint;
  55. FAllowVariant : boolean;
  56. function proc_add(pd:tprocdef):pcandidate;
  57. public
  58. constructor create(sym:tprocsym;st:tsymtable;ppn:tnode;isprop,ignorevis : boolean);
  59. constructor create_operator(op:ttoken;ppn:tnode);
  60. destructor destroy;override;
  61. procedure list(all:boolean);
  62. {$ifdef EXTDEBUG}
  63. procedure dump_info(lvl:longint);
  64. {$endif EXTDEBUG}
  65. procedure get_information;
  66. function choose_best(var bestpd:tabstractprocdef):integer;
  67. procedure find_wrong_para;
  68. property Count:integer read FProcCnt;
  69. property VisibleCount:integer read FProcVisibleCnt;
  70. end;
  71. const
  72. tok2nodes=25;
  73. tok2node:array[1..tok2nodes] of ttok2noderec=(
  74. (tok:_PLUS ;nod:addn;op_overloading_supported:true), { binary overloading supported }
  75. (tok:_MINUS ;nod:subn;op_overloading_supported:true), { binary and unary overloading supported }
  76. (tok:_STAR ;nod:muln;op_overloading_supported:true), { binary overloading supported }
  77. (tok:_SLASH ;nod:slashn;op_overloading_supported:true), { binary overloading supported }
  78. (tok:_EQUAL ;nod:equaln;op_overloading_supported:true), { binary overloading supported }
  79. (tok:_GT ;nod:gtn;op_overloading_supported:true), { binary overloading supported }
  80. (tok:_LT ;nod:ltn;op_overloading_supported:true), { binary overloading supported }
  81. (tok:_GTE ;nod:gten;op_overloading_supported:true), { binary overloading supported }
  82. (tok:_LTE ;nod:lten;op_overloading_supported:true), { binary overloading supported }
  83. (tok:_SYMDIF ;nod:symdifn;op_overloading_supported:true), { binary overloading supported }
  84. (tok:_STARSTAR;nod:starstarn;op_overloading_supported:true), { binary overloading supported }
  85. (tok:_OP_AS ;nod:asn;op_overloading_supported:false), { binary overloading NOT supported }
  86. (tok:_OP_IN ;nod:inn;op_overloading_supported:false), { binary overloading NOT supported }
  87. (tok:_OP_IS ;nod:isn;op_overloading_supported:false), { binary overloading NOT supported }
  88. (tok:_OP_OR ;nod:orn;op_overloading_supported:true), { binary overloading supported }
  89. (tok:_OP_AND ;nod:andn;op_overloading_supported:true), { binary overloading supported }
  90. (tok:_OP_DIV ;nod:divn;op_overloading_supported:true), { binary overloading supported }
  91. (tok:_OP_NOT ;nod:notn;op_overloading_supported:true), { unary overloading supported }
  92. (tok:_OP_MOD ;nod:modn;op_overloading_supported:true), { binary overloading supported }
  93. (tok:_OP_SHL ;nod:shln;op_overloading_supported:true), { binary overloading supported }
  94. (tok:_OP_SHR ;nod:shrn;op_overloading_supported:true), { binary overloading supported }
  95. (tok:_OP_XOR ;nod:xorn;op_overloading_supported:true), { binary overloading supported }
  96. (tok:_ASSIGNMENT;nod:assignn;op_overloading_supported:true), { unary overloading supported }
  97. (tok:_CARET ;nod:caretn;op_overloading_supported:false), { binary overloading NOT supported }
  98. (tok:_UNEQUAL ;nod:unequaln;op_overloading_supported:false) { binary overloading NOT supported overload = instead }
  99. );
  100. const
  101. { firstcallparan without varspez we don't count the ref }
  102. {$ifdef extdebug}
  103. count_ref : boolean = true;
  104. {$endif def extdebug}
  105. allow_array_constructor : boolean = false;
  106. function node2opstr(nt:tnodetype):string;
  107. { check operator args and result type }
  108. function isbinaryoperatoroverloadable(treetyp:tnodetype;ld:tdef;lt:tnodetype;rd:tdef;rt:tnodetype) : boolean;
  109. function isoperatoracceptable(pf : tprocdef; optoken : ttoken) : boolean;
  110. function isunaryoverloaded(var t : tnode) : boolean;
  111. function isbinaryoverloaded(var t : tnode) : boolean;
  112. { Register Allocation }
  113. procedure make_not_regable(p : tnode);
  114. procedure calcregisters(p : tbinarynode;r32,fpu,mmx : word);
  115. { procvar handling }
  116. function is_procvar_load(p:tnode):boolean;
  117. procedure test_local_to_procvar(from_def:tprocvardef;to_def:tdef);
  118. { sets varsym varstate field correctly }
  119. procedure set_varstate(p:tnode;newstate:tvarstate;must_be_valid:boolean);
  120. { sets the callunique flag, if the node is a vecn, }
  121. { takes care of type casts etc. }
  122. procedure set_unique(p : tnode);
  123. function valid_for_formal_var(p : tnode) : boolean;
  124. function valid_for_formal_const(p : tnode) : boolean;
  125. function valid_for_var(p:tnode):boolean;
  126. function valid_for_assignment(p:tnode):boolean;
  127. function valid_for_addr(p : tnode) : boolean;
  128. implementation
  129. uses
  130. globtype,systems,
  131. cutils,verbose,globals,
  132. symtable,
  133. defutil,defcmp,
  134. nbas,ncnv,nld,nmem,ncal,nmat,ninl,nutils,
  135. cgbase,procinfo
  136. ;
  137. type
  138. TValidAssign=(Valid_Property,Valid_Void,Valid_Const,Valid_Addr);
  139. TValidAssigns=set of TValidAssign;
  140. function node2opstr(nt:tnodetype):string;
  141. var
  142. i : integer;
  143. begin
  144. result:='<unknown>';
  145. for i:=1 to tok2nodes do
  146. if tok2node[i].nod=nt then
  147. begin
  148. result:=tokeninfo^[tok2node[i].tok].str;
  149. break;
  150. end;
  151. end;
  152. function isbinaryoperatoroverloadable(treetyp:tnodetype;ld:tdef;lt:tnodetype;rd:tdef;rt:tnodetype) : boolean;
  153. function internal_check(treetyp:tnodetype;ld:tdef;lt:tnodetype;rd:tdef;rt:tnodetype;var allowed:boolean):boolean;
  154. begin
  155. internal_check:=true;
  156. case ld.deftype of
  157. formaldef,
  158. recorddef,
  159. variantdef :
  160. begin
  161. allowed:=true;
  162. end;
  163. procvardef :
  164. begin
  165. if (rd.deftype in [pointerdef,procdef,procvardef]) then
  166. begin
  167. allowed:=false;
  168. exit;
  169. end;
  170. allowed:=true;
  171. end;
  172. pointerdef :
  173. begin
  174. if ((rd.deftype in [orddef,enumdef,pointerdef,classrefdef,procvardef]) or
  175. is_class_or_interface(rd)) then
  176. begin
  177. allowed:=false;
  178. exit;
  179. end;
  180. { don't allow pchar+string }
  181. if (is_pchar(ld) or is_pwidechar(ld)) and
  182. ((rd.deftype=stringdef) or
  183. is_pchar(rd) or
  184. is_pwidechar(rd) or
  185. is_chararray(rd) or
  186. is_widechararray(rd)) then
  187. begin
  188. allowed:=false;
  189. exit;
  190. end;
  191. allowed:=true;
  192. end;
  193. arraydef :
  194. begin
  195. { not mmx }
  196. if (cs_mmx in aktlocalswitches) and
  197. is_mmx_able_array(ld) then
  198. begin
  199. allowed:=false;
  200. exit;
  201. end;
  202. { not chararray+[(wide)char,(wide)string,(wide)chararray] }
  203. if (is_chararray(ld) or is_widechararray(ld) or
  204. is_open_chararray(ld) or is_open_widechararray(ld))
  205. and
  206. ((rd.deftype in [stringdef,orddef,enumdef]) or
  207. is_pchar(rd) or
  208. is_pwidechar(rd) or
  209. is_chararray(rd) or
  210. is_widechararray(rd) or
  211. is_open_chararray(rd) or
  212. is_open_widechararray(rd) or
  213. (rt=niln)) then
  214. begin
  215. allowed:=false;
  216. exit;
  217. end;
  218. { dynamic array compare with niln }
  219. if ((is_dynamic_array(ld) and
  220. (rt=niln)) or
  221. (is_dynamic_array(ld) and is_dynamic_array(rd)))
  222. and
  223. (treetyp in [equaln,unequaln]) then
  224. begin
  225. allowed:=false;
  226. exit;
  227. end;
  228. allowed:=true;
  229. end;
  230. objectdef :
  231. begin
  232. { <> and = are defined for classes }
  233. if (treetyp in [equaln,unequaln]) and
  234. is_class_or_interface(ld) then
  235. begin
  236. allowed:=false;
  237. exit;
  238. end;
  239. allowed:=true;
  240. end;
  241. stringdef :
  242. begin
  243. if (rd.deftype in [orddef,enumdef,stringdef]) or
  244. is_pchar(rd) or
  245. is_pwidechar(rd) or
  246. is_chararray(rd) or
  247. is_widechararray(rd) or
  248. is_open_chararray(rd) or
  249. is_open_widechararray(rd) then
  250. begin
  251. allowed:=false;
  252. exit;
  253. end;
  254. allowed:=true;
  255. end;
  256. else
  257. internal_check:=false;
  258. end;
  259. end;
  260. var
  261. allowed : boolean;
  262. begin
  263. { power ** is always possible }
  264. if (treetyp=starstarn) then
  265. begin
  266. isbinaryoperatoroverloadable:=true;
  267. exit;
  268. end;
  269. { order of arguments does not matter so we have to check also
  270. the reversed order }
  271. allowed:=false;
  272. if not internal_check(treetyp,ld,lt,rd,rt,allowed) then
  273. internal_check(treetyp,rd,rt,ld,lt,allowed);
  274. isbinaryoperatoroverloadable:=allowed;
  275. end;
  276. function isunaryoperatoroverloadable(treetyp : tnodetype;ld : tdef) : boolean;
  277. begin
  278. result:=false;
  279. case treetyp of
  280. subn,
  281. unaryminusn :
  282. begin
  283. if is_integer(ld) or
  284. (ld.deftype=floatdef) then
  285. exit;
  286. {$ifdef SUPPORT_MMX}
  287. if (cs_mmx in aktlocalswitches) and
  288. is_mmx_able_array(ld) then
  289. exit;
  290. {$endif SUPPORT_MMX}
  291. result:=true;
  292. end;
  293. notn :
  294. begin
  295. if is_integer(ld) or
  296. is_boolean(ld) then
  297. exit;
  298. {$ifdef SUPPORT_MMX}
  299. if (cs_mmx in aktlocalswitches) and
  300. is_mmx_able_array(ld) then
  301. exit;
  302. {$endif SUPPORT_MMX}
  303. result:=true;
  304. end;
  305. end;
  306. end;
  307. function isoperatoracceptable(pf : tprocdef; optoken : ttoken) : boolean;
  308. var
  309. ld,rd : tdef;
  310. i : longint;
  311. eq : tequaltype;
  312. conv : tconverttype;
  313. pd : tprocdef;
  314. begin
  315. result:=false;
  316. case pf.parast.symindex.count of
  317. 1 : begin
  318. ld:=tparavarsym(pf.parast.symindex.first).vartype.def;
  319. { assignment is a special case }
  320. if optoken=_ASSIGNMENT then
  321. begin
  322. eq:=compare_defs_ext(ld,pf.rettype.def,nothingn,conv,pd,[cdo_explicit]);
  323. result:=(eq=te_incompatible);
  324. end
  325. else
  326. begin
  327. for i:=1 to tok2nodes do
  328. if tok2node[i].tok=optoken then
  329. begin
  330. result:=
  331. tok2node[i].op_overloading_supported and
  332. isunaryoperatoroverloadable(tok2node[i].nod,ld);
  333. break;
  334. end;
  335. end;
  336. end;
  337. 2 : begin
  338. for i:=1 to tok2nodes do
  339. if tok2node[i].tok=optoken then
  340. begin
  341. ld:=tparavarsym(pf.parast.symindex.first).vartype.def;
  342. rd:=tparavarsym(pf.parast.symindex.first.indexnext).vartype.def;
  343. result:=
  344. tok2node[i].op_overloading_supported and
  345. isbinaryoperatoroverloadable(tok2node[i].nod,ld,nothingn,rd,nothingn);
  346. break;
  347. end;
  348. end;
  349. end;
  350. end;
  351. function isunaryoverloaded(var t : tnode) : boolean;
  352. var
  353. ld : tdef;
  354. optoken : ttoken;
  355. operpd : tprocdef;
  356. ppn : tcallparanode;
  357. candidates : tcallcandidates;
  358. cand_cnt : integer;
  359. begin
  360. result:=false;
  361. operpd:=nil;
  362. { load easier access variables }
  363. ld:=tunarynode(t).left.resulttype.def;
  364. if not isunaryoperatoroverloadable(t.nodetype,ld) then
  365. exit;
  366. { operator overload is possible }
  367. result:=true;
  368. case t.nodetype of
  369. notn:
  370. optoken:=_OP_NOT;
  371. unaryminusn:
  372. optoken:=_MINUS;
  373. else
  374. begin
  375. CGMessage(parser_e_operator_not_overloaded);
  376. t:=cnothingnode.create;
  377. exit;
  378. end;
  379. end;
  380. { generate parameter nodes }
  381. ppn:=ccallparanode.create(tunarynode(t).left.getcopy,nil);
  382. ppn.get_paratype;
  383. candidates:=tcallcandidates.create_operator(optoken,ppn);
  384. { stop when there are no operators found }
  385. if candidates.count=0 then
  386. begin
  387. CGMessage(parser_e_operator_not_overloaded);
  388. candidates.free;
  389. ppn.free;
  390. t:=cnothingnode.create;
  391. exit;
  392. end;
  393. { Retrieve information about the candidates }
  394. candidates.get_information;
  395. {$ifdef EXTDEBUG}
  396. { Display info when multiple candidates are found }
  397. candidates.dump_info(V_Debug);
  398. {$endif EXTDEBUG}
  399. cand_cnt:=candidates.choose_best(operpd);
  400. { exit when no overloads are found }
  401. if cand_cnt=0 then
  402. begin
  403. CGMessage(parser_e_operator_not_overloaded);
  404. candidates.free;
  405. ppn.free;
  406. t:=cnothingnode.create;
  407. exit;
  408. end;
  409. { Multiple candidates left? }
  410. if cand_cnt>1 then
  411. begin
  412. CGMessage(type_e_cant_choose_overload_function);
  413. {$ifdef EXTDEBUG}
  414. candidates.dump_info(V_Hint);
  415. {$else EXTDEBUG}
  416. candidates.list(false);
  417. {$endif EXTDEBUG}
  418. { we'll just use the first candidate to make the
  419. call }
  420. end;
  421. candidates.free;
  422. inc(operpd.procsym.refs);
  423. { the nil as symtable signs firstcalln that this is
  424. an overloaded operator }
  425. t:=ccallnode.create(ppn,Tprocsym(operpd.procsym),nil,nil,[]);
  426. { we already know the procdef to use, so it can
  427. skip the overload choosing in callnode.det_resulttype }
  428. tcallnode(t).procdefinition:=operpd;
  429. end;
  430. function isbinaryoverloaded(var t : tnode) : boolean;
  431. var
  432. rd,ld : tdef;
  433. optoken : ttoken;
  434. operpd : tprocdef;
  435. ht : tnode;
  436. ppn : tcallparanode;
  437. candidates : tcallcandidates;
  438. cand_cnt : integer;
  439. begin
  440. isbinaryoverloaded:=false;
  441. operpd:=nil;
  442. { load easier access variables }
  443. ld:=tbinarynode(t).left.resulttype.def;
  444. rd:=tbinarynode(t).right.resulttype.def;
  445. if not isbinaryoperatoroverloadable(t.nodetype,ld,tbinarynode(t).left.nodetype,rd,tbinarynode(t).right.nodetype) then
  446. exit;
  447. { operator overload is possible }
  448. result:=true;
  449. case t.nodetype of
  450. equaln,
  451. unequaln :
  452. optoken:=_EQUAL;
  453. addn:
  454. optoken:=_PLUS;
  455. subn:
  456. optoken:=_MINUS;
  457. muln:
  458. optoken:=_STAR;
  459. starstarn:
  460. optoken:=_STARSTAR;
  461. slashn:
  462. optoken:=_SLASH;
  463. ltn:
  464. optoken:=_LT;
  465. gtn:
  466. optoken:=_GT;
  467. lten:
  468. optoken:=_LTE;
  469. gten:
  470. optoken:=_GTE;
  471. symdifn :
  472. optoken:=_SYMDIF;
  473. modn :
  474. optoken:=_OP_MOD;
  475. orn :
  476. optoken:=_OP_OR;
  477. xorn :
  478. optoken:=_OP_XOR;
  479. andn :
  480. optoken:=_OP_AND;
  481. divn :
  482. optoken:=_OP_DIV;
  483. shln :
  484. optoken:=_OP_SHL;
  485. shrn :
  486. optoken:=_OP_SHR;
  487. else
  488. begin
  489. CGMessage(parser_e_operator_not_overloaded);
  490. t:=cnothingnode.create;
  491. exit;
  492. end;
  493. end;
  494. { generate parameter nodes }
  495. ppn:=ccallparanode.create(tbinarynode(t).right.getcopy,ccallparanode.create(tbinarynode(t).left.getcopy,nil));
  496. ppn.get_paratype;
  497. candidates:=tcallcandidates.create_operator(optoken,ppn);
  498. { for commutative operators we can swap arguments and try again }
  499. if (candidates.count=0) and
  500. not(optoken in [_OP_SHL,_OP_SHR,_OP_DIV,_OP_MOD,_STARSTAR,_SLASH,_MINUS]) then
  501. begin
  502. candidates.free;
  503. reverseparameters(ppn);
  504. { reverse compare operators }
  505. case optoken of
  506. _LT:
  507. optoken:=_GTE;
  508. _GT:
  509. optoken:=_LTE;
  510. _LTE:
  511. optoken:=_GT;
  512. _GTE:
  513. optoken:=_LT;
  514. end;
  515. candidates:=tcallcandidates.create_operator(optoken,ppn);
  516. end;
  517. { stop when there are no operators found }
  518. if candidates.count=0 then
  519. begin
  520. CGMessage(parser_e_operator_not_overloaded);
  521. candidates.free;
  522. ppn.free;
  523. t:=cnothingnode.create;
  524. exit;
  525. end;
  526. { Retrieve information about the candidates }
  527. candidates.get_information;
  528. {$ifdef EXTDEBUG}
  529. { Display info when multiple candidates are found }
  530. candidates.dump_info(V_Debug);
  531. {$endif EXTDEBUG}
  532. cand_cnt:=candidates.choose_best(operpd);
  533. { exit when no overloads are found }
  534. if cand_cnt=0 then
  535. begin
  536. CGMessage(parser_e_operator_not_overloaded);
  537. candidates.free;
  538. ppn.free;
  539. t:=cnothingnode.create;
  540. exit;
  541. end;
  542. { Multiple candidates left? }
  543. if cand_cnt>1 then
  544. begin
  545. CGMessage(type_e_cant_choose_overload_function);
  546. {$ifdef EXTDEBUG}
  547. candidates.dump_info(V_Hint);
  548. {$else EXTDEBUG}
  549. candidates.list(false);
  550. {$endif EXTDEBUG}
  551. { we'll just use the first candidate to make the
  552. call }
  553. end;
  554. candidates.free;
  555. inc(operpd.procsym.refs);
  556. { the nil as symtable signs firstcalln that this is
  557. an overloaded operator }
  558. ht:=ccallnode.create(ppn,Tprocsym(operpd.procsym),nil,nil,[]);
  559. { we already know the procdef to use, so it can
  560. skip the overload choosing in callnode.det_resulttype }
  561. tcallnode(ht).procdefinition:=operpd;
  562. if t.nodetype=unequaln then
  563. ht:=cnotnode.create(ht);
  564. t:=ht;
  565. end;
  566. {****************************************************************************
  567. Register Calculation
  568. ****************************************************************************}
  569. { marks an lvalue as "unregable" }
  570. procedure make_not_regable(p : tnode);
  571. begin
  572. case p.nodetype of
  573. typeconvn :
  574. make_not_regable(ttypeconvnode(p).left);
  575. loadn :
  576. if tloadnode(p).symtableentry.typ in [globalvarsym,localvarsym,paravarsym] then
  577. tabstractvarsym(tloadnode(p).symtableentry).varregable:=vr_none;
  578. end;
  579. end;
  580. { calculates the needed registers for a binary operator }
  581. procedure calcregisters(p : tbinarynode;r32,fpu,mmx : word);
  582. begin
  583. p.left_right_max;
  584. { Only when the difference between the left and right registers < the
  585. wanted registers allocate the amount of registers }
  586. if assigned(p.left) then
  587. begin
  588. if assigned(p.right) then
  589. begin
  590. { the location must be already filled in because we need it to }
  591. { calculate the necessary number of registers (JM) }
  592. if p.expectloc = LOC_INVALID then
  593. internalerror(200110101);
  594. if (abs(p.left.registersint-p.right.registersint)<r32) or
  595. ((p.expectloc = LOC_FPUREGISTER) and
  596. (p.right.registersfpu <= p.left.registersfpu) and
  597. ((p.right.registersfpu <> 0) or (p.left.registersfpu <> 0)) and
  598. (p.left.registersint < p.right.registersint)) then
  599. inc(p.registersint,r32);
  600. if (abs(p.left.registersfpu-p.right.registersfpu)<fpu) then
  601. inc(p.registersfpu,fpu);
  602. {$ifdef SUPPORT_MMX}
  603. if (abs(p.left.registersmmx-p.right.registersmmx)<mmx) then
  604. inc(p.registersmmx,mmx);
  605. {$endif SUPPORT_MMX}
  606. { the following is a little bit guessing but I think }
  607. { it's the only way to solve same internalerrors: }
  608. { if the left and right node both uses registers }
  609. { and return a mem location, but the current node }
  610. { doesn't use an integer register we get probably }
  611. { trouble when restoring a node }
  612. if (p.left.registersint=p.right.registersint) and
  613. (p.registersint=p.left.registersint) and
  614. (p.registersint>0) and
  615. (p.left.expectloc in [LOC_REFERENCE,LOC_CREFERENCE]) and
  616. (p.right.expectloc in [LOC_REFERENCE,LOC_CREFERENCE]) then
  617. inc(p.registersint);
  618. end
  619. else
  620. begin
  621. if (p.left.registersint<r32) then
  622. inc(p.registersint,r32);
  623. if (p.left.registersfpu<fpu) then
  624. inc(p.registersfpu,fpu);
  625. {$ifdef SUPPORT_MMX}
  626. if (p.left.registersmmx<mmx) then
  627. inc(p.registersmmx,mmx);
  628. {$endif SUPPORT_MMX}
  629. end;
  630. end;
  631. end;
  632. {****************************************************************************
  633. Subroutine Handling
  634. ****************************************************************************}
  635. function is_procvar_load(p:tnode):boolean;
  636. begin
  637. result:=false;
  638. { remove voidpointer typecast for tp procvars }
  639. if (m_tp_procvar in aktmodeswitches) and
  640. (p.nodetype=typeconvn) and
  641. is_voidpointer(p.resulttype.def) then
  642. p:=tunarynode(p).left;
  643. result:=(p.nodetype=typeconvn) and
  644. (ttypeconvnode(p).convtype=tc_proc_2_procvar);
  645. end;
  646. { local routines can't be assigned to procvars }
  647. procedure test_local_to_procvar(from_def:tprocvardef;to_def:tdef);
  648. begin
  649. if (from_def.parast.symtablelevel>normal_function_level) and
  650. (to_def.deftype=procvardef) then
  651. CGMessage(type_e_cannot_local_proc_to_procvar);
  652. end;
  653. procedure set_varstate(p:tnode;newstate:tvarstate;must_be_valid:boolean);
  654. var
  655. hsym : tabstractvarsym;
  656. begin
  657. while assigned(p) do
  658. begin
  659. case p.nodetype of
  660. typeconvn :
  661. begin
  662. case ttypeconvnode(p).convtype of
  663. tc_cchar_2_pchar,
  664. tc_cstring_2_pchar,
  665. tc_array_2_pointer :
  666. must_be_valid:=false;
  667. tc_pchar_2_string,
  668. tc_pointer_2_array :
  669. must_be_valid:=true;
  670. end;
  671. p:=tunarynode(p).left;
  672. end;
  673. subscriptn :
  674. p:=tunarynode(p).left;
  675. vecn:
  676. begin
  677. set_varstate(tbinarynode(p).right,vs_used,true);
  678. if not(tunarynode(p).left.resulttype.def.deftype in [stringdef,arraydef]) then
  679. must_be_valid:=true;
  680. p:=tunarynode(p).left;
  681. end;
  682. { do not parse calln }
  683. calln :
  684. break;
  685. loadn :
  686. begin
  687. if (tloadnode(p).symtableentry.typ in [localvarsym,paravarsym,globalvarsym]) then
  688. begin
  689. hsym:=tabstractvarsym(tloadnode(p).symtableentry);
  690. if must_be_valid and (hsym.varstate=vs_declared) then
  691. begin
  692. { Give warning/note for uninitialized locals }
  693. if assigned(hsym.owner) and
  694. not(vo_is_external in hsym.varoptions) and
  695. (hsym.owner.symtabletype in [localsymtable,staticsymtable]) and
  696. (hsym.owner=current_procinfo.procdef.localst) then
  697. begin
  698. if (vo_is_funcret in hsym.varoptions) then
  699. CGMessage(sym_w_function_result_not_set)
  700. else
  701. if tloadnode(p).symtable.symtabletype=localsymtable then
  702. CGMessage1(sym_n_uninitialized_local_variable,hsym.realname)
  703. else
  704. CGMessage1(sym_n_uninitialized_variable,hsym.realname);
  705. end;
  706. end;
  707. { don't override vs_used with vs_assigned }
  708. if hsym.varstate<>vs_used then
  709. hsym.varstate:=newstate;
  710. end;
  711. break;
  712. end;
  713. callparan :
  714. internalerror(200310081);
  715. else
  716. break;
  717. end;{case }
  718. end;
  719. end;
  720. procedure set_unique(p : tnode);
  721. begin
  722. while assigned(p) do
  723. begin
  724. case p.nodetype of
  725. vecn:
  726. begin
  727. include(p.flags,nf_callunique);
  728. break;
  729. end;
  730. typeconvn,
  731. subscriptn,
  732. derefn:
  733. p:=tunarynode(p).left;
  734. else
  735. break;
  736. end;
  737. end;
  738. end;
  739. function valid_for_assign(p:tnode;opts:TValidAssigns):boolean;
  740. var
  741. hp : tnode;
  742. gotwith,
  743. gotsubscript,
  744. gotpointer,
  745. gotvec,
  746. gotclass,
  747. gotdynarray,
  748. gotderef : boolean;
  749. fromdef,
  750. todef : tdef;
  751. errmsg : longint;
  752. begin
  753. if valid_const in opts then
  754. errmsg:=type_e_variable_id_expected
  755. else
  756. errmsg:=type_e_argument_cant_be_assigned;
  757. result:=false;
  758. gotsubscript:=false;
  759. gotvec:=false;
  760. gotderef:=false;
  761. gotclass:=false;
  762. gotpointer:=false;
  763. gotwith:=false;
  764. gotdynarray:=false;
  765. hp:=p;
  766. if not(valid_void in opts) and
  767. is_void(hp.resulttype.def) then
  768. begin
  769. CGMessagePos(hp.fileinfo,errmsg);
  770. exit;
  771. end;
  772. while assigned(hp) do
  773. begin
  774. { property allowed? calln has a property check itself }
  775. if (nf_isproperty in hp.flags) then
  776. begin
  777. if (valid_property in opts) then
  778. result:=true
  779. else
  780. begin
  781. { check return type }
  782. case hp.resulttype.def.deftype of
  783. pointerdef :
  784. gotpointer:=true;
  785. objectdef :
  786. gotclass:=is_class_or_interface(hp.resulttype.def);
  787. recorddef, { handle record like class it needs a subscription }
  788. classrefdef :
  789. gotclass:=true;
  790. end;
  791. { 1. if it returns a pointer and we've found a deref,
  792. 2. if it returns a class or record and a subscription or with is found
  793. 3. if the address is needed of a field (subscriptn) }
  794. if (gotpointer and gotderef) or
  795. (
  796. gotclass and
  797. (gotsubscript or gotwith)
  798. ) or
  799. (
  800. (gotvec and gotdynarray)
  801. ) or
  802. (
  803. (Valid_Addr in opts) and
  804. (hp.nodetype=subscriptn)
  805. ) then
  806. result:=true
  807. else
  808. CGMessagePos(hp.fileinfo,errmsg);
  809. end;
  810. exit;
  811. end;
  812. if (Valid_Const in opts) and is_constnode(hp) then
  813. begin
  814. result:=true;
  815. exit;
  816. end;
  817. case hp.nodetype of
  818. temprefn :
  819. begin
  820. valid_for_assign := true;
  821. exit;
  822. end;
  823. derefn :
  824. begin
  825. gotderef:=true;
  826. hp:=tderefnode(hp).left;
  827. end;
  828. typeconvn :
  829. begin
  830. { typecast sizes must match, exceptions:
  831. - implicit typecast made by absolute
  832. - from formaldef
  833. - from void
  834. - from/to open array
  835. - typecast from pointer to array }
  836. fromdef:=ttypeconvnode(hp).left.resulttype.def;
  837. todef:=hp.resulttype.def;
  838. if not((nf_absolute in ttypeconvnode(hp).flags) or
  839. (fromdef.deftype=formaldef) or
  840. is_void(fromdef) or
  841. is_open_array(fromdef) or
  842. is_open_array(todef) or
  843. ((fromdef.deftype=pointerdef) and (todef.deftype=arraydef)) or
  844. ((fromdef.deftype = objectdef) and (todef.deftype = objectdef) and
  845. (tobjectdef(fromdef).is_related(tobjectdef(todef))))) and
  846. (fromdef.size<>todef.size) then
  847. begin
  848. { in TP it is allowed to typecast to smaller types. But the variable can't
  849. be in a register }
  850. if (m_tp7 in aktmodeswitches) or
  851. (todef.size<fromdef.size) then
  852. make_not_regable(hp)
  853. else
  854. CGMessagePos2(hp.fileinfo,type_e_typecast_wrong_size_for_assignment,tostr(fromdef.size),tostr(todef.size));
  855. end;
  856. { don't allow assignments to typeconvs that need special code }
  857. if not(gotsubscript or gotvec or gotderef) and
  858. not(ttypeconvnode(hp).assign_allowed) then
  859. begin
  860. CGMessagePos(hp.fileinfo,errmsg);
  861. exit;
  862. end;
  863. case hp.resulttype.def.deftype of
  864. pointerdef :
  865. gotpointer:=true;
  866. objectdef :
  867. gotclass:=is_class_or_interface(hp.resulttype.def);
  868. classrefdef :
  869. gotclass:=true;
  870. arraydef :
  871. begin
  872. { pointer -> array conversion is done then we need to see it
  873. as a deref, because a ^ is then not required anymore }
  874. if (ttypeconvnode(hp).left.resulttype.def.deftype=pointerdef) then
  875. gotderef:=true;
  876. end;
  877. end;
  878. hp:=ttypeconvnode(hp).left;
  879. end;
  880. vecn :
  881. begin
  882. gotvec:=true;
  883. { accesses to dyn. arrays override read only access in delphi }
  884. if (m_delphi in aktmodeswitches) and is_dynamic_array(tunarynode(hp).left.resulttype.def) then
  885. gotdynarray:=true;
  886. hp:=tunarynode(hp).left;
  887. end;
  888. asn :
  889. begin
  890. { asn can't be assigned directly, it returns the value in a register instead
  891. of reference. }
  892. if not(gotsubscript or gotderef or gotvec) then
  893. begin
  894. CGMessagePos(hp.fileinfo,errmsg);
  895. exit;
  896. end;
  897. hp:=tunarynode(hp).left;
  898. end;
  899. subscriptn :
  900. begin
  901. gotsubscript:=true;
  902. { loop counter? }
  903. if not(Valid_Const in opts) and
  904. (vo_is_loop_counter in tsubscriptnode(hp).vs.varoptions) then
  905. CGMessage1(parser_e_illegal_assignment_to_count_var,tsubscriptnode(hp).vs.realname);
  906. { a class/interface access is an implicit }
  907. { dereferencing }
  908. hp:=tsubscriptnode(hp).left;
  909. if is_class_or_interface(hp.resulttype.def) then
  910. gotderef:=true;
  911. end;
  912. subn,
  913. addn :
  914. begin
  915. { Allow add/sub operators on a pointer, or an integer
  916. and a pointer typecast and deref has been found }
  917. if ((hp.resulttype.def.deftype=pointerdef) or
  918. (is_integer(hp.resulttype.def) and gotpointer)) and
  919. gotderef then
  920. result:=true
  921. else
  922. { Temp strings are stored in memory, for compatibility with
  923. delphi only }
  924. if (m_delphi in aktmodeswitches) and
  925. (valid_addr in opts) and
  926. (hp.resulttype.def.deftype=stringdef) then
  927. result:=true
  928. else
  929. CGMessagePos(hp.fileinfo,type_e_variable_id_expected);
  930. exit;
  931. end;
  932. pointerconstn :
  933. begin
  934. { to support e.g. @tmypointer(0)^.data; see tests/tbs/tb0481 }
  935. if gotderef then
  936. result:=true
  937. else
  938. CGMessagePos(hp.fileinfo,type_e_no_assign_to_addr);
  939. exit;
  940. end;
  941. addrn :
  942. begin
  943. if gotderef then
  944. result:=true
  945. else
  946. CGMessagePos(hp.fileinfo,type_e_no_assign_to_addr);
  947. exit;
  948. end;
  949. calln :
  950. begin
  951. { check return type }
  952. case hp.resulttype.def.deftype of
  953. arraydef :
  954. begin
  955. { dynamic arrays are allowed when there is also a
  956. vec node }
  957. if is_dynamic_array(hp.resulttype.def) and
  958. gotvec then
  959. begin
  960. gotderef:=true;
  961. gotpointer:=true;
  962. end;
  963. end;
  964. pointerdef :
  965. gotpointer:=true;
  966. objectdef :
  967. gotclass:=is_class_or_interface(hp.resulttype.def);
  968. recorddef, { handle record like class it needs a subscription }
  969. classrefdef :
  970. gotclass:=true;
  971. end;
  972. { 1. if it returns a pointer and we've found a deref,
  973. 2. if it returns a class or record and a subscription or with is found }
  974. if (gotpointer and gotderef) or
  975. (gotclass and (gotsubscript or gotwith)) then
  976. result:=true
  977. else
  978. { Temp strings are stored in memory, for compatibility with
  979. delphi only }
  980. if (m_delphi in aktmodeswitches) and
  981. (valid_addr in opts) and
  982. (hp.resulttype.def.deftype=stringdef) then
  983. result:=true
  984. else
  985. CGMessagePos(hp.fileinfo,errmsg);
  986. exit;
  987. end;
  988. inlinen :
  989. begin
  990. if (valid_const in opts) and
  991. (tinlinenode(hp).inlinenumber in [in_typeof_x]) then
  992. result:=true
  993. else
  994. CGMessagePos(hp.fileinfo,type_e_variable_id_expected);
  995. exit;
  996. end;
  997. loadn :
  998. begin
  999. case tloadnode(hp).symtableentry.typ of
  1000. absolutevarsym,
  1001. globalvarsym,
  1002. localvarsym,
  1003. paravarsym :
  1004. begin
  1005. { loop counter? }
  1006. if not(Valid_Const in opts) and
  1007. (vo_is_loop_counter in tabstractvarsym(tloadnode(hp).symtableentry).varoptions) then
  1008. CGMessage1(parser_e_illegal_assignment_to_count_var,tloadnode(hp).symtableentry.realname);
  1009. { derefed pointer }
  1010. if (tabstractvarsym(tloadnode(hp).symtableentry).varspez=vs_const) then
  1011. begin
  1012. { allow p^:= constructions with p is const parameter }
  1013. if gotderef or (Valid_Const in opts) then
  1014. result:=true
  1015. else
  1016. CGMessagePos(tloadnode(hp).fileinfo,type_e_no_assign_to_const);
  1017. exit;
  1018. end;
  1019. { Are we at a with symtable, then we need to process the
  1020. withrefnode also to check for maybe a const load }
  1021. if (tloadnode(hp).symtable.symtabletype=withsymtable) then
  1022. begin
  1023. { continue with processing the withref node }
  1024. hp:=tnode(twithsymtable(tloadnode(hp).symtable).withrefnode);
  1025. gotwith:=true;
  1026. end
  1027. else
  1028. begin
  1029. result:=true;
  1030. exit;
  1031. end;
  1032. end;
  1033. typedconstsym :
  1034. begin
  1035. if ttypedconstsym(tloadnode(hp).symtableentry).is_writable then
  1036. result:=true
  1037. else
  1038. CGMessagePos(hp.fileinfo,type_e_no_assign_to_const);
  1039. exit;
  1040. end;
  1041. procsym :
  1042. begin
  1043. if (Valid_Const in opts) then
  1044. result:=true
  1045. else
  1046. CGMessagePos(hp.fileinfo,type_e_variable_id_expected);
  1047. exit;
  1048. end;
  1049. labelsym :
  1050. begin
  1051. if (Valid_Addr in opts) then
  1052. result:=true
  1053. else
  1054. CGMessagePos(hp.fileinfo,type_e_variable_id_expected);
  1055. exit;
  1056. end;
  1057. constsym:
  1058. begin
  1059. if (tconstsym(tloadnode(hp).symtableentry).consttyp=constresourcestring) and
  1060. (valid_addr in opts) then
  1061. result:=true
  1062. else
  1063. CGMessagePos(hp.fileinfo,type_e_variable_id_expected);
  1064. exit;
  1065. end;
  1066. else
  1067. begin
  1068. CGMessagePos(hp.fileinfo,type_e_variable_id_expected);
  1069. exit;
  1070. end;
  1071. end;
  1072. end;
  1073. else
  1074. begin
  1075. CGMessagePos(hp.fileinfo,type_e_variable_id_expected);
  1076. exit;
  1077. end;
  1078. end;
  1079. end;
  1080. end;
  1081. function valid_for_var(p:tnode):boolean;
  1082. begin
  1083. valid_for_var:=valid_for_assign(p,[]);
  1084. end;
  1085. function valid_for_formal_var(p : tnode) : boolean;
  1086. begin
  1087. valid_for_formal_var:=valid_for_assign(p,[valid_void]);
  1088. end;
  1089. function valid_for_formal_const(p : tnode) : boolean;
  1090. begin
  1091. valid_for_formal_const:=(p.resulttype.def.deftype=formaldef) or
  1092. valid_for_assign(p,[valid_void,valid_const,valid_property]);
  1093. end;
  1094. function valid_for_assignment(p:tnode):boolean;
  1095. begin
  1096. valid_for_assignment:=valid_for_assign(p,[valid_property]);
  1097. end;
  1098. function valid_for_addr(p : tnode) : boolean;
  1099. begin
  1100. result:=valid_for_assign(p,[valid_const,valid_addr,valid_void]);
  1101. end;
  1102. procedure var_para_allowed(var eq:tequaltype;def_from,def_to:Tdef);
  1103. begin
  1104. { Note: eq must be already valid, it will only be updated! }
  1105. case def_to.deftype of
  1106. formaldef :
  1107. begin
  1108. { all types can be passed to a formaldef }
  1109. eq:=te_equal;
  1110. end;
  1111. orddef :
  1112. begin
  1113. { allows conversion from word to integer and
  1114. byte to shortint, but only for TP7 compatibility }
  1115. if (m_tp7 in aktmodeswitches) and
  1116. (def_from.deftype=orddef) and
  1117. (def_from.size=def_to.size) then
  1118. eq:=te_convert_l1;
  1119. end;
  1120. arraydef :
  1121. begin
  1122. if is_open_array(def_to) and
  1123. is_dynamic_array(def_from) and
  1124. equal_defs(tarraydef(def_from).elementtype.def,tarraydef(def_to).elementtype.def) then
  1125. eq:=te_convert_l2;
  1126. end;
  1127. pointerdef :
  1128. begin
  1129. { an implicit pointer conversion is allowed }
  1130. if (def_from.deftype=pointerdef) then
  1131. eq:=te_convert_l1;
  1132. end;
  1133. stringdef :
  1134. begin
  1135. { all shortstrings are allowed, size is not important }
  1136. if is_shortstring(def_from) and
  1137. is_shortstring(def_to) then
  1138. eq:=te_equal;
  1139. end;
  1140. objectdef :
  1141. begin
  1142. { child objects can be also passed }
  1143. { in non-delphi mode, otherwise }
  1144. { they must match exactly, except }
  1145. { if they are objects }
  1146. if (def_from.deftype=objectdef) and
  1147. (
  1148. not(m_delphi in aktmodeswitches) or
  1149. (
  1150. (tobjectdef(def_from).objecttype=odt_object) and
  1151. (tobjectdef(def_to).objecttype=odt_object)
  1152. )
  1153. ) and
  1154. (tobjectdef(def_from).is_related(tobjectdef(def_to))) then
  1155. eq:=te_convert_l1;
  1156. end;
  1157. filedef :
  1158. begin
  1159. { an implicit file conversion is also allowed }
  1160. { from a typed file to an untyped one }
  1161. if (def_from.deftype=filedef) and
  1162. (tfiledef(def_from).filetyp = ft_typed) and
  1163. (tfiledef(def_to).filetyp = ft_untyped) then
  1164. eq:=te_convert_l1;
  1165. end;
  1166. end;
  1167. end;
  1168. procedure para_allowed(var eq:tequaltype;p:tcallparanode;def_to:tdef);
  1169. begin
  1170. { Note: eq must be already valid, it will only be updated! }
  1171. case def_to.deftype of
  1172. formaldef :
  1173. begin
  1174. { all types can be passed to a formaldef }
  1175. eq:=te_equal;
  1176. end;
  1177. stringdef :
  1178. begin
  1179. { to support ansi/long/wide strings in a proper way }
  1180. { string and string[10] are assumed as equal }
  1181. { when searching the correct overloaded procedure }
  1182. if (p.resulttype.def.deftype=stringdef) and
  1183. (tstringdef(def_to).string_typ=tstringdef(p.resulttype.def).string_typ) then
  1184. eq:=te_equal
  1185. else
  1186. { Passing a constant char to ansistring or shortstring or
  1187. a widechar to widestring then handle it as equal. }
  1188. if (p.left.nodetype=ordconstn) and
  1189. (
  1190. is_char(p.resulttype.def) and
  1191. (is_shortstring(def_to) or is_ansistring(def_to))
  1192. ) or
  1193. (
  1194. is_widechar(p.resulttype.def) and
  1195. is_widestring(def_to)
  1196. ) then
  1197. eq:=te_equal
  1198. end;
  1199. setdef :
  1200. begin
  1201. { set can also be a not yet converted array constructor }
  1202. if (p.resulttype.def.deftype=arraydef) and
  1203. (tarraydef(p.resulttype.def).IsConstructor) and
  1204. not(tarraydef(p.resulttype.def).IsVariant) then
  1205. eq:=te_equal;
  1206. end;
  1207. procvardef :
  1208. begin
  1209. { in tp7 mode proc -> procvar is allowed }
  1210. if (m_tp_procvar in aktmodeswitches) and
  1211. (p.left.nodetype=calln) and
  1212. (proc_to_procvar_equal(tprocdef(tcallnode(p.left).procdefinition),tprocvardef(def_to),true)>=te_equal) then
  1213. eq:=te_equal;
  1214. end;
  1215. end;
  1216. end;
  1217. {****************************************************************************
  1218. TCallCandidates
  1219. ****************************************************************************}
  1220. constructor tcallcandidates.create(sym:tprocsym;st:tsymtable;ppn:tnode;isprop,ignorevis : boolean);
  1221. var
  1222. j : integer;
  1223. pd : tprocdef;
  1224. hp : pcandidate;
  1225. found,
  1226. has_overload_directive : boolean;
  1227. topclassh : tobjectdef;
  1228. srsymtable : tsymtable;
  1229. srprocsym : tprocsym;
  1230. pt : tcallparanode;
  1231. begin
  1232. if not assigned(sym) then
  1233. internalerror(200411015);
  1234. FProcSym:=sym;
  1235. FProcs:=nil;
  1236. FProccnt:=0;
  1237. FProcvisiblecnt:=0;
  1238. FParanode:=ppn;
  1239. FAllowVariant:=true;
  1240. { determine length of parameter list }
  1241. pt:=tcallparanode(ppn);
  1242. FParalength:=0;
  1243. while assigned(pt) do
  1244. begin
  1245. inc(FParalength);
  1246. pt:=tcallparanode(pt.right);
  1247. end;
  1248. { when the definition has overload directive set, we search for
  1249. overloaded definitions in the class, this only needs to be done once
  1250. for class entries as the tree keeps always the same }
  1251. if (not sym.overloadchecked) and
  1252. (sym.owner.symtabletype=objectsymtable) and
  1253. (po_overload in sym.first_procdef.procoptions) then
  1254. search_class_overloads(sym);
  1255. { when the class passed is defined in this unit we
  1256. need to use the scope of that class. This is a trick
  1257. that can be used to access protected members in other
  1258. units. At least kylix supports it this way (PFV) }
  1259. if assigned(st) and
  1260. (st.symtabletype=objectsymtable) and
  1261. (st.defowner.owner.symtabletype in [globalsymtable,staticsymtable]) and
  1262. st.defowner.owner.iscurrentunit then
  1263. topclassh:=tobjectdef(st.defowner)
  1264. else
  1265. begin
  1266. if assigned(current_procinfo) then
  1267. topclassh:=current_procinfo.procdef._class
  1268. else
  1269. topclassh:=nil;
  1270. end;
  1271. { link all procedures which have the same # of parameters }
  1272. for j:=1 to sym.procdef_count do
  1273. begin
  1274. pd:=sym.procdef[j];
  1275. { Is the procdef visible? This needs to be checked on
  1276. procdef level since a symbol can contain both private and
  1277. public declarations. But the check should not be done
  1278. when the callnode is generated by a property
  1279. inherited overrides invisible anonymous inherited (FK) }
  1280. if isprop or ignorevis or
  1281. (pd.owner.symtabletype<>objectsymtable) or
  1282. pd.is_visible_for_object(topclassh) then
  1283. begin
  1284. { we have at least one procedure that is visible }
  1285. inc(FProcvisiblecnt);
  1286. { only when the # of parameter are supported by the
  1287. procedure }
  1288. if (FParalength>=pd.minparacount) and
  1289. ((po_varargs in pd.procoptions) or { varargs }
  1290. (FParalength<=pd.maxparacount)) then
  1291. proc_add(pd);
  1292. end;
  1293. end;
  1294. { remember if the procedure is declared with the overload directive,
  1295. it's information is still needed also after all procs are removed }
  1296. has_overload_directive:=(po_overload in sym.first_procdef.procoptions);
  1297. { when the definition has overload directive set, we search for
  1298. overloaded definitions in the symtablestack. The found
  1299. entries are only added to the procs list and not the procsym, because
  1300. the list can change in every situation }
  1301. if has_overload_directive and
  1302. (sym.owner.symtabletype<>objectsymtable) then
  1303. begin
  1304. srsymtable:=sym.owner.next;
  1305. while assigned(srsymtable) do
  1306. begin
  1307. if srsymtable.symtabletype in [localsymtable,staticsymtable,globalsymtable] then
  1308. begin
  1309. srprocsym:=tprocsym(srsymtable.speedsearch(sym.name,sym.speedvalue));
  1310. if assigned(srprocsym) and
  1311. (srprocsym.typ=procsym) then
  1312. begin
  1313. { if this visible procedure doesn't have overload we can stop
  1314. searching }
  1315. if not(po_overload in srprocsym.first_procdef.procoptions) and
  1316. srprocsym.first_procdef.is_visible_for_object(topclassh) then
  1317. break;
  1318. { process all overloaded definitions }
  1319. for j:=1 to srprocsym.procdef_count do
  1320. begin
  1321. pd:=srprocsym.procdef[j];
  1322. { only visible procedures need to be added }
  1323. if pd.is_visible_for_object(topclassh) then
  1324. begin
  1325. { only when the # of parameter are supported by the
  1326. procedure }
  1327. if (FParalength>=pd.minparacount) and
  1328. ((po_varargs in pd.procoptions) or { varargs }
  1329. (FParalength<=pd.maxparacount)) then
  1330. begin
  1331. found:=false;
  1332. hp:=FProcs;
  1333. while assigned(hp) do
  1334. begin
  1335. { Only compare visible parameters for the user }
  1336. if compare_paras(hp^.data.paras,pd.paras,cp_value_equal_const,[cpo_ignorehidden])>=te_equal then
  1337. begin
  1338. found:=true;
  1339. break;
  1340. end;
  1341. hp:=hp^.next;
  1342. end;
  1343. if not found then
  1344. proc_add(pd);
  1345. end;
  1346. end;
  1347. end;
  1348. end;
  1349. end;
  1350. srsymtable:=srsymtable.next;
  1351. end;
  1352. end;
  1353. end;
  1354. constructor tcallcandidates.create_operator(op:ttoken;ppn:tnode);
  1355. var
  1356. j : integer;
  1357. pd : tprocdef;
  1358. hp : pcandidate;
  1359. found : boolean;
  1360. srsymtable : tsymtable;
  1361. srprocsym : tprocsym;
  1362. pt : tcallparanode;
  1363. sv : cardinal;
  1364. begin
  1365. FProcSym:=nil;
  1366. FProcs:=nil;
  1367. FProccnt:=0;
  1368. FProcvisiblecnt:=0;
  1369. FParanode:=ppn;
  1370. FAllowVariant:=false;
  1371. { determine length of parameter list }
  1372. pt:=tcallparanode(ppn);
  1373. FParalength:=0;
  1374. while assigned(pt) do
  1375. begin
  1376. if pt.resulttype.def.deftype=variantdef then
  1377. FAllowVariant:=true;
  1378. inc(FParalength);
  1379. pt:=tcallparanode(pt.right);
  1380. end;
  1381. { we search all overloaded operator definitions in the symtablestack. The found
  1382. entries are only added to the procs list and not the procsym, because
  1383. the list can change in every situation }
  1384. sv:=getspeedvalue(overloaded_names[op]);
  1385. srsymtable:=symtablestack;
  1386. while assigned(srsymtable) do
  1387. begin
  1388. if srsymtable.symtabletype in [localsymtable,staticsymtable,globalsymtable] then
  1389. begin
  1390. srprocsym:=tprocsym(srsymtable.speedsearch(overloaded_names[op],sv));
  1391. if assigned(srprocsym) and
  1392. (srprocsym.typ=procsym) then
  1393. begin
  1394. { Store first procsym found }
  1395. if not assigned(FProcsym) then
  1396. FProcsym:=srprocsym;
  1397. { process all overloaded definitions }
  1398. for j:=1 to srprocsym.procdef_count do
  1399. begin
  1400. pd:=srprocsym.procdef[j];
  1401. { only when the # of parameter are supported by the
  1402. procedure }
  1403. if (FParalength>=pd.minparacount) and
  1404. (FParalength<=pd.maxparacount) then
  1405. begin
  1406. found:=false;
  1407. hp:=FProcs;
  1408. while assigned(hp) do
  1409. begin
  1410. { Only compare visible parameters for the user }
  1411. if compare_paras(hp^.data.paras,pd.paras,cp_value_equal_const,[cpo_ignorehidden])>=te_equal then
  1412. begin
  1413. found:=true;
  1414. break;
  1415. end;
  1416. hp:=hp^.next;
  1417. end;
  1418. if not found then
  1419. proc_add(pd);
  1420. end;
  1421. end;
  1422. end;
  1423. end;
  1424. srsymtable:=srsymtable.next;
  1425. end;
  1426. end;
  1427. destructor tcallcandidates.destroy;
  1428. var
  1429. hpnext,
  1430. hp : pcandidate;
  1431. begin
  1432. hp:=FProcs;
  1433. while assigned(hp) do
  1434. begin
  1435. hpnext:=hp^.next;
  1436. dispose(hp);
  1437. hp:=hpnext;
  1438. end;
  1439. end;
  1440. function tcallcandidates.proc_add(pd:tprocdef):pcandidate;
  1441. var
  1442. defaultparacnt : integer;
  1443. begin
  1444. { generate new candidate entry }
  1445. new(result);
  1446. fillchar(result^,sizeof(tcandidate),0);
  1447. result^.data:=pd;
  1448. result^.next:=FProcs;
  1449. FProcs:=result;
  1450. inc(FProccnt);
  1451. { Find last parameter, skip all default parameters
  1452. that are not passed. Ignore this skipping for varargs }
  1453. result^.firstparaidx:=pd.paras.count-1;
  1454. if not(po_varargs in pd.procoptions) then
  1455. begin
  1456. { ignore hidden parameters }
  1457. while (result^.firstparaidx>=0) and (vo_is_hidden_para in tparavarsym(pd.paras[result^.firstparaidx]).varoptions) do
  1458. dec(result^.firstparaidx);
  1459. defaultparacnt:=pd.maxparacount-FParalength;
  1460. if defaultparacnt>0 then
  1461. begin
  1462. if defaultparacnt>result^.firstparaidx+1 then
  1463. internalerror(200401141);
  1464. dec(result^.firstparaidx,defaultparacnt);
  1465. end;
  1466. end;
  1467. end;
  1468. procedure tcallcandidates.list(all:boolean);
  1469. var
  1470. hp : pcandidate;
  1471. begin
  1472. hp:=FProcs;
  1473. while assigned(hp) do
  1474. begin
  1475. if all or
  1476. (not hp^.invalid) then
  1477. MessagePos1(hp^.data.fileinfo,sym_h_param_list,hp^.data.fullprocname(false));
  1478. hp:=hp^.next;
  1479. end;
  1480. end;
  1481. {$ifdef EXTDEBUG}
  1482. procedure tcallcandidates.dump_info(lvl:longint);
  1483. function ParaTreeStr(p:tcallparanode):string;
  1484. begin
  1485. result:='';
  1486. while assigned(p) do
  1487. begin
  1488. if result<>'' then
  1489. result:=result+',';
  1490. result:=result+p.resulttype.def.typename;
  1491. p:=tcallparanode(p.right);
  1492. end;
  1493. end;
  1494. var
  1495. hp : pcandidate;
  1496. i : integer;
  1497. currpara : tparavarsym;
  1498. begin
  1499. if not CheckVerbosity(lvl) then
  1500. exit;
  1501. Comment(lvl+V_LineInfo,'Overloaded callnode: '+FProcSym.name+'('+ParaTreeStr(tcallparanode(FParaNode))+')');
  1502. hp:=FProcs;
  1503. while assigned(hp) do
  1504. begin
  1505. Comment(lvl,' '+hp^.data.fullprocname(false));
  1506. if (hp^.invalid) then
  1507. Comment(lvl,' invalid')
  1508. else
  1509. begin
  1510. Comment(lvl,' ex: '+tostr(hp^.exact_count)+
  1511. ' eq: '+tostr(hp^.equal_count)+
  1512. ' l1: '+tostr(hp^.cl1_count)+
  1513. ' l2: '+tostr(hp^.cl2_count)+
  1514. ' l3: '+tostr(hp^.cl3_count)+
  1515. ' oper: '+tostr(hp^.coper_count)+
  1516. ' ord: '+realtostr(hp^.ordinal_distance));
  1517. { Print parameters in left-right order }
  1518. for i:=0 to hp^.data.paras.count-1 do
  1519. begin
  1520. currpara:=tparavarsym(hp^.data.paras[i]);
  1521. if (vo_is_hidden_para in currpara.varoptions) then
  1522. Comment(lvl,' - '+currpara.vartype.def.typename+' : '+EqualTypeName[currpara.eqval]);
  1523. end;
  1524. end;
  1525. hp:=hp^.next;
  1526. end;
  1527. end;
  1528. {$endif EXTDEBUG}
  1529. procedure tcallcandidates.get_information;
  1530. var
  1531. hp : pcandidate;
  1532. currpara : tparavarsym;
  1533. paraidx : integer;
  1534. currparanr : byte;
  1535. rfh,rth : bestreal;
  1536. def_from,
  1537. def_to : tdef;
  1538. currpt,
  1539. pt : tcallparanode;
  1540. eq : tequaltype;
  1541. convtype : tconverttype;
  1542. pdoper : tprocdef;
  1543. releasecurrpt : boolean;
  1544. cdoptions : tcompare_defs_options;
  1545. begin
  1546. cdoptions:=[cdo_check_operator];
  1547. if FAllowVariant then
  1548. include(cdoptions,cdo_allow_variant);
  1549. { process all procs }
  1550. hp:=FProcs;
  1551. while assigned(hp) do
  1552. begin
  1553. { We compare parameters in reverse order (right to left),
  1554. the firstpara is already pointing to the last parameter
  1555. were we need to start comparing }
  1556. currparanr:=FParalength;
  1557. paraidx:=hp^.firstparaidx;
  1558. while (paraidx>=0) and (vo_is_hidden_para in tparavarsym(hp^.data.paras[paraidx]).varoptions) do
  1559. dec(paraidx);
  1560. pt:=tcallparanode(FParaNode);
  1561. while assigned(pt) and (paraidx>=0) do
  1562. begin
  1563. currpara:=tparavarsym(hp^.data.paras[paraidx]);
  1564. { currpt can be changed from loadn to calln when a procvar
  1565. is passed. This is to prevent that the change is permanent }
  1566. currpt:=pt;
  1567. releasecurrpt:=false;
  1568. { retrieve current parameter definitions to compares }
  1569. eq:=te_incompatible;
  1570. def_from:=currpt.resulttype.def;
  1571. def_to:=currpara.vartype.def;
  1572. if not(assigned(def_from)) then
  1573. internalerror(200212091);
  1574. if not(
  1575. assigned(def_to) or
  1576. ((po_varargs in hp^.data.procoptions) and
  1577. (currparanr>hp^.data.minparacount))
  1578. ) then
  1579. internalerror(200212092);
  1580. { Convert tp procvars when not expecting a procvar }
  1581. if (def_to.deftype<>procvardef) and
  1582. (currpt.left.resulttype.def.deftype=procvardef) then
  1583. begin
  1584. releasecurrpt:=true;
  1585. currpt:=tcallparanode(pt.getcopy);
  1586. if maybe_call_procvar(currpt.left,true) then
  1587. begin
  1588. currpt.resulttype:=currpt.left.resulttype;
  1589. def_from:=currpt.left.resulttype.def;
  1590. end;
  1591. end;
  1592. { varargs are always equal, but not exact }
  1593. if (po_varargs in hp^.data.procoptions) and
  1594. (currparanr>hp^.data.minparacount) then
  1595. begin
  1596. eq:=te_equal;
  1597. end
  1598. else
  1599. { same definition -> exact }
  1600. if (def_from=def_to) then
  1601. begin
  1602. eq:=te_exact;
  1603. end
  1604. else
  1605. { for value and const parameters check if a integer is constant or
  1606. included in other integer -> equal and calc ordinal_distance }
  1607. if not(currpara.varspez in [vs_var,vs_out]) and
  1608. is_integer(def_from) and
  1609. is_integer(def_to) and
  1610. is_in_limit(def_from,def_to) then
  1611. begin
  1612. eq:=te_equal;
  1613. hp^.ordinal_distance:=hp^.ordinal_distance+
  1614. abs(bestreal(torddef(def_from).low)-bestreal(torddef(def_to).low));
  1615. if (torddef(def_to).typ=u64bit) then
  1616. rth:=bestreal(qword(torddef(def_to).high))
  1617. else
  1618. rth:=bestreal(torddef(def_to).high);
  1619. if (torddef(def_from).typ=u64bit) then
  1620. rfh:=bestreal(qword(torddef(def_from).high))
  1621. else
  1622. rfh:=bestreal(torddef(def_from).high);
  1623. hp^.ordinal_distance:=hp^.ordinal_distance+abs(rth-rfh);
  1624. { Give wrong sign a small penalty, this is need to get a diffrence
  1625. from word->[longword,longint] }
  1626. if is_signed(def_from)<>is_signed(def_to) then
  1627. hp^.ordinal_distance:=hp^.ordinal_distance+1.0;
  1628. end
  1629. else
  1630. { generic type comparision }
  1631. begin
  1632. eq:=compare_defs_ext(def_from,def_to,currpt.left.nodetype,convtype,pdoper,cdoptions);
  1633. { when the types are not equal we need to check
  1634. some special case for parameter passing }
  1635. if (eq<te_equal) then
  1636. begin
  1637. if currpara.varspez in [vs_var,vs_out] then
  1638. begin
  1639. { para requires an equal type so the previous found
  1640. match was not good enough, reset to incompatible }
  1641. eq:=te_incompatible;
  1642. { var_para_allowed will return te_equal and te_convert_l1 to
  1643. make a difference for best matching }
  1644. var_para_allowed(eq,currpt.resulttype.def,currpara.vartype.def)
  1645. end
  1646. else
  1647. para_allowed(eq,currpt,def_to);
  1648. end;
  1649. end;
  1650. { when a procvar was changed to a call an exact much is
  1651. downgraded to equal. This way an overload call with the
  1652. procvar is choosen. See tb0471 (PFV) }
  1653. if (pt<>currpt) and (eq=te_exact) then
  1654. eq:=te_equal;
  1655. { increase correct counter }
  1656. case eq of
  1657. te_exact :
  1658. inc(hp^.exact_count);
  1659. te_equal :
  1660. inc(hp^.equal_count);
  1661. te_convert_l1 :
  1662. inc(hp^.cl1_count);
  1663. te_convert_l2 :
  1664. inc(hp^.cl2_count);
  1665. te_convert_l3 :
  1666. inc(hp^.cl3_count);
  1667. te_convert_operator :
  1668. inc(hp^.coper_count);
  1669. te_incompatible :
  1670. hp^.invalid:=true;
  1671. else
  1672. internalerror(200212072);
  1673. end;
  1674. { stop checking when an incompatible parameter is found }
  1675. if hp^.invalid then
  1676. begin
  1677. { store the current parameter info for
  1678. a nice error message when no procedure is found }
  1679. hp^.wrongparaidx:=paraidx;
  1680. hp^.wrongparanr:=currparanr;
  1681. break;
  1682. end;
  1683. {$ifdef EXTDEBUG}
  1684. { store equal in node tree for dump }
  1685. currpara.eqval:=eq;
  1686. {$endif EXTDEBUG}
  1687. { maybe release temp currpt }
  1688. if releasecurrpt then
  1689. currpt.free;
  1690. { next parameter in the call tree }
  1691. pt:=tcallparanode(pt.right);
  1692. { next parameter for definition, only goto next para
  1693. if we're out of the varargs }
  1694. if not(po_varargs in hp^.data.procoptions) or
  1695. (currparanr<=hp^.data.maxparacount) then
  1696. begin
  1697. { Ignore vs_hidden parameters }
  1698. repeat
  1699. dec(paraidx);
  1700. until (paraidx<0) or not(vo_is_hidden_para in tparavarsym(hp^.data.paras[paraidx]).varoptions);
  1701. end;
  1702. dec(currparanr);
  1703. end;
  1704. if not(hp^.invalid) and
  1705. (assigned(pt) or (paraidx>=0) or (currparanr<>0)) then
  1706. internalerror(200212141);
  1707. { next candidate }
  1708. hp:=hp^.next;
  1709. end;
  1710. end;
  1711. function is_better_candidate(currpd,bestpd:pcandidate):integer;
  1712. var
  1713. res : integer;
  1714. begin
  1715. {
  1716. Return values:
  1717. > 0 when currpd is better than bestpd
  1718. < 0 when bestpd is better than currpd
  1719. = 0 when both are equal
  1720. To choose the best candidate we use the following order:
  1721. - Incompatible flag
  1722. - (Smaller) Number of convert operator parameters.
  1723. - (Smaller) Number of convertlevel 2 parameters.
  1724. - (Smaller) Number of convertlevel 1 parameters.
  1725. - (Bigger) Number of exact parameters.
  1726. - (Smaller) Number of equal parameters.
  1727. - (Smaller) Total of ordinal distance. For example, the distance of a word
  1728. to a byte is 65535-255=65280.
  1729. }
  1730. if bestpd^.invalid then
  1731. begin
  1732. if currpd^.invalid then
  1733. res:=0
  1734. else
  1735. res:=1;
  1736. end
  1737. else
  1738. if currpd^.invalid then
  1739. res:=-1
  1740. else
  1741. begin
  1742. { less operator parameters? }
  1743. res:=(bestpd^.coper_count-currpd^.coper_count);
  1744. if (res=0) then
  1745. begin
  1746. { less cl3 parameters? }
  1747. res:=(bestpd^.cl3_count-currpd^.cl3_count);
  1748. if (res=0) then
  1749. begin
  1750. { less cl2 parameters? }
  1751. res:=(bestpd^.cl2_count-currpd^.cl2_count);
  1752. if (res=0) then
  1753. begin
  1754. { less cl1 parameters? }
  1755. res:=(bestpd^.cl1_count-currpd^.cl1_count);
  1756. if (res=0) then
  1757. begin
  1758. { more exact parameters? }
  1759. res:=(currpd^.exact_count-bestpd^.exact_count);
  1760. if (res=0) then
  1761. begin
  1762. { less equal parameters? }
  1763. res:=(bestpd^.equal_count-currpd^.equal_count);
  1764. if (res=0) then
  1765. begin
  1766. { smaller ordinal distance? }
  1767. if (currpd^.ordinal_distance<bestpd^.ordinal_distance) then
  1768. res:=1
  1769. else
  1770. if (currpd^.ordinal_distance>bestpd^.ordinal_distance) then
  1771. res:=-1
  1772. else
  1773. res:=0;
  1774. end;
  1775. end;
  1776. end;
  1777. end;
  1778. end;
  1779. end;
  1780. end;
  1781. is_better_candidate:=res;
  1782. end;
  1783. function tcallcandidates.choose_best(var bestpd:tabstractprocdef):integer;
  1784. var
  1785. besthpstart,
  1786. hp : pcandidate;
  1787. cntpd,
  1788. res : integer;
  1789. begin
  1790. {
  1791. Returns the number of candidates left and the
  1792. first candidate is returned in pdbest
  1793. }
  1794. { Setup the first procdef as best, only count it as a result
  1795. when it is valid }
  1796. bestpd:=FProcs^.data;
  1797. if FProcs^.invalid then
  1798. cntpd:=0
  1799. else
  1800. cntpd:=1;
  1801. if assigned(FProcs^.next) then
  1802. begin
  1803. besthpstart:=FProcs;
  1804. hp:=FProcs^.next;
  1805. while assigned(hp) do
  1806. begin
  1807. res:=is_better_candidate(hp,besthpstart);
  1808. if (res>0) then
  1809. begin
  1810. { hp is better, flag all procs to be incompatible }
  1811. while (besthpstart<>hp) do
  1812. begin
  1813. besthpstart^.invalid:=true;
  1814. besthpstart:=besthpstart^.next;
  1815. end;
  1816. { besthpstart is already set to hp }
  1817. bestpd:=besthpstart^.data;
  1818. cntpd:=1;
  1819. end
  1820. else
  1821. if (res<0) then
  1822. begin
  1823. { besthpstart is better, flag current hp to be incompatible }
  1824. hp^.invalid:=true;
  1825. end
  1826. else
  1827. begin
  1828. { res=0, both are valid }
  1829. if not hp^.invalid then
  1830. inc(cntpd);
  1831. end;
  1832. hp:=hp^.next;
  1833. end;
  1834. end;
  1835. result:=cntpd;
  1836. end;
  1837. procedure tcallcandidates.find_wrong_para;
  1838. var
  1839. currparanr : smallint;
  1840. hp : pcandidate;
  1841. pt : tcallparanode;
  1842. wrongpara : tparavarsym;
  1843. begin
  1844. { Only process the first overloaded procdef }
  1845. hp:=FProcs;
  1846. { Find callparanode corresponding to the argument }
  1847. pt:=tcallparanode(FParanode);
  1848. currparanr:=FParalength;
  1849. while assigned(pt) and
  1850. (currparanr>hp^.wrongparanr) do
  1851. begin
  1852. pt:=tcallparanode(pt.right);
  1853. dec(currparanr);
  1854. end;
  1855. if (currparanr<>hp^.wrongparanr) or
  1856. not assigned(pt) then
  1857. internalerror(200212094);
  1858. { Show error message, when it was a var or out parameter
  1859. guess that it is a missing typeconv }
  1860. wrongpara:=tparavarsym(hp^.data.paras[hp^.wrongparaidx]);
  1861. if wrongpara.varspez in [vs_var,vs_out] then
  1862. begin
  1863. { Maybe passing the correct type but passing a const to var parameter }
  1864. if (compare_defs(pt.resulttype.def,wrongpara.vartype.def,pt.nodetype)<>te_incompatible) and
  1865. not valid_for_var(pt.left) then
  1866. CGMessagePos(pt.left.fileinfo,type_e_variable_id_expected)
  1867. else
  1868. CGMessagePos2(pt.left.fileinfo,parser_e_call_by_ref_without_typeconv,
  1869. FullTypeName(pt.left.resulttype.def,wrongpara.vartype.def),
  1870. FullTypeName(wrongpara.vartype.def,pt.left.resulttype.def))
  1871. end
  1872. else
  1873. CGMessagePos3(pt.left.fileinfo,type_e_wrong_parameter_type,tostr(hp^.wrongparanr),
  1874. FullTypeName(pt.left.resulttype.def,wrongpara.vartype.def),
  1875. FullTypeName(wrongpara.vartype.def,pt.left.resulttype.def));
  1876. end;
  1877. end.
  1878. {
  1879. $Log$
  1880. Revision 1.114 2005-02-02 22:16:39 florian
  1881. * delphi assumes dyn. array access make expressions l-values because it's internally a pointer
  1882. Revision 1.113 2005/02/01 22:50:50 florian
  1883. * inherited; works now in delphi mode for private methods; looks like a delphi bug
  1884. Revision 1.112 2005/01/25 18:49:45 peter
  1885. * fix overload choosing with an qword overload
  1886. * allow to get the address of string temps in delphi mode
  1887. Revision 1.111 2005/01/19 23:23:12 florian
  1888. * taking the address of a resourcestring is allowed now
  1889. Revision 1.110 2005/01/19 22:19:41 peter
  1890. * unit mapping rewrite
  1891. * new derefmap added
  1892. Revision 1.109 2005/01/19 20:53:27 florian
  1893. * tmypointer(12435)^ is an l-value
  1894. Revision 1.108 2005/01/10 22:10:26 peter
  1895. * widestring patches from Alexey Barkovoy
  1896. Revision 1.107 2005/01/07 16:22:47 peter
  1897. * handle string-open array of (wide)char without variants
  1898. Revision 1.106 2004/12/05 12:28:10 peter
  1899. * procvar handling for tp procvar mode fixed
  1900. * proc to procvar moved from addrnode to typeconvnode
  1901. * inlininginfo is now allocated only for inline routines that
  1902. can be inlined, introduced a new flag po_has_inlining_info
  1903. Revision 1.105 2004/11/29 21:40:54 peter
  1904. * fixed wrong calculation for checking default parameters
  1905. Revision 1.104 2004/11/15 23:35:31 peter
  1906. * tparaitem removed, use tparavarsym instead
  1907. * parameter order is now calculated from paranr value in tparavarsym
  1908. Revision 1.103 2004/11/08 22:09:58 peter
  1909. * tvarsym splitted
  1910. Revision 1.102 2004/11/01 16:58:57 peter
  1911. * give IE instead of crash when no procsym is passed for calln
  1912. Revision 1.101 2004/10/24 11:44:28 peter
  1913. * small regvar fixes
  1914. * loadref parameter removed from concatcopy,incrrefcount,etc
  1915. Revision 1.100 2004/10/12 14:34:49 peter
  1916. * fixed visibility for procsyms
  1917. * fixed override check when there was no entry yet
  1918. Revision 1.99 2004/10/08 17:09:43 peter
  1919. * tvarsym.varregable added, split vo_regable from varoptions
  1920. Revision 1.98 2004/09/27 15:15:52 peter
  1921. * register loopvarsym for fields instead of record variable
  1922. * don't allow class fields as loop var
  1923. Revision 1.97 2004/09/13 20:28:27 peter
  1924. * for loop variable assignment is not allowed anymore
  1925. Revision 1.96 2004/08/22 11:24:09 peter
  1926. * fix error when passing constant to var parameter
  1927. Revision 1.95 2004/06/23 16:22:45 peter
  1928. * include unit name in error messages when types are the same
  1929. Revision 1.94 2004/06/20 08:55:29 florian
  1930. * logs truncated
  1931. Revision 1.93 2004/06/16 20:07:07 florian
  1932. * dwarf branch merged
  1933. Revision 1.92 2004/05/25 21:27:35 florian
  1934. * fixed another formal const problem caused by yesterday's changes
  1935. Revision 1.91 2004/05/24 21:24:40 florian
  1936. * properties are allowed as formal const parameters as well
  1937. Revision 1.90 2004/05/24 21:04:31 florian
  1938. * fixed more formal const problems
  1939. Revision 1.89 2004/05/24 20:39:41 florian
  1940. * stricter handling of formal const parameters and IE fixed
  1941. }