ncnv.pas 91 KB

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