ncnv.pas 81 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337
  1. {
  2. $Id$
  3. Copyright (c) 2000-2002 by Florian Klaempfl
  4. Type checking and register allocation for type converting nodes
  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 ncnv;
  19. {$i fpcdefs.inc}
  20. interface
  21. uses
  22. node,
  23. symtype,symppu,
  24. defutil,defcmp,
  25. nld
  26. {$ifdef Delphi}
  27. ,dmisc
  28. {$endif}
  29. ;
  30. type
  31. ttypeconvnode = class(tunarynode)
  32. totype : ttype;
  33. convtype : tconverttype;
  34. constructor create(node : tnode;const t : ttype);virtual;
  35. constructor create_explicit(node : tnode;const t : ttype);
  36. constructor ppuload(t:tnodetype;ppufile:tcompilerppufile);override;
  37. procedure ppuwrite(ppufile:tcompilerppufile);override;
  38. procedure derefimpl;override;
  39. function getcopy : tnode;override;
  40. function pass_1 : tnode;override;
  41. function det_resulttype:tnode;override;
  42. procedure mark_write;override;
  43. function docompare(p: tnode) : boolean; override;
  44. private
  45. function resulttype_int_to_int : tnode;
  46. function resulttype_cord_to_pointer : tnode;
  47. function resulttype_chararray_to_string : tnode;
  48. function resulttype_string_to_chararray : tnode;
  49. function resulttype_string_to_string : tnode;
  50. function resulttype_char_to_string : tnode;
  51. function resulttype_char_to_chararray : tnode;
  52. function resulttype_int_to_real : tnode;
  53. function resulttype_real_to_real : tnode;
  54. function resulttype_real_to_currency : tnode;
  55. function resulttype_cchar_to_pchar : tnode;
  56. function resulttype_cstring_to_pchar : tnode;
  57. function resulttype_char_to_char : tnode;
  58. function resulttype_arrayconstructor_to_set : tnode;
  59. function resulttype_pchar_to_string : tnode;
  60. function resulttype_interface_to_guid : tnode;
  61. function resulttype_dynarray_to_openarray : tnode;
  62. function resulttype_pwchar_to_string : tnode;
  63. function resulttype_variant_to_dynarray : tnode;
  64. function resulttype_dynarray_to_variant : tnode;
  65. function resulttype_call_helper(c : tconverttype) : tnode;
  66. protected
  67. function first_int_to_int : tnode;virtual;
  68. function first_cstring_to_pchar : tnode;virtual;
  69. function first_string_to_chararray : tnode;virtual;
  70. function first_char_to_string : tnode;virtual;
  71. function first_nothing : tnode;virtual;
  72. function first_array_to_pointer : tnode;virtual;
  73. function first_int_to_real : tnode;virtual;
  74. function first_real_to_real : tnode;virtual;
  75. function first_pointer_to_array : tnode;virtual;
  76. function first_cchar_to_pchar : tnode;virtual;
  77. function first_bool_to_int : tnode;virtual;
  78. function first_int_to_bool : tnode;virtual;
  79. function first_bool_to_bool : tnode;virtual;
  80. function first_proc_to_procvar : tnode;virtual;
  81. function first_load_smallset : tnode;virtual;
  82. function first_cord_to_pointer : tnode;virtual;
  83. function first_ansistring_to_pchar : tnode;virtual;
  84. function first_arrayconstructor_to_set : tnode;virtual;
  85. function first_class_to_intf : tnode;virtual;
  86. function first_char_to_char : tnode;virtual;
  87. function first_call_helper(c : tconverttype) : tnode;
  88. { these wrapper are necessary, because the first_* stuff is called }
  89. { through a table. Without the wrappers override wouldn't have }
  90. { any effect }
  91. function _first_int_to_int : tnode;
  92. function _first_cstring_to_pchar : tnode;
  93. function _first_string_to_chararray : tnode;
  94. function _first_char_to_string : tnode;
  95. function _first_nothing : tnode;
  96. function _first_array_to_pointer : tnode;
  97. function _first_int_to_real : tnode;
  98. function _first_real_to_real: tnode;
  99. function _first_pointer_to_array : tnode;
  100. function _first_cchar_to_pchar : tnode;
  101. function _first_bool_to_int : tnode;
  102. function _first_int_to_bool : tnode;
  103. function _first_bool_to_bool : tnode;
  104. function _first_proc_to_procvar : tnode;
  105. function _first_load_smallset : tnode;
  106. function _first_cord_to_pointer : tnode;
  107. function _first_ansistring_to_pchar : tnode;
  108. function _first_arrayconstructor_to_set : tnode;
  109. function _first_class_to_intf : tnode;
  110. function _first_char_to_char : tnode;
  111. procedure second_int_to_int;virtual;abstract;
  112. procedure second_string_to_string;virtual;abstract;
  113. procedure second_cstring_to_pchar;virtual;abstract;
  114. procedure second_string_to_chararray;virtual;abstract;
  115. procedure second_array_to_pointer;virtual;abstract;
  116. procedure second_pointer_to_array;virtual;abstract;
  117. procedure second_chararray_to_string;virtual;abstract;
  118. procedure second_char_to_string;virtual;abstract;
  119. procedure second_int_to_real;virtual;abstract;
  120. procedure second_real_to_real;virtual;abstract;
  121. procedure second_cord_to_pointer;virtual;abstract;
  122. procedure second_proc_to_procvar;virtual;abstract;
  123. procedure second_bool_to_int;virtual;abstract;
  124. procedure second_int_to_bool;virtual;abstract;
  125. procedure second_bool_to_bool;virtual;abstract;
  126. procedure second_load_smallset;virtual;abstract;
  127. procedure second_ansistring_to_pchar;virtual;abstract;
  128. procedure second_class_to_intf;virtual;abstract;
  129. procedure second_char_to_char;virtual;abstract;
  130. procedure second_nothing; virtual;abstract;
  131. end;
  132. ttypeconvnodeclass = class of ttypeconvnode;
  133. tasnode = class(tbinarynode)
  134. constructor create(l,r : tnode);virtual;
  135. function pass_1 : tnode;override;
  136. function det_resulttype:tnode;override;
  137. function getcopy: tnode;override;
  138. destructor destroy; override;
  139. protected
  140. call: tnode;
  141. end;
  142. tasnodeclass = class of tasnode;
  143. tisnode = class(tbinarynode)
  144. constructor create(l,r : tnode);virtual;
  145. function pass_1 : tnode;override;
  146. function det_resulttype:tnode;override;
  147. procedure pass_2;override;
  148. end;
  149. tisnodeclass = class of tisnode;
  150. var
  151. ctypeconvnode : ttypeconvnodeclass;
  152. casnode : tasnodeclass;
  153. cisnode : tisnodeclass;
  154. procedure inserttypeconv(var p:tnode;const t:ttype);
  155. procedure inserttypeconv_explicit(var p:tnode;const t:ttype);
  156. procedure arrayconstructor_to_set(var p : tnode);
  157. implementation
  158. uses
  159. globtype,systems,tokens,
  160. cutils,verbose,globals,widestr,
  161. symconst,symdef,symsym,symtable,
  162. ncon,ncal,nset,nadd,ninl,nmem,nmat,
  163. cginfo,cgbase,
  164. htypechk,pass_1,cpubase,cpuinfo;
  165. {*****************************************************************************
  166. Helpers
  167. *****************************************************************************}
  168. procedure inserttypeconv(var p:tnode;const t:ttype);
  169. begin
  170. if not assigned(p.resulttype.def) then
  171. begin
  172. resulttypepass(p);
  173. if codegenerror then
  174. exit;
  175. end;
  176. { don't insert obsolete type conversions }
  177. if equal_defs(p.resulttype.def,t.def) and
  178. not ((p.resulttype.def.deftype=setdef) and
  179. (tsetdef(p.resulttype.def).settype <>
  180. tsetdef(t.def).settype)) then
  181. begin
  182. p.resulttype:=t;
  183. end
  184. else
  185. begin
  186. p:=ctypeconvnode.create(p,t);
  187. resulttypepass(p);
  188. end;
  189. end;
  190. procedure inserttypeconv_explicit(var p:tnode;const t:ttype);
  191. begin
  192. if not assigned(p.resulttype.def) then
  193. begin
  194. resulttypepass(p);
  195. if codegenerror then
  196. exit;
  197. end;
  198. { don't insert obsolete type conversions }
  199. if equal_defs(p.resulttype.def,t.def) and
  200. not ((p.resulttype.def.deftype=setdef) and
  201. (tsetdef(p.resulttype.def).settype <>
  202. tsetdef(t.def).settype)) then
  203. begin
  204. p.resulttype:=t;
  205. end
  206. else
  207. begin
  208. p:=ctypeconvnode.create_explicit(p,t);
  209. resulttypepass(p);
  210. end;
  211. end;
  212. {*****************************************************************************
  213. Array constructor to Set Conversion
  214. *****************************************************************************}
  215. procedure arrayconstructor_to_set(var p : tnode);
  216. var
  217. constp : tsetconstnode;
  218. buildp,
  219. p2,p3,p4 : tnode;
  220. htype : ttype;
  221. constset : Pconstset;
  222. constsetlo,
  223. constsethi : longint;
  224. procedure update_constsethi(t:ttype);
  225. begin
  226. if ((t.def.deftype=orddef) and
  227. (torddef(t.def).high>=constsethi)) then
  228. begin
  229. constsethi:=torddef(t.def).high;
  230. if htype.def=nil then
  231. begin
  232. if (constsethi>255) or
  233. (torddef(t.def).low<0) then
  234. htype:=u8bittype
  235. else
  236. htype:=t;
  237. end;
  238. if constsethi>255 then
  239. constsethi:=255;
  240. end
  241. else if ((t.def.deftype=enumdef) and
  242. (tenumdef(t.def).max>=constsethi)) then
  243. begin
  244. if htype.def=nil then
  245. htype:=t;
  246. constsethi:=tenumdef(t.def).max;
  247. end;
  248. end;
  249. procedure do_set(pos : longint);
  250. {$ifdef oldset}
  251. var
  252. mask,l : longint;
  253. {$endif}
  254. begin
  255. if (pos and not $ff)<>0 then
  256. Message(parser_e_illegal_set_expr);
  257. if pos>constsethi then
  258. constsethi:=pos;
  259. if pos<constsetlo then
  260. constsetlo:=pos;
  261. {$ifdef oldset}
  262. { to do this correctly we use the 32bit array }
  263. l:=pos shr 5;
  264. mask:=1 shl (pos mod 32);
  265. { do we allow the same twice }
  266. if (pconst32bitset(constset)^[l] and mask)<>0 then
  267. Message(parser_e_illegal_set_expr);
  268. pconst32bitset(constset)^[l]:=pconst32bitset(constset)^[l] or mask;
  269. {$else}
  270. if pos in constset^ then
  271. Message(parser_e_illegal_set_expr);
  272. include(constset^,pos);
  273. {$endif}
  274. end;
  275. var
  276. l : Longint;
  277. lr,hr : TConstExprInt;
  278. hp : tarrayconstructornode;
  279. begin
  280. if p.nodetype<>arrayconstructorn then
  281. internalerror(200205105);
  282. new(constset);
  283. {$ifdef oldset}
  284. FillChar(constset^,sizeof(constset^),0);
  285. {$else}
  286. constset^:=[];
  287. {$endif}
  288. htype.reset;
  289. constsetlo:=0;
  290. constsethi:=0;
  291. constp:=csetconstnode.create(nil,htype);
  292. constp.value_set:=constset;
  293. buildp:=constp;
  294. hp:=tarrayconstructornode(p);
  295. if assigned(hp.left) then
  296. begin
  297. while assigned(hp) do
  298. begin
  299. p4:=nil; { will contain the tree to create the set }
  300. {split a range into p2 and p3 }
  301. if hp.left.nodetype=arrayconstructorrangen then
  302. begin
  303. p2:=tarrayconstructorrangenode(hp.left).left;
  304. p3:=tarrayconstructorrangenode(hp.left).right;
  305. tarrayconstructorrangenode(hp.left).left:=nil;
  306. tarrayconstructorrangenode(hp.left).right:=nil;
  307. end
  308. else
  309. begin
  310. p2:=hp.left;
  311. hp.left:=nil;
  312. p3:=nil;
  313. end;
  314. resulttypepass(p2);
  315. if assigned(p3) then
  316. resulttypepass(p3);
  317. if codegenerror then
  318. break;
  319. case p2.resulttype.def.deftype of
  320. enumdef,
  321. orddef:
  322. begin
  323. getrange(p2.resulttype.def,lr,hr);
  324. if assigned(p3) then
  325. begin
  326. { this isn't good, you'll get problems with
  327. type t010 = 0..10;
  328. ts = set of t010;
  329. var s : ts;b : t010
  330. begin s:=[1,2,b]; end.
  331. if is_integer(p3^.resulttype.def) then
  332. begin
  333. inserttypeconv(p3,u8bitdef);
  334. end;
  335. }
  336. if assigned(htype.def) and not(equal_defs(htype.def,p3.resulttype.def)) then
  337. begin
  338. aktfilepos:=p3.fileinfo;
  339. CGMessage(type_e_typeconflict_in_set);
  340. end
  341. else
  342. begin
  343. if (p2.nodetype=ordconstn) and (p3.nodetype=ordconstn) then
  344. begin
  345. if not(is_integer(p3.resulttype.def)) then
  346. htype:=p3.resulttype
  347. else
  348. begin
  349. inserttypeconv(p3,u8bittype);
  350. inserttypeconv(p2,u8bittype);
  351. end;
  352. for l:=tordconstnode(p2).value to tordconstnode(p3).value do
  353. do_set(l);
  354. p2.free;
  355. p3.free;
  356. end
  357. else
  358. begin
  359. update_constsethi(p2.resulttype);
  360. inserttypeconv(p2,htype);
  361. update_constsethi(p3.resulttype);
  362. inserttypeconv(p3,htype);
  363. if assigned(htype.def) then
  364. inserttypeconv(p3,htype)
  365. else
  366. inserttypeconv(p3,u8bittype);
  367. p4:=csetelementnode.create(p2,p3);
  368. end;
  369. end;
  370. end
  371. else
  372. begin
  373. { Single value }
  374. if p2.nodetype=ordconstn then
  375. begin
  376. if not(is_integer(p2.resulttype.def)) then
  377. update_constsethi(p2.resulttype)
  378. else
  379. inserttypeconv(p2,u8bittype);
  380. do_set(tordconstnode(p2).value);
  381. p2.free;
  382. end
  383. else
  384. begin
  385. update_constsethi(p2.resulttype);
  386. if assigned(htype.def) then
  387. inserttypeconv(p2,htype)
  388. else
  389. inserttypeconv(p2,u8bittype);
  390. p4:=csetelementnode.create(p2,nil);
  391. end;
  392. end;
  393. end;
  394. stringdef :
  395. begin
  396. { if we've already set elements which are constants }
  397. { throw an error }
  398. if ((htype.def=nil) and assigned(buildp)) or
  399. not(is_char(htype.def)) then
  400. CGMessage(type_e_typeconflict_in_set)
  401. else
  402. for l:=1 to length(pstring(tstringconstnode(p2).value_str)^) do
  403. do_set(ord(pstring(tstringconstnode(p2).value_str)^[l]));
  404. if htype.def=nil then
  405. htype:=cchartype;
  406. p2.free;
  407. end;
  408. else
  409. CGMessage(type_e_ordinal_expr_expected);
  410. end;
  411. { insert the set creation tree }
  412. if assigned(p4) then
  413. buildp:=caddnode.create(addn,buildp,p4);
  414. { load next and dispose current node }
  415. p2:=hp;
  416. hp:=tarrayconstructornode(tarrayconstructornode(p2).right);
  417. tarrayconstructornode(p2).right:=nil;
  418. p2.free;
  419. end;
  420. if (htype.def=nil) then
  421. htype:=u8bittype;
  422. end
  423. else
  424. begin
  425. { empty set [], only remove node }
  426. p.free;
  427. end;
  428. { set the initial set type }
  429. constp.resulttype.setdef(tsetdef.create(htype,constsethi));
  430. { determine the resulttype for the tree }
  431. resulttypepass(buildp);
  432. { set the new tree }
  433. p:=buildp;
  434. end;
  435. {*****************************************************************************
  436. TTYPECONVNODE
  437. *****************************************************************************}
  438. constructor ttypeconvnode.create(node : tnode;const t:ttype);
  439. begin
  440. inherited create(typeconvn,node);
  441. convtype:=tc_not_possible;
  442. totype:=t;
  443. if t.def=nil then
  444. internalerror(200103281);
  445. set_file_line(node);
  446. end;
  447. constructor ttypeconvnode.create_explicit(node : tnode;const t:ttype);
  448. begin
  449. self.create(node,t);
  450. include(flags,nf_explicit);
  451. end;
  452. constructor ttypeconvnode.ppuload(t:tnodetype;ppufile:tcompilerppufile);
  453. begin
  454. inherited ppuload(t,ppufile);
  455. ppufile.gettype(totype);
  456. convtype:=tconverttype(ppufile.getbyte);
  457. end;
  458. procedure ttypeconvnode.ppuwrite(ppufile:tcompilerppufile);
  459. begin
  460. inherited ppuwrite(ppufile);
  461. ppufile.puttype(totype);
  462. ppufile.putbyte(byte(convtype));
  463. end;
  464. procedure ttypeconvnode.derefimpl;
  465. begin
  466. inherited derefimpl;
  467. totype.resolve;
  468. end;
  469. function ttypeconvnode.getcopy : tnode;
  470. var
  471. n : ttypeconvnode;
  472. begin
  473. n:=ttypeconvnode(inherited getcopy);
  474. n.convtype:=convtype;
  475. getcopy:=n;
  476. end;
  477. function ttypeconvnode.resulttype_cord_to_pointer : tnode;
  478. var
  479. t : tnode;
  480. begin
  481. result:=nil;
  482. if left.nodetype=ordconstn then
  483. begin
  484. { check if we have a valid pointer constant (JM) }
  485. if (sizeof(pointer) > sizeof(TConstPtrUInt)) then
  486. if (sizeof(TConstPtrUInt) = 4) then
  487. begin
  488. if (tordconstnode(left).value < low(longint)) or
  489. (tordconstnode(left).value > high(cardinal)) then
  490. CGMessage(parser_e_range_check_error);
  491. end
  492. else if (sizeof(TConstPtrUInt) = 8) then
  493. begin
  494. if (tordconstnode(left).value < low(int64)) or
  495. (tordconstnode(left).value > high(qword)) then
  496. CGMessage(parser_e_range_check_error);
  497. end
  498. else
  499. internalerror(2001020801);
  500. t:=cpointerconstnode.create(TConstPtrUInt(tordconstnode(left).value),resulttype);
  501. result:=t;
  502. end
  503. else
  504. internalerror(200104023);
  505. end;
  506. function ttypeconvnode.resulttype_chararray_to_string : tnode;
  507. begin
  508. result := ccallnode.createinternres(
  509. 'fpc_chararray_to_'+tstringdef(resulttype.def).stringtypname,
  510. ccallparanode.create(left,nil),resulttype);
  511. left := nil;
  512. end;
  513. function ttypeconvnode.resulttype_string_to_chararray : tnode;
  514. var
  515. arrsize: longint;
  516. begin
  517. with tarraydef(resulttype.def) do
  518. begin
  519. if highrange<lowrange then
  520. internalerror(75432653);
  521. arrsize := highrange-lowrange+1;
  522. end;
  523. if (left.nodetype = stringconstn) and
  524. { left.length+1 since there's always a terminating #0 character (JM) }
  525. (tstringconstnode(left).len+1 >= arrsize) and
  526. (tstringdef(left.resulttype.def).string_typ=st_shortstring) then
  527. begin
  528. { handled separately }
  529. result := nil;
  530. exit;
  531. end;
  532. result := ccallnode.createinternres(
  533. 'fpc_'+tstringdef(left.resulttype.def).stringtypname+
  534. '_to_chararray',ccallparanode.create(left,ccallparanode.create(
  535. cordconstnode.create(arrsize,s32bittype,true),nil)),resulttype);
  536. left := nil;
  537. end;
  538. function ttypeconvnode.resulttype_string_to_string : tnode;
  539. var
  540. procname: string[31];
  541. stringpara : tcallparanode;
  542. pw : pcompilerwidestring;
  543. pc : pchar;
  544. begin
  545. result:=nil;
  546. if left.nodetype=stringconstn then
  547. begin
  548. { convert ascii 2 unicode }
  549. if (tstringdef(resulttype.def).string_typ=st_widestring) and
  550. (tstringconstnode(left).st_type in [st_ansistring,st_shortstring,st_longstring]) then
  551. begin
  552. initwidestring(pw);
  553. ascii2unicode(tstringconstnode(left).value_str,tstringconstnode(left).len,pw);
  554. ansistringdispose(tstringconstnode(left).value_str,tstringconstnode(left).len);
  555. pcompilerwidestring(tstringconstnode(left).value_str):=pw;
  556. end
  557. else
  558. { convert unicode 2 ascii }
  559. if (tstringconstnode(left).st_type=st_widestring) and
  560. (tstringdef(resulttype.def).string_typ in [st_ansistring,st_shortstring,st_longstring]) then
  561. begin
  562. pw:=pcompilerwidestring(tstringconstnode(left).value_str);
  563. getmem(pc,getlengthwidestring(pw)+1);
  564. unicode2ascii(pw,pc);
  565. donewidestring(pw);
  566. tstringconstnode(left).value_str:=pc;
  567. end;
  568. tstringconstnode(left).st_type:=tstringdef(resulttype.def).string_typ;
  569. tstringconstnode(left).resulttype:=resulttype;
  570. result:=left;
  571. left:=nil;
  572. end
  573. else
  574. begin
  575. { get the correct procedure name }
  576. procname := 'fpc_'+tstringdef(left.resulttype.def).stringtypname+
  577. '_to_'+tstringdef(resulttype.def).stringtypname;
  578. { create parameter (and remove left node from typeconvnode }
  579. { since it's reused as parameter) }
  580. stringpara := ccallparanode.create(left,nil);
  581. left := nil;
  582. { when converting to shortstrings, we have to pass high(destination) too }
  583. if (tstringdef(resulttype.def).string_typ = st_shortstring) then
  584. stringpara.right := ccallparanode.create(cinlinenode.create(
  585. in_high_x,false,self.getcopy),nil);
  586. { and create the callnode }
  587. result := ccallnode.createinternres(procname,stringpara,resulttype);
  588. end;
  589. end;
  590. function ttypeconvnode.resulttype_char_to_string : tnode;
  591. var
  592. procname: string[31];
  593. para : tcallparanode;
  594. hp : tstringconstnode;
  595. ws : pcompilerwidestring;
  596. begin
  597. result:=nil;
  598. if left.nodetype=ordconstn then
  599. begin
  600. if tstringdef(resulttype.def).string_typ=st_widestring then
  601. begin
  602. initwidestring(ws);
  603. concatwidestringchar(ws,tcompilerwidechar(chr(tordconstnode(left).value)));
  604. hp:=cstringconstnode.createwstr(ws);
  605. donewidestring(ws);
  606. end
  607. else
  608. hp:=cstringconstnode.createstr(chr(tordconstnode(left).value),tstringdef(resulttype.def).string_typ);
  609. result:=hp;
  610. end
  611. else
  612. { shortstrings are handled 'inline' }
  613. if tstringdef(resulttype.def).string_typ <> st_shortstring then
  614. begin
  615. { create the parameter }
  616. para := ccallparanode.create(left,nil);
  617. left := nil;
  618. { and the procname }
  619. procname := 'fpc_char_to_' +tstringdef(resulttype.def).stringtypname;
  620. { and finally the call }
  621. result := ccallnode.createinternres(procname,para,resulttype);
  622. end
  623. else
  624. begin
  625. { create word(byte(char) shl 8 or 1) for litte endian machines }
  626. { and word(byte(char) or 256) for big endian machines }
  627. left := ctypeconvnode.create_explicit(left,u8bittype);
  628. if (target_info.endian = endian_little) then
  629. left := caddnode.create(orn,
  630. cshlshrnode.create(shln,left,cordconstnode.create(8,s32bittype,false)),
  631. cordconstnode.create(1,s32bittype,false))
  632. else
  633. left := caddnode.create(orn,left,
  634. cordconstnode.create(1 shl 8,s32bittype,false));
  635. left := ctypeconvnode.create_explicit(left,u16bittype);
  636. resulttypepass(left);
  637. end;
  638. end;
  639. function ttypeconvnode.resulttype_char_to_chararray : tnode;
  640. begin
  641. if resulttype.def.size <> 1 then
  642. begin
  643. { convert first to string, then to chararray }
  644. inserttypeconv(left,cshortstringtype);
  645. inserttypeconv(left,resulttype);
  646. result:=left;
  647. left := nil;
  648. exit;
  649. end;
  650. result := nil;
  651. end;
  652. function ttypeconvnode.resulttype_char_to_char : tnode;
  653. var
  654. hp : tordconstnode;
  655. begin
  656. result:=nil;
  657. if left.nodetype=ordconstn then
  658. begin
  659. if (torddef(resulttype.def).typ=uchar) and
  660. (torddef(left.resulttype.def).typ=uwidechar) then
  661. begin
  662. hp:=cordconstnode.create(
  663. ord(unicode2asciichar(tcompilerwidechar(tordconstnode(left).value))),
  664. cchartype,true);
  665. result:=hp;
  666. end
  667. else if (torddef(resulttype.def).typ=uwidechar) and
  668. (torddef(left.resulttype.def).typ=uchar) then
  669. begin
  670. hp:=cordconstnode.create(
  671. asciichar2unicode(chr(tordconstnode(left).value)),
  672. cwidechartype,true);
  673. result:=hp;
  674. end
  675. else
  676. internalerror(200105131);
  677. exit;
  678. end;
  679. end;
  680. function ttypeconvnode.resulttype_int_to_int : tnode;
  681. var
  682. v : TConstExprInt;
  683. begin
  684. result:=nil;
  685. if left.nodetype=ordconstn then
  686. begin
  687. v:=tordconstnode(left).value;
  688. if is_currency(resulttype.def) then
  689. v:=v*10000;
  690. if (resulttype.def.deftype=pointerdef) then
  691. result:=cpointerconstnode.create(v,resulttype)
  692. else
  693. begin
  694. if is_currency(left.resulttype.def) then
  695. v:=v div 10000;
  696. result:=cordconstnode.create(v,resulttype,false);
  697. end;
  698. end
  699. else if left.nodetype=pointerconstn then
  700. begin
  701. v:=tpointerconstnode(left).value;
  702. if (resulttype.def.deftype=pointerdef) then
  703. result:=cpointerconstnode.create(v,resulttype)
  704. else
  705. begin
  706. if is_currency(resulttype.def) then
  707. v:=v*10000;
  708. result:=cordconstnode.create(v,resulttype,false);
  709. end;
  710. end
  711. else
  712. begin
  713. { multiply by 10000 for currency. We need to use getcopy to pass
  714. the argument because the current node is always disposed. Only
  715. inserting the multiply in the left node is not possible because
  716. it'll get in an infinite loop to convert int->currency }
  717. if is_currency(resulttype.def) then
  718. begin
  719. result:=caddnode.create(muln,getcopy,cordconstnode.create(10000,resulttype,false));
  720. include(result.flags,nf_is_currency);
  721. end
  722. else if is_currency(left.resulttype.def) then
  723. begin
  724. result:=cmoddivnode.create(divn,getcopy,cordconstnode.create(10000,resulttype,false));
  725. include(result.flags,nf_is_currency);
  726. end;
  727. end;
  728. end;
  729. function ttypeconvnode.resulttype_int_to_real : tnode;
  730. var
  731. rv : bestreal;
  732. begin
  733. result:=nil;
  734. if left.nodetype=ordconstn then
  735. begin
  736. rv:=tordconstnode(left).value;
  737. if is_currency(resulttype.def) then
  738. rv:=rv*10000.0
  739. else if is_currency(left.resulttype.def) then
  740. rv:=rv/10000.0;
  741. result:=crealconstnode.create(rv,resulttype);
  742. end
  743. else
  744. begin
  745. { multiply by 10000 for currency. We need to use getcopy to pass
  746. the argument because the current node is always disposed. Only
  747. inserting the multiply in the left node is not possible because
  748. it'll get in an infinite loop to convert int->currency }
  749. if is_currency(resulttype.def) then
  750. begin
  751. result:=caddnode.create(muln,getcopy,crealconstnode.create(10000.0,resulttype));
  752. include(result.flags,nf_is_currency);
  753. end
  754. else if is_currency(left.resulttype.def) then
  755. begin
  756. result:=caddnode.create(slashn,getcopy,crealconstnode.create(10000.0,resulttype));
  757. include(result.flags,nf_is_currency);
  758. end;
  759. end;
  760. end;
  761. function ttypeconvnode.resulttype_real_to_currency : tnode;
  762. begin
  763. if not is_currency(resulttype.def) then
  764. internalerror(200304221);
  765. result:=nil;
  766. left:=caddnode.create(muln,left,crealconstnode.create(10000.0,left.resulttype));
  767. include(left.flags,nf_is_currency);
  768. resulttypepass(left);
  769. { Convert constants directly, else call Round() }
  770. if left.nodetype=realconstn then
  771. result:=cordconstnode.create(round(trealconstnode(left).value_real),resulttype,false)
  772. else
  773. result:=ccallnode.createinternres('fpc_round',
  774. ccallparanode.create(left,nil),resulttype);
  775. left:=nil;
  776. end;
  777. function ttypeconvnode.resulttype_real_to_real : tnode;
  778. begin
  779. result:=nil;
  780. if is_currency(left.resulttype.def) and not(is_currency(resulttype.def)) then
  781. begin
  782. left:=caddnode.create(slashn,left,crealconstnode.create(10000.0,left.resulttype));
  783. include(left.flags,nf_is_currency);
  784. resulttypepass(left);
  785. end
  786. else
  787. if is_currency(resulttype.def) and not(is_currency(left.resulttype.def)) then
  788. begin
  789. left:=caddnode.create(muln,left,crealconstnode.create(10000.0,left.resulttype));
  790. include(left.flags,nf_is_currency);
  791. resulttypepass(left);
  792. end;
  793. if left.nodetype=realconstn then
  794. result:=crealconstnode.create(trealconstnode(left).value_real,resulttype);
  795. end;
  796. function ttypeconvnode.resulttype_cchar_to_pchar : tnode;
  797. begin
  798. result:=nil;
  799. if is_pwidechar(resulttype.def) then
  800. inserttypeconv(left,cwidestringtype)
  801. else
  802. inserttypeconv(left,cshortstringtype);
  803. { evaluate again, reset resulttype so the convert_typ
  804. will be calculated again and cstring_to_pchar will
  805. be used for futher conversion }
  806. result:=det_resulttype;
  807. end;
  808. function ttypeconvnode.resulttype_cstring_to_pchar : tnode;
  809. begin
  810. result:=nil;
  811. if is_pwidechar(resulttype.def) then
  812. inserttypeconv(left,cwidestringtype);
  813. end;
  814. function ttypeconvnode.resulttype_arrayconstructor_to_set : tnode;
  815. var
  816. hp : tnode;
  817. begin
  818. result:=nil;
  819. if left.nodetype<>arrayconstructorn then
  820. internalerror(5546);
  821. { remove typeconv node }
  822. hp:=left;
  823. left:=nil;
  824. { create a set constructor tree }
  825. arrayconstructor_to_set(hp);
  826. result:=hp;
  827. end;
  828. function ttypeconvnode.resulttype_pchar_to_string : tnode;
  829. begin
  830. result := ccallnode.createinternres(
  831. 'fpc_pchar_to_'+tstringdef(resulttype.def).stringtypname,
  832. ccallparanode.create(left,nil),resulttype);
  833. left := nil;
  834. end;
  835. function ttypeconvnode.resulttype_interface_to_guid : tnode;
  836. begin
  837. if assigned(tobjectdef(left.resulttype.def).iidguid) then
  838. result:=cguidconstnode.create(tobjectdef(left.resulttype.def).iidguid^);
  839. end;
  840. function ttypeconvnode.resulttype_dynarray_to_openarray : tnode;
  841. begin
  842. { a dynamic array is a pointer to an array, so to convert it to }
  843. { an open array, we have to dereference it (JM) }
  844. result := ctypeconvnode.create_explicit(left,voidpointertype);
  845. { left is reused }
  846. left := nil;
  847. result := cderefnode.create(result);
  848. result.resulttype := resulttype;
  849. end;
  850. function ttypeconvnode.resulttype_pwchar_to_string : tnode;
  851. begin
  852. result := ccallnode.createinternres(
  853. 'fpc_pwidechar_to_'+tstringdef(resulttype.def).stringtypname,
  854. ccallparanode.create(left,nil),resulttype);
  855. left := nil;
  856. end;
  857. function ttypeconvnode.resulttype_variant_to_dynarray : tnode;
  858. begin
  859. result := ccallnode.createinternres(
  860. 'fpc_variant_to_dynarray',
  861. ccallparanode.create(caddrnode.create(crttinode.create(tstoreddef(resulttype.def),initrtti)),
  862. ccallparanode.create(left,nil)
  863. ),resulttype);
  864. left := nil;
  865. end;
  866. function ttypeconvnode.resulttype_dynarray_to_variant : tnode;
  867. begin
  868. result:=nil;
  869. end;
  870. function ttypeconvnode.resulttype_call_helper(c : tconverttype) : tnode;
  871. {$ifdef fpc}
  872. const
  873. resulttypeconvert : array[tconverttype] of pointer = (
  874. {equal} nil,
  875. {not_possible} nil,
  876. { string_2_string } @ttypeconvnode.resulttype_string_to_string,
  877. { char_2_string } @ttypeconvnode.resulttype_char_to_string,
  878. { char_2_chararray } @ttypeconvnode.resulttype_char_to_chararray,
  879. { pchar_2_string } @ttypeconvnode.resulttype_pchar_to_string,
  880. { cchar_2_pchar } @ttypeconvnode.resulttype_cchar_to_pchar,
  881. { cstring_2_pchar } @ttypeconvnode.resulttype_cstring_to_pchar,
  882. { ansistring_2_pchar } nil,
  883. { string_2_chararray } @ttypeconvnode.resulttype_string_to_chararray,
  884. { chararray_2_string } @ttypeconvnode.resulttype_chararray_to_string,
  885. { array_2_pointer } nil,
  886. { pointer_2_array } nil,
  887. { int_2_int } @ttypeconvnode.resulttype_int_to_int,
  888. { int_2_bool } nil,
  889. { bool_2_bool } nil,
  890. { bool_2_int } nil,
  891. { real_2_real } @ttypeconvnode.resulttype_real_to_real,
  892. { int_2_real } @ttypeconvnode.resulttype_int_to_real,
  893. { real_2_currency } @ttypeconvnode.resulttype_real_to_currency,
  894. { proc_2_procvar } nil,
  895. { arrayconstructor_2_set } @ttypeconvnode.resulttype_arrayconstructor_to_set,
  896. { load_smallset } nil,
  897. { cord_2_pointer } @ttypeconvnode.resulttype_cord_to_pointer,
  898. { intf_2_string } nil,
  899. { intf_2_guid } @ttypeconvnode.resulttype_interface_to_guid,
  900. { class_2_intf } nil,
  901. { char_2_char } @ttypeconvnode.resulttype_char_to_char,
  902. { normal_2_smallset} nil,
  903. { dynarray_2_openarray} @resulttype_dynarray_to_openarray,
  904. { pwchar_2_string} @resulttype_pwchar_to_string,
  905. { variant_2_dynarray} @resulttype_variant_to_dynarray,
  906. { dynarray_2_variant} @resulttype_dynarray_to_variant
  907. );
  908. type
  909. tprocedureofobject = function : tnode of object;
  910. var
  911. r : packed record
  912. proc : pointer;
  913. obj : pointer;
  914. end;
  915. begin
  916. result:=nil;
  917. { this is a little bit dirty but it works }
  918. { and should be quite portable too }
  919. r.proc:=resulttypeconvert[c];
  920. r.obj:=self;
  921. if assigned(r.proc) then
  922. result:=tprocedureofobject(r)();
  923. end;
  924. {$else}
  925. begin
  926. case c of
  927. tc_string_2_string: resulttype_string_to_string;
  928. tc_char_2_string : resulttype_char_to_string;
  929. tc_char_2_chararray: resulttype_char_to_chararray;
  930. tc_pchar_2_string : resulttype_pchar_to_string;
  931. tc_cchar_2_pchar : resulttype_cchar_to_pchar;
  932. tc_cstring_2_pchar : resulttype_cstring_to_pchar;
  933. tc_string_2_chararray : resulttype_string_to_chararray;
  934. tc_chararray_2_string : resulttype_chararray_to_string;
  935. tc_real_2_real : resulttype_real_to_real;
  936. tc_int_2_real : resulttype_int_to_real;
  937. tc_real_2_currency : resulttype_real_to_currency;
  938. tc_arrayconstructor_2_set : resulttype_arrayconstructor_to_set;
  939. tc_cord_2_pointer : resulttype_cord_to_pointer;
  940. tc_intf_2_guid : resulttype_interface_to_guid;
  941. tc_char_2_char : resulttype_char_to_char;
  942. tc_dynarray_2_openarray : resulttype_dynarray_to_openarray;
  943. tc_pwchar_2_string : resulttype_pwchar_to_string;
  944. tc_variant_2_dynarray : resulttype_variant_to_dynarray;
  945. tc_dynarray_2_variant : resulttype_dynarray_to_variant;
  946. end;
  947. end;
  948. {$Endif fpc}
  949. function ttypeconvnode.det_resulttype:tnode;
  950. var
  951. hp : tnode;
  952. currprocdef,
  953. aprocdef : tprocdef;
  954. eq : tequaltype;
  955. begin
  956. result:=nil;
  957. resulttype:=totype;
  958. resulttypepass(left);
  959. if codegenerror then
  960. exit;
  961. eq:=compare_defs_ext(left.resulttype.def,resulttype.def,left.nodetype,
  962. nf_explicit in flags,true,convtype,aprocdef);
  963. case eq of
  964. te_exact,
  965. te_equal :
  966. begin
  967. { because is_equal only checks the basetype for sets we need to
  968. check here if we are loading a smallset into a normalset }
  969. if (resulttype.def.deftype=setdef) and
  970. (left.resulttype.def.deftype=setdef) and
  971. ((tsetdef(resulttype.def).settype = smallset) xor
  972. (tsetdef(left.resulttype.def).settype = smallset)) then
  973. begin
  974. { constant sets can be converted by changing the type only }
  975. if (left.nodetype=setconstn) then
  976. begin
  977. left.resulttype:=resulttype;
  978. result:=left;
  979. left:=nil;
  980. exit;
  981. end;
  982. if (tsetdef(resulttype.def).settype <> smallset) then
  983. convtype:=tc_load_smallset
  984. else
  985. convtype := tc_normal_2_smallset;
  986. exit;
  987. end
  988. else
  989. begin
  990. { Only leave when there is no conversion to do.
  991. We can still need to call a conversion routine,
  992. like the routine to convert a stringconstnode }
  993. if convtype in [tc_equal,tc_not_possible] then
  994. begin
  995. left.resulttype:=resulttype;
  996. result:=left;
  997. left:=nil;
  998. exit;
  999. end;
  1000. end;
  1001. end;
  1002. te_convert_l1,
  1003. te_convert_l2,
  1004. te_convert_l3 :
  1005. begin
  1006. { nothing to do }
  1007. end;
  1008. te_convert_operator :
  1009. begin
  1010. include(current_procinfo.flags,pi_do_call);
  1011. inc(overloaded_operators[_assignment].refs);
  1012. hp:=ccallnode.create(ccallparanode.create(left,nil),
  1013. overloaded_operators[_assignment],nil,nil);
  1014. { tell explicitly which def we must use !! (PM) }
  1015. tcallnode(hp).procdefinition:=aprocdef;
  1016. left:=nil;
  1017. result:=hp;
  1018. exit;
  1019. end;
  1020. te_incompatible :
  1021. begin
  1022. { Procedures have a resulttype.def of voiddef and functions of their
  1023. own resulttype.def. They will therefore always be incompatible with
  1024. a procvar. Because isconvertable cannot check for procedures we
  1025. use an extra check for them.}
  1026. if (m_tp_procvar in aktmodeswitches) and
  1027. (resulttype.def.deftype=procvardef) then
  1028. begin
  1029. if is_procsym_load(left) then
  1030. begin
  1031. if (left.nodetype<>addrn) then
  1032. begin
  1033. convtype:=tc_proc_2_procvar;
  1034. { Now check if the procedure we are going to assign to
  1035. the procvar, is compatible with the procvar's type }
  1036. if proc_to_procvar_equal(tprocsym(tloadnode(left).symtableentry).first_procdef,
  1037. tprocvardef(resulttype.def),true)=te_incompatible then
  1038. CGMessage2(type_e_incompatible_types,tprocsym(tloadnode(left).symtableentry).first_procdef.typename,resulttype.def.typename);
  1039. exit;
  1040. end;
  1041. end
  1042. else
  1043. if (left.nodetype=calln) and
  1044. (tcallnode(left).para_count=0) then
  1045. begin
  1046. if assigned(tcallnode(left).right) then
  1047. begin
  1048. hp:=tcallnode(left).right.getcopy;
  1049. currprocdef:=tprocdef(hp.resulttype.def);
  1050. end
  1051. else
  1052. begin
  1053. currprocdef:=Tprocsym(Tcallnode(left).symtableprocentry).search_procdef_byprocvardef(Tprocvardef(resulttype.def));
  1054. hp:=cloadnode.create_procvar(tprocsym(tcallnode(left).symtableprocentry),
  1055. currprocdef,tcallnode(left).symtableproc);
  1056. if (tcallnode(left).symtableprocentry.owner.symtabletype=objectsymtable) then
  1057. begin
  1058. if assigned(tcallnode(left).methodpointer) then
  1059. tloadnode(hp).set_mp(tcallnode(left).methodpointer.getcopy)
  1060. else
  1061. tloadnode(hp).set_mp(load_self_node);
  1062. end;
  1063. resulttypepass(hp);
  1064. end;
  1065. left.free;
  1066. left:=hp;
  1067. convtype:=tc_proc_2_procvar;
  1068. { Now check if the procedure we are going to assign to
  1069. the procvar, is compatible with the procvar's type }
  1070. if proc_to_procvar_equal(currprocdef,
  1071. tprocvardef(resulttype.def),true)=te_incompatible then
  1072. CGMessage2(type_e_incompatible_types,tprocdef(left.resulttype.def).typename,resulttype.def.typename);
  1073. exit;
  1074. end;
  1075. end;
  1076. { Handle explicit type conversions }
  1077. if nf_explicit in flags then
  1078. begin
  1079. { do common tc_equal cast }
  1080. convtype:=tc_equal;
  1081. { check if the result could be in a register }
  1082. if (not(tstoreddef(resulttype.def).is_intregable) and
  1083. not(tstoreddef(resulttype.def).is_fpuregable)) or
  1084. ((left.resulttype.def.deftype = floatdef) and
  1085. (resulttype.def.deftype <> floatdef)) then
  1086. make_not_regable(left);
  1087. { class to class or object to object, with checkobject support }
  1088. if (resulttype.def.deftype=objectdef) and
  1089. (left.resulttype.def.deftype=objectdef) then
  1090. begin
  1091. if (cs_check_object in aktlocalswitches) then
  1092. begin
  1093. if is_class_or_interface(resulttype.def) then
  1094. begin
  1095. { we can translate the typeconvnode to 'as' when
  1096. typecasting to a class or interface }
  1097. hp:=casnode.create(left,cloadvmtaddrnode.create(ctypenode.create(resulttype)));
  1098. left:=nil;
  1099. result:=hp;
  1100. exit;
  1101. end;
  1102. end
  1103. else
  1104. begin
  1105. { check if the types are related }
  1106. if (not(tobjectdef(left.resulttype.def).is_related(tobjectdef(resulttype.def)))) and
  1107. (not(tobjectdef(resulttype.def).is_related(tobjectdef(left.resulttype.def)))) then
  1108. CGMessage2(type_w_classes_not_related,left.resulttype.def.typename,resulttype.def.typename);
  1109. end;
  1110. end
  1111. else
  1112. begin
  1113. { only if the same size or formal def }
  1114. if not(
  1115. (left.resulttype.def.deftype=formaldef) or
  1116. (
  1117. not(is_open_array(left.resulttype.def)) and
  1118. (left.resulttype.def.size=resulttype.def.size)
  1119. ) or
  1120. (
  1121. is_void(left.resulttype.def) and
  1122. (left.nodetype=derefn)
  1123. )
  1124. ) or
  1125. (left.resulttype.def.deftype=classrefdef) then
  1126. CGMessage(cg_e_illegal_type_conversion);
  1127. end;
  1128. end
  1129. else
  1130. CGMessage2(type_e_incompatible_types,left.resulttype.def.typename,resulttype.def.typename);
  1131. end;
  1132. else
  1133. internalerror(200211231);
  1134. end;
  1135. { Give hint for unportable code }
  1136. if ((left.resulttype.def.deftype=orddef) and
  1137. (resulttype.def.deftype in [pointerdef,procvardef,classrefdef])) or
  1138. ((resulttype.def.deftype=orddef) and
  1139. (left.resulttype.def.deftype in [pointerdef,procvardef,classrefdef])) then
  1140. CGMessage(cg_h_pointer_to_longint_conv_not_portable);
  1141. { Constant folding and other node transitions to
  1142. remove the typeconv node }
  1143. case left.nodetype of
  1144. loadn :
  1145. begin
  1146. { tp7 procvar support, when right is not a procvardef and we got a
  1147. loadn of a procvar (ignore procedures as void can not be converted)
  1148. then convert to a calln, the check for the result is already done
  1149. in is_convertible, also no conflict with @procvar is here because
  1150. that has an extra addrn }
  1151. if (m_tp_procvar in aktmodeswitches) and
  1152. (resulttype.def.deftype<>procvardef) and
  1153. (left.resulttype.def.deftype=procvardef) and
  1154. (not is_void(tprocvardef(left.resulttype.def).rettype.def)) then
  1155. begin
  1156. hp:=ccallnode.create_procvar(nil,left);
  1157. resulttypepass(hp);
  1158. left:=hp;
  1159. end;
  1160. end;
  1161. niln :
  1162. begin
  1163. { nil to ordinal node }
  1164. if (resulttype.def.deftype=orddef) then
  1165. begin
  1166. hp:=cordconstnode.create(0,resulttype,true);
  1167. result:=hp;
  1168. exit;
  1169. end
  1170. else
  1171. { fold nil to any pointer type }
  1172. if (resulttype.def.deftype=pointerdef) then
  1173. begin
  1174. hp:=cnilnode.create;
  1175. hp.resulttype:=resulttype;
  1176. result:=hp;
  1177. exit;
  1178. end
  1179. else
  1180. { remove typeconv after niln, but not when the result is a
  1181. methodpointer. The typeconv of the methodpointer will then
  1182. take care of updateing size of niln to OS_64 }
  1183. if not((resulttype.def.deftype=procvardef) and
  1184. (po_methodpointer in tprocvardef(resulttype.def).procoptions)) then
  1185. begin
  1186. left.resulttype:=resulttype;
  1187. result:=left;
  1188. left:=nil;
  1189. exit;
  1190. end;
  1191. end;
  1192. ordconstn :
  1193. begin
  1194. { ordinal contants can be directly converted }
  1195. { but not char to char because it is a widechar to char or via versa }
  1196. { which needs extra code to do the code page transistion }
  1197. if is_ordinal(resulttype.def) and
  1198. not(convtype=tc_char_2_char) then
  1199. begin
  1200. { replace the resulttype and recheck the range }
  1201. left.resulttype:=resulttype;
  1202. testrange(left.resulttype.def,tordconstnode(left).value,(nf_explicit in flags));
  1203. result:=left;
  1204. left:=nil;
  1205. exit;
  1206. end;
  1207. end;
  1208. pointerconstn :
  1209. begin
  1210. { pointerconstn to any pointer is folded too }
  1211. if (resulttype.def.deftype=pointerdef) then
  1212. begin
  1213. left.resulttype:=resulttype;
  1214. result:=left;
  1215. left:=nil;
  1216. exit;
  1217. end
  1218. { constant pointer to ordinal }
  1219. else if is_ordinal(resulttype.def) then
  1220. begin
  1221. hp:=cordconstnode.create(tpointerconstnode(left).value,
  1222. resulttype,true);
  1223. result:=hp;
  1224. exit;
  1225. end;
  1226. end;
  1227. end;
  1228. { now call the resulttype helper to do constant folding }
  1229. result:=resulttype_call_helper(convtype);
  1230. end;
  1231. procedure Ttypeconvnode.mark_write;
  1232. begin
  1233. left.mark_write;
  1234. end;
  1235. function ttypeconvnode.first_cord_to_pointer : tnode;
  1236. begin
  1237. result:=nil;
  1238. internalerror(200104043);
  1239. end;
  1240. function ttypeconvnode.first_int_to_int : tnode;
  1241. begin
  1242. first_int_to_int:=nil;
  1243. if (left.expectloc<>LOC_REGISTER) and
  1244. not is_void(left.resulttype.def) and
  1245. (resulttype.def.size>left.resulttype.def.size) then
  1246. expectloc:=LOC_REGISTER
  1247. else
  1248. expectloc:=left.expectloc;
  1249. if is_64bit(resulttype.def) then
  1250. registers32:=max(registers32,2)
  1251. else
  1252. registers32:=max(registers32,1);
  1253. end;
  1254. function ttypeconvnode.first_cstring_to_pchar : tnode;
  1255. begin
  1256. first_cstring_to_pchar:=nil;
  1257. registers32:=1;
  1258. expectloc:=LOC_REGISTER;
  1259. end;
  1260. function ttypeconvnode.first_string_to_chararray : tnode;
  1261. begin
  1262. first_string_to_chararray:=nil;
  1263. expectloc:=left.expectloc;
  1264. end;
  1265. function ttypeconvnode.first_char_to_string : tnode;
  1266. begin
  1267. first_char_to_string:=nil;
  1268. expectloc:=LOC_REFERENCE;
  1269. end;
  1270. function ttypeconvnode.first_nothing : tnode;
  1271. begin
  1272. first_nothing:=nil;
  1273. end;
  1274. function ttypeconvnode.first_array_to_pointer : tnode;
  1275. begin
  1276. first_array_to_pointer:=nil;
  1277. if registers32<1 then
  1278. registers32:=1;
  1279. expectloc:=LOC_REGISTER;
  1280. end;
  1281. function ttypeconvnode.first_int_to_real: tnode;
  1282. var
  1283. fname: string[32];
  1284. typname : string[12];
  1285. begin
  1286. { Get the type name }
  1287. { Normally the typename should be one of the following:
  1288. single, double - carl
  1289. }
  1290. typname := lower(pbestrealtype^.def.gettypename);
  1291. { converting a 64bit integer to a float requires a helper }
  1292. if is_64bit(left.resulttype.def) then
  1293. begin
  1294. if is_signed(left.resulttype.def) then
  1295. fname := 'fpc_int64_to_'+typname
  1296. else
  1297. {$warning generic conversion from int to float does not support unsigned integers}
  1298. fname := 'fpc_int64_to_'+typname;
  1299. result := ccallnode.createintern(fname,ccallparanode.create(
  1300. left,nil));
  1301. left:=nil;
  1302. firstpass(result);
  1303. exit;
  1304. end
  1305. else
  1306. { other integers are supposed to be 32 bit }
  1307. begin
  1308. {$warning generic conversion from int to float does not support unsigned integers}
  1309. if is_signed(left.resulttype.def) then
  1310. fname := 'fpc_longint_to_'+typname
  1311. else
  1312. fname := 'fpc_longint_to_'+typname;
  1313. result := ccallnode.createintern(fname,ccallparanode.create(
  1314. left,nil));
  1315. left:=nil;
  1316. firstpass(result);
  1317. exit;
  1318. end;
  1319. end;
  1320. function ttypeconvnode.first_real_to_real : tnode;
  1321. begin
  1322. first_real_to_real:=nil;
  1323. { comp isn't a floating type }
  1324. {$ifdef i386}
  1325. if (tfloatdef(resulttype.def).typ=s64comp) and
  1326. (tfloatdef(left.resulttype.def).typ<>s64comp) and
  1327. not (nf_explicit in flags) then
  1328. CGMessage(type_w_convert_real_2_comp);
  1329. {$endif}
  1330. if registersfpu<1 then
  1331. registersfpu:=1;
  1332. expectloc:=LOC_FPUREGISTER;
  1333. end;
  1334. function ttypeconvnode.first_pointer_to_array : tnode;
  1335. begin
  1336. first_pointer_to_array:=nil;
  1337. if registers32<1 then
  1338. registers32:=1;
  1339. expectloc:=LOC_REFERENCE;
  1340. end;
  1341. function ttypeconvnode.first_cchar_to_pchar : tnode;
  1342. begin
  1343. first_cchar_to_pchar:=nil;
  1344. internalerror(200104021);
  1345. end;
  1346. function ttypeconvnode.first_bool_to_int : tnode;
  1347. begin
  1348. first_bool_to_int:=nil;
  1349. { byte(boolean) or word(wordbool) or longint(longbool) must
  1350. be accepted for var parameters }
  1351. if (nf_explicit in flags) and
  1352. (left.resulttype.def.size=resulttype.def.size) and
  1353. (left.expectloc in [LOC_REFERENCE,LOC_CREFERENCE,LOC_CREGISTER]) then
  1354. exit;
  1355. { when converting to 64bit, first convert to a 32bit int and then }
  1356. { convert to a 64bit int (only necessary for 32bit processors) (JM) }
  1357. if resulttype.def.size > sizeof(aword) then
  1358. begin
  1359. result := ctypeconvnode.create_explicit(left,u32bittype);
  1360. result := ctypeconvnode.create(result,resulttype);
  1361. left := nil;
  1362. firstpass(result);
  1363. exit;
  1364. end;
  1365. expectloc:=LOC_REGISTER;
  1366. if registers32<1 then
  1367. registers32:=1;
  1368. end;
  1369. function ttypeconvnode.first_int_to_bool : tnode;
  1370. begin
  1371. first_int_to_bool:=nil;
  1372. { byte(boolean) or word(wordbool) or longint(longbool) must
  1373. be accepted for var parameters }
  1374. if (nf_explicit in flags) and
  1375. (left.resulttype.def.size=resulttype.def.size) and
  1376. (left.expectloc in [LOC_REFERENCE,LOC_CREFERENCE,LOC_CREGISTER]) then
  1377. exit;
  1378. expectloc:=LOC_REGISTER;
  1379. { need if bool to bool !!
  1380. not very nice !!
  1381. insertypeconv(left,s32bittype);
  1382. left.explizit:=true;
  1383. firstpass(left); }
  1384. if registers32<1 then
  1385. registers32:=1;
  1386. end;
  1387. function ttypeconvnode.first_bool_to_bool : tnode;
  1388. begin
  1389. first_bool_to_bool:=nil;
  1390. expectloc:=LOC_REGISTER;
  1391. if registers32<1 then
  1392. registers32:=1;
  1393. end;
  1394. function ttypeconvnode.first_char_to_char : tnode;
  1395. begin
  1396. first_char_to_char:=first_int_to_int;
  1397. end;
  1398. function ttypeconvnode.first_proc_to_procvar : tnode;
  1399. begin
  1400. first_proc_to_procvar:=nil;
  1401. if assigned(tunarynode(left).left) then
  1402. begin
  1403. if (left.expectloc<>LOC_CREFERENCE) then
  1404. CGMessage(cg_e_illegal_expression);
  1405. registers32:=left.registers32;
  1406. expectloc:=left.expectloc
  1407. end
  1408. else
  1409. begin
  1410. registers32:=left.registers32;
  1411. if registers32<1 then
  1412. registers32:=1;
  1413. expectloc:=LOC_REGISTER;
  1414. end
  1415. end;
  1416. function ttypeconvnode.first_load_smallset : tnode;
  1417. var
  1418. srsym: ttypesym;
  1419. p: tcallparanode;
  1420. begin
  1421. if not searchsystype('FPC_SMALL_SET',srsym) then
  1422. internalerror(200108313);
  1423. p := ccallparanode.create(left,nil);
  1424. { reused }
  1425. left := nil;
  1426. { convert parameter explicitely to fpc_small_set }
  1427. p.left := ctypeconvnode.create_explicit(p.left,srsym.restype);
  1428. { create call, adjust resulttype }
  1429. result :=
  1430. ccallnode.createinternres('fpc_set_load_small',p,resulttype);
  1431. firstpass(result);
  1432. end;
  1433. function ttypeconvnode.first_ansistring_to_pchar : tnode;
  1434. begin
  1435. first_ansistring_to_pchar:=nil;
  1436. expectloc:=LOC_REGISTER;
  1437. if registers32<1 then
  1438. registers32:=1;
  1439. end;
  1440. function ttypeconvnode.first_arrayconstructor_to_set : tnode;
  1441. begin
  1442. first_arrayconstructor_to_set:=nil;
  1443. internalerror(200104022);
  1444. end;
  1445. function ttypeconvnode.first_class_to_intf : tnode;
  1446. begin
  1447. first_class_to_intf:=nil;
  1448. expectloc:=LOC_REFERENCE;
  1449. if registers32<1 then
  1450. registers32:=1;
  1451. end;
  1452. function ttypeconvnode._first_int_to_int : tnode;
  1453. begin
  1454. result:=first_int_to_int;
  1455. end;
  1456. function ttypeconvnode._first_cstring_to_pchar : tnode;
  1457. begin
  1458. result:=first_cstring_to_pchar;
  1459. end;
  1460. function ttypeconvnode._first_string_to_chararray : tnode;
  1461. begin
  1462. result:=first_string_to_chararray;
  1463. end;
  1464. function ttypeconvnode._first_char_to_string : tnode;
  1465. begin
  1466. result:=first_char_to_string;
  1467. end;
  1468. function ttypeconvnode._first_nothing : tnode;
  1469. begin
  1470. result:=first_nothing;
  1471. end;
  1472. function ttypeconvnode._first_array_to_pointer : tnode;
  1473. begin
  1474. result:=first_array_to_pointer;
  1475. end;
  1476. function ttypeconvnode._first_int_to_real : tnode;
  1477. begin
  1478. result:=first_int_to_real;
  1479. end;
  1480. function ttypeconvnode._first_real_to_real : tnode;
  1481. begin
  1482. result:=first_real_to_real;
  1483. end;
  1484. function ttypeconvnode._first_pointer_to_array : tnode;
  1485. begin
  1486. result:=first_pointer_to_array;
  1487. end;
  1488. function ttypeconvnode._first_cchar_to_pchar : tnode;
  1489. begin
  1490. result:=first_cchar_to_pchar;
  1491. end;
  1492. function ttypeconvnode._first_bool_to_int : tnode;
  1493. begin
  1494. result:=first_bool_to_int;
  1495. end;
  1496. function ttypeconvnode._first_int_to_bool : tnode;
  1497. begin
  1498. result:=first_int_to_bool;
  1499. end;
  1500. function ttypeconvnode._first_bool_to_bool : tnode;
  1501. begin
  1502. result:=first_bool_to_bool;
  1503. end;
  1504. function ttypeconvnode._first_proc_to_procvar : tnode;
  1505. begin
  1506. result:=first_proc_to_procvar;
  1507. end;
  1508. function ttypeconvnode._first_load_smallset : tnode;
  1509. begin
  1510. result:=first_load_smallset;
  1511. end;
  1512. function ttypeconvnode._first_cord_to_pointer : tnode;
  1513. begin
  1514. result:=first_cord_to_pointer;
  1515. end;
  1516. function ttypeconvnode._first_ansistring_to_pchar : tnode;
  1517. begin
  1518. result:=first_ansistring_to_pchar;
  1519. end;
  1520. function ttypeconvnode._first_arrayconstructor_to_set : tnode;
  1521. begin
  1522. result:=first_arrayconstructor_to_set;
  1523. end;
  1524. function ttypeconvnode._first_class_to_intf : tnode;
  1525. begin
  1526. result:=first_class_to_intf;
  1527. end;
  1528. function ttypeconvnode._first_char_to_char : tnode;
  1529. begin
  1530. result:=first_char_to_char;
  1531. end;
  1532. function ttypeconvnode.first_call_helper(c : tconverttype) : tnode;
  1533. const
  1534. firstconvert : array[tconverttype] of pointer = (
  1535. @ttypeconvnode._first_nothing, {equal}
  1536. @ttypeconvnode._first_nothing, {not_possible}
  1537. nil, { removed in resulttype_string_to_string }
  1538. @ttypeconvnode._first_char_to_string,
  1539. @ttypeconvnode._first_nothing, { char_2_chararray, needs nothing extra }
  1540. nil, { removed in resulttype_chararray_to_string }
  1541. @ttypeconvnode._first_cchar_to_pchar,
  1542. @ttypeconvnode._first_cstring_to_pchar,
  1543. @ttypeconvnode._first_ansistring_to_pchar,
  1544. @ttypeconvnode._first_string_to_chararray,
  1545. nil, { removed in resulttype_chararray_to_string }
  1546. @ttypeconvnode._first_array_to_pointer,
  1547. @ttypeconvnode._first_pointer_to_array,
  1548. @ttypeconvnode._first_int_to_int,
  1549. @ttypeconvnode._first_int_to_bool,
  1550. @ttypeconvnode._first_bool_to_bool,
  1551. @ttypeconvnode._first_bool_to_int,
  1552. @ttypeconvnode._first_real_to_real,
  1553. @ttypeconvnode._first_int_to_real,
  1554. nil, { removed in resulttype_real_to_currency }
  1555. @ttypeconvnode._first_proc_to_procvar,
  1556. @ttypeconvnode._first_arrayconstructor_to_set,
  1557. @ttypeconvnode._first_load_smallset,
  1558. @ttypeconvnode._first_cord_to_pointer,
  1559. @ttypeconvnode._first_nothing,
  1560. @ttypeconvnode._first_nothing,
  1561. @ttypeconvnode._first_class_to_intf,
  1562. @ttypeconvnode._first_char_to_char,
  1563. @ttypeconvnode._first_nothing,
  1564. @ttypeconvnode._first_nothing,
  1565. nil,
  1566. nil,
  1567. nil
  1568. );
  1569. type
  1570. tprocedureofobject = function : tnode of object;
  1571. var
  1572. r : packed record
  1573. proc : pointer;
  1574. obj : pointer;
  1575. end;
  1576. begin
  1577. { this is a little bit dirty but it works }
  1578. { and should be quite portable too }
  1579. r.proc:=firstconvert[c];
  1580. r.obj:=self;
  1581. first_call_helper:=tprocedureofobject(r){$ifdef FPC}(){$endif FPC}
  1582. end;
  1583. function ttypeconvnode.pass_1 : tnode;
  1584. begin
  1585. result:=nil;
  1586. firstpass(left);
  1587. if codegenerror then
  1588. exit;
  1589. { load the value_str from the left part }
  1590. registers32:=left.registers32;
  1591. registersfpu:=left.registersfpu;
  1592. {$ifdef SUPPORT_MMX}
  1593. registersmmx:=left.registersmmx;
  1594. {$endif}
  1595. expectloc:=left.expectloc;
  1596. if nf_explicit in flags then
  1597. begin
  1598. { check if the result could be in a register }
  1599. if not(tstoreddef(resulttype.def).is_intregable) and
  1600. not(tstoreddef(resulttype.def).is_fpuregable) then
  1601. make_not_regable(left);
  1602. end;
  1603. result:=first_call_helper(convtype);
  1604. end;
  1605. function ttypeconvnode.docompare(p: tnode) : boolean;
  1606. begin
  1607. docompare :=
  1608. inherited docompare(p) and
  1609. (convtype = ttypeconvnode(p).convtype);
  1610. end;
  1611. {*****************************************************************************
  1612. TISNODE
  1613. *****************************************************************************}
  1614. constructor tisnode.create(l,r : tnode);
  1615. begin
  1616. inherited create(isn,l,r);
  1617. end;
  1618. function tisnode.det_resulttype:tnode;
  1619. var
  1620. paras: tcallparanode;
  1621. begin
  1622. result:=nil;
  1623. resulttypepass(left);
  1624. resulttypepass(right);
  1625. set_varstate(left,true);
  1626. set_varstate(right,true);
  1627. if codegenerror then
  1628. exit;
  1629. if (right.resulttype.def.deftype=classrefdef) then
  1630. begin
  1631. { left must be a class }
  1632. if is_class(left.resulttype.def) then
  1633. begin
  1634. { the operands must be related }
  1635. if (not(tobjectdef(left.resulttype.def).is_related(
  1636. tobjectdef(tclassrefdef(right.resulttype.def).pointertype.def)))) and
  1637. (not(tobjectdef(tclassrefdef(right.resulttype.def).pointertype.def).is_related(
  1638. tobjectdef(left.resulttype.def)))) then
  1639. CGMessage2(type_e_classes_not_related,left.resulttype.def.typename,
  1640. tclassrefdef(right.resulttype.def).pointertype.def.typename);
  1641. end
  1642. else
  1643. CGMessage1(type_e_class_type_expected,left.resulttype.def.typename);
  1644. { call fpc_do_is helper }
  1645. paras := ccallparanode.create(
  1646. left,
  1647. ccallparanode.create(
  1648. right,nil));
  1649. result := ccallnode.createintern('fpc_do_is',paras);
  1650. left := nil;
  1651. right := nil;
  1652. end
  1653. else if is_interface(right.resulttype.def) then
  1654. begin
  1655. { left is a class }
  1656. if is_class(left.resulttype.def) then
  1657. begin
  1658. { the operands must be related }
  1659. if not(assigned(tobjectdef(left.resulttype.def).implementedinterfaces) and
  1660. (tobjectdef(left.resulttype.def).implementedinterfaces.searchintf(right.resulttype.def)<>-1)) then
  1661. CGMessage2(type_e_classes_not_related,left.resulttype.def.typename,right.resulttype.def.typename);
  1662. end
  1663. { left is an interface }
  1664. else if is_interface(left.resulttype.def) then
  1665. begin
  1666. { the operands must be related }
  1667. if (not(tobjectdef(left.resulttype.def).is_related(tobjectdef(right.resulttype.def)))) and
  1668. (not(tobjectdef(right.resulttype.def).is_related(tobjectdef(left.resulttype.def)))) then
  1669. CGMessage(type_e_mismatch);
  1670. end
  1671. else
  1672. CGMessage1(type_e_class_type_expected,left.resulttype.def.typename);
  1673. { call fpc_do_is helper }
  1674. paras := ccallparanode.create(
  1675. left,
  1676. ccallparanode.create(
  1677. right,nil));
  1678. result := ccallnode.createintern('fpc_do_is',paras);
  1679. left := nil;
  1680. right := nil;
  1681. end
  1682. else
  1683. CGMessage1(type_e_class_or_interface_type_expected,right.resulttype.def.typename);
  1684. resulttype:=booltype;
  1685. end;
  1686. function tisnode.pass_1 : tnode;
  1687. begin
  1688. internalerror(200204254);
  1689. result:=nil;
  1690. end;
  1691. { dummy pass_2, it will never be called, but we need one since }
  1692. { you can't instantiate an abstract class }
  1693. procedure tisnode.pass_2;
  1694. begin
  1695. end;
  1696. {*****************************************************************************
  1697. TASNODE
  1698. *****************************************************************************}
  1699. constructor tasnode.create(l,r : tnode);
  1700. begin
  1701. inherited create(asn,l,r);
  1702. call := nil;
  1703. end;
  1704. destructor tasnode.destroy;
  1705. begin
  1706. call.free;
  1707. inherited destroy;
  1708. end;
  1709. function tasnode.det_resulttype:tnode;
  1710. var
  1711. hp : tnode;
  1712. begin
  1713. result:=nil;
  1714. resulttypepass(right);
  1715. resulttypepass(left);
  1716. set_varstate(right,true);
  1717. set_varstate(left,true);
  1718. if codegenerror then
  1719. exit;
  1720. if (right.resulttype.def.deftype=classrefdef) then
  1721. begin
  1722. { left must be a class }
  1723. if is_class(left.resulttype.def) then
  1724. begin
  1725. { the operands must be related }
  1726. if (not(tobjectdef(left.resulttype.def).is_related(
  1727. tobjectdef(tclassrefdef(right.resulttype.def).pointertype.def)))) and
  1728. (not(tobjectdef(tclassrefdef(right.resulttype.def).pointertype.def).is_related(
  1729. tobjectdef(left.resulttype.def)))) then
  1730. CGMessage2(type_e_classes_not_related,left.resulttype.def.typename,
  1731. tclassrefdef(right.resulttype.def).pointertype.def.typename);
  1732. end
  1733. else
  1734. CGMessage1(type_e_class_type_expected,left.resulttype.def.typename);
  1735. resulttype:=tclassrefdef(right.resulttype.def).pointertype;
  1736. end
  1737. else if is_interface(right.resulttype.def) then
  1738. begin
  1739. { left is a class }
  1740. if is_class(left.resulttype.def) then
  1741. begin
  1742. { the operands must be related
  1743. no, because the class instance could be a child class of the current one which
  1744. implements additional interfaces (FK)
  1745. b:=false;
  1746. o:=tobjectdef(left.resulttype.def);
  1747. while assigned(o) do
  1748. begin
  1749. if assigned(o.implementedinterfaces) and
  1750. (o.implementedinterfaces.searchintf(right.resulttype.def)<>-1) then
  1751. begin
  1752. b:=true;
  1753. break;
  1754. end;
  1755. o:=o.childof;
  1756. end;
  1757. if not(b) then
  1758. CGMessage2(type_e_classes_not_related,left.resulttype.def.typename,right.resulttype.def.typename);
  1759. }
  1760. end
  1761. { left is an interface }
  1762. else if is_interface(left.resulttype.def) then
  1763. begin
  1764. { the operands must be related
  1765. we don't necessarily know how the both interfaces are implemented, so we can't do this check (FK)
  1766. if (not(tobjectdef(left.resulttype.def).is_related(tobjectdef(right.resulttype.def)))) and
  1767. (not(tobjectdef(right.resulttype.def).is_related(tobjectdef(left.resulttype.def)))) then
  1768. CGMessage2(type_e_classes_not_related,left.resulttype.def.typename,right.resulttype.def.typename);
  1769. }
  1770. end
  1771. else
  1772. CGMessage1(type_e_class_type_expected,left.resulttype.def.typename);
  1773. resulttype:=right.resulttype;
  1774. { load the GUID of the interface }
  1775. if (right.nodetype=typen) then
  1776. begin
  1777. if assigned(tobjectdef(right.resulttype.def).iidguid) then
  1778. begin
  1779. hp:=cguidconstnode.create(tobjectdef(right.resulttype.def).iidguid^);
  1780. right.free;
  1781. right:=hp;
  1782. end
  1783. else
  1784. internalerror(200206282);
  1785. resulttypepass(right);
  1786. end;
  1787. end
  1788. else
  1789. CGMessage1(type_e_class_or_interface_type_expected,right.resulttype.def.typename);
  1790. end;
  1791. function tasnode.getcopy: tnode;
  1792. begin
  1793. result := inherited getcopy;
  1794. if assigned(call) then
  1795. tasnode(result).call := call.getcopy
  1796. else
  1797. tasnode(result).call := nil;
  1798. end;
  1799. function tasnode.pass_1 : tnode;
  1800. var
  1801. procname: string;
  1802. begin
  1803. result:=nil;
  1804. if not assigned(call) then
  1805. begin
  1806. if is_class(left.resulttype.def) and
  1807. (right.resulttype.def.deftype=classrefdef) then
  1808. call := ccallnode.createinternres('fpc_do_as',
  1809. ccallparanode.create(left,ccallparanode.create(right,nil)),
  1810. resulttype)
  1811. else
  1812. begin
  1813. if is_class(left.resulttype.def) then
  1814. procname := 'fpc_class_as_intf'
  1815. else
  1816. procname := 'fpc_intf_as';
  1817. call := ccallnode.createinternres(procname,
  1818. ccallparanode.create(right,ccallparanode.create(left,nil)),
  1819. resulttype);
  1820. end;
  1821. left := nil;
  1822. right := nil;
  1823. firstpass(call);
  1824. if codegenerror then
  1825. exit;
  1826. expectloc:=call.expectloc;
  1827. registers32:=call.registers32;
  1828. registersfpu:=call.registersfpu;
  1829. {$ifdef SUPPORT_MMX}
  1830. registersmmx:=call.registersmmx;
  1831. {$endif SUPPORT_MMX}
  1832. end;
  1833. end;
  1834. begin
  1835. ctypeconvnode:=ttypeconvnode;
  1836. casnode:=tasnode;
  1837. cisnode:=tisnode;
  1838. end.
  1839. {
  1840. $Log$
  1841. Revision 1.115 2003-06-05 20:05:55 peter
  1842. * removed changesettype because that will change the definition
  1843. of the setdef forever and can result in a different between
  1844. original interface and current implementation definition
  1845. Revision 1.114 2003/06/04 17:55:09 jonas
  1846. * disable fpuregable for fpu variables typecasted to non fpu-type
  1847. Revision 1.113 2003/06/04 17:29:01 jonas
  1848. * fixed void_to_(int,pointer) typeconversion
  1849. Revision 1.112 2003/06/03 21:05:48 peter
  1850. * fix check for procedure without parameters
  1851. * calling constructor as member will not allocate memory
  1852. Revision 1.111 2003/05/11 21:37:03 peter
  1853. * moved implicit exception frame from ncgutil to psub
  1854. * constructor/destructor helpers moved from cobj/ncgutil to psub
  1855. Revision 1.110 2003/05/09 17:47:02 peter
  1856. * self moved to hidden parameter
  1857. * removed hdisposen,hnewn,selfn
  1858. Revision 1.109 2003/04/27 11:21:33 peter
  1859. * aktprocdef renamed to current_procdef
  1860. * procinfo renamed to current_procinfo
  1861. * procinfo will now be stored in current_module so it can be
  1862. cleaned up properly
  1863. * gen_main_procsym changed to create_main_proc and release_main_proc
  1864. to also generate a tprocinfo structure
  1865. * fixed unit implicit initfinal
  1866. Revision 1.108 2003/04/23 20:16:04 peter
  1867. + added currency support based on int64
  1868. + is_64bit for use in cg units instead of is_64bitint
  1869. * removed cgmessage from n386add, replace with internalerrors
  1870. Revision 1.107 2003/04/23 13:13:08 peter
  1871. * fix checking of procdef type which was broken since loadn returned
  1872. pointertype for tp procvar
  1873. Revision 1.106 2003/04/23 10:10:07 peter
  1874. * expectloc fixes
  1875. Revision 1.105 2003/04/22 23:50:23 peter
  1876. * firstpass uses expectloc
  1877. * checks if there are differences between the expectloc and
  1878. location.loc from secondpass in EXTDEBUG
  1879. Revision 1.104 2003/04/22 09:52:30 peter
  1880. * do not convert procvars with void return to callnode
  1881. Revision 1.103 2003/03/17 18:54:23 peter
  1882. * fix missing self setting for method to procvar conversion in
  1883. tp_procvar mode
  1884. Revision 1.102 2003/02/15 22:15:57 carl
  1885. * generic conversaion routines only work on signed types
  1886. Revision 1.101 2003/01/16 22:13:52 peter
  1887. * convert_l3 convertlevel added. This level is used for conversions
  1888. where information can be lost like converting widestring->ansistring
  1889. or dword->byte
  1890. Revision 1.100 2003/01/15 01:44:32 peter
  1891. * merged methodpointer fixes from 1.0.x
  1892. Revision 1.99 2003/01/09 21:43:39 peter
  1893. * constant string conversion fixed, it's now equal to both
  1894. shortstring, ansistring and the typeconvnode will return
  1895. te_equal but still return convtype to change the constnode
  1896. Revision 1.98 2003/01/05 22:41:40 peter
  1897. * move code that checks for longint-pointer conversion hint
  1898. Revision 1.97 2003/01/03 12:15:56 daniel
  1899. * Removed ifdefs around notifications
  1900. ifdefs around for loop optimizations remain
  1901. Revision 1.96 2002/12/22 16:34:49 peter
  1902. * proc-procvar crash fixed (tw2277)
  1903. Revision 1.95 2002/12/20 16:01:26 peter
  1904. * don't allow class(classref) conversion
  1905. Revision 1.94 2002/12/05 14:27:26 florian
  1906. * some variant <-> dyn. array stuff
  1907. Revision 1.93 2002/11/30 10:45:14 carl
  1908. * fix bug with checking of duplicated items in sets (new sets bug only)
  1909. Revision 1.92 2002/11/27 19:43:21 carl
  1910. * updated notes and hints
  1911. Revision 1.91 2002/11/27 13:11:38 peter
  1912. * more currency fixes, taddcurr runs now successfull
  1913. Revision 1.90 2002/11/27 11:29:21 peter
  1914. * when converting from and to currency divide or multiple the
  1915. result by 10000
  1916. Revision 1.89 2002/11/25 17:43:18 peter
  1917. * splitted defbase in defutil,symutil,defcmp
  1918. * merged isconvertable and is_equal into compare_defs(_ext)
  1919. * made operator search faster by walking the list only once
  1920. Revision 1.88 2002/11/17 16:31:56 carl
  1921. * memory optimization (3-4%) : cleanup of tai fields,
  1922. cleanup of tdef and tsym fields.
  1923. * make it work for m68k
  1924. Revision 1.87 2002/10/10 16:07:57 florian
  1925. + several widestring/pwidechar related stuff added
  1926. Revision 1.86 2002/10/06 16:10:23 florian
  1927. * when compiling <interface> as <interface> we can't assume
  1928. anything about relation
  1929. Revision 1.85 2002/10/05 12:43:25 carl
  1930. * fixes for Delphi 6 compilation
  1931. (warning : Some features do not work under Delphi)
  1932. Revision 1.84 2002/10/02 20:23:50 florian
  1933. - removed the relation check for <class> as <interface> because we don't
  1934. know the runtime type of <class>! It could be a child class of the given type
  1935. which implements additional interfaces
  1936. Revision 1.83 2002/10/02 20:17:14 florian
  1937. + the as operator for <class> as <interface> has to check the parent classes as well
  1938. Revision 1.82 2002/09/30 07:00:47 florian
  1939. * fixes to common code to get the alpha compiler compiled applied
  1940. Revision 1.81 2002/09/16 14:11:13 peter
  1941. * add argument to equal_paras() to support default values or not
  1942. Revision 1.80 2002/09/07 20:40:23 carl
  1943. * cardinal -> longword
  1944. Revision 1.79 2002/09/07 15:25:03 peter
  1945. * old logs removed and tabs fixed
  1946. Revision 1.78 2002/09/07 12:16:04 carl
  1947. * second part bug report 1996 fix, testrange in cordconstnode
  1948. only called if option is set (also make parsing a tiny faster)
  1949. Revision 1.77 2002/09/05 05:56:07 jonas
  1950. - reverted my last commit, it was completely bogus :(
  1951. Revision 1.75 2002/09/02 19:24:42 peter
  1952. * array of char support for Str()
  1953. Revision 1.74 2002/09/01 08:01:16 daniel
  1954. * Removed sets from Tcallnode.det_resulttype
  1955. + Added read/write notifications of variables. These will be usefull
  1956. for providing information for several optimizations. For example
  1957. the value of the loop variable of a for loop does matter is the
  1958. variable is read after the for loop, but if it's no longer used
  1959. or written, it doesn't matter and this can be used to optimize
  1960. the loop code generation.
  1961. Revision 1.73 2002/08/23 16:14:49 peter
  1962. * tempgen cleanup
  1963. * tt_noreuse temp type added that will be used in genentrycode
  1964. Revision 1.72 2002/08/20 18:23:33 jonas
  1965. * the as node again uses a compilerproc
  1966. + (untested) support for interface "as" statements
  1967. Revision 1.71 2002/08/19 19:36:43 peter
  1968. * More fixes for cross unit inlining, all tnodes are now implemented
  1969. * Moved pocall_internconst to po_internconst because it is not a
  1970. calling type at all and it conflicted when inlining of these small
  1971. functions was requested
  1972. Revision 1.70 2002/08/17 09:23:36 florian
  1973. * first part of current_procinfo rewrite
  1974. Revision 1.69 2002/08/14 19:26:55 carl
  1975. + generic int_to_real type conversion
  1976. + generic unaryminus node
  1977. Revision 1.68 2002/08/11 16:08:55 florian
  1978. + support of explicit type case boolean->char
  1979. Revision 1.67 2002/08/11 15:28:00 florian
  1980. + support of explicit type case <any ordinal type>->pointer
  1981. (delphi mode only)
  1982. Revision 1.66 2002/08/09 07:33:01 florian
  1983. * a couple of interface related fixes
  1984. Revision 1.65 2002/07/29 21:23:42 florian
  1985. * more fixes for the ppc
  1986. + wrappers for the tcnvnode.first_* stuff introduced
  1987. Revision 1.64 2002/07/23 12:34:30 daniel
  1988. * Readded old set code. To use it define 'oldset'. Activated by default
  1989. for ppc.
  1990. Revision 1.63 2002/07/23 09:51:22 daniel
  1991. * Tried to make Tprocsym.defs protected. I didn't succeed but the cleanups
  1992. are worth comitting.
  1993. Revision 1.62 2002/07/22 11:48:04 daniel
  1994. * Sets are now internally sets.
  1995. Revision 1.61 2002/07/20 17:16:02 florian
  1996. + source code page support
  1997. Revision 1.60 2002/07/20 11:57:54 florian
  1998. * types.pas renamed to defbase.pas because D6 contains a types
  1999. unit so this would conflicts if D6 programms are compiled
  2000. + Willamette/SSE2 instructions to assembler added
  2001. Revision 1.59 2002/07/01 16:23:53 peter
  2002. * cg64 patch
  2003. * basics for currency
  2004. * asnode updates for class and interface (not finished)
  2005. Revision 1.58 2002/05/18 13:34:09 peter
  2006. * readded missing revisions
  2007. }