ncnv.pas 81 KB

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