ncnv.pas 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700
  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,
  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 : TConstExprInt;
  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(TConstPtrUInt(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 := ccallnode.createinternres(
  881. 'fpc_dynarray_to_variant',
  882. ccallparanode.create(caddrnode.create(crttinode.create(tstoreddef(resulttype.def),initrtti)),
  883. ccallparanode.create(left,nil)
  884. ),resulttype);
  885. result:=nil;
  886. end;
  887. function ttypeconvnode.resulttype_variant_to_enum : tnode;
  888. begin
  889. result := ctypeconvnode.create_explicit(left,defaultordconsttype);
  890. result := ctypeconvnode.create_explicit(result,resulttype);
  891. resulttypepass(result);
  892. { left is reused }
  893. left := nil;
  894. end;
  895. function ttypeconvnode.resulttype_enum_to_variant : tnode;
  896. begin
  897. result := ctypeconvnode.create_explicit(left,defaultordconsttype);
  898. result := ctypeconvnode.create_explicit(result,cvarianttype);
  899. resulttypepass(result);
  900. { left is reused }
  901. left := nil;
  902. end;
  903. function ttypeconvnode.resulttype_call_helper(c : tconverttype) : tnode;
  904. {$ifdef fpc}
  905. const
  906. resulttypeconvert : array[tconverttype] of pointer = (
  907. {equal} nil,
  908. {not_possible} nil,
  909. { string_2_string } @ttypeconvnode.resulttype_string_to_string,
  910. { char_2_string } @ttypeconvnode.resulttype_char_to_string,
  911. { char_2_chararray } @ttypeconvnode.resulttype_char_to_chararray,
  912. { pchar_2_string } @ttypeconvnode.resulttype_pchar_to_string,
  913. { cchar_2_pchar } @ttypeconvnode.resulttype_cchar_to_pchar,
  914. { cstring_2_pchar } @ttypeconvnode.resulttype_cstring_to_pchar,
  915. { ansistring_2_pchar } nil,
  916. { string_2_chararray } @ttypeconvnode.resulttype_string_to_chararray,
  917. { chararray_2_string } @ttypeconvnode.resulttype_chararray_to_string,
  918. { array_2_pointer } nil,
  919. { pointer_2_array } nil,
  920. { int_2_int } @ttypeconvnode.resulttype_int_to_int,
  921. { int_2_bool } nil,
  922. { bool_2_bool } nil,
  923. { bool_2_int } nil,
  924. { real_2_real } @ttypeconvnode.resulttype_real_to_real,
  925. { int_2_real } @ttypeconvnode.resulttype_int_to_real,
  926. { real_2_currency } @ttypeconvnode.resulttype_real_to_currency,
  927. { proc_2_procvar } nil,
  928. { arrayconstructor_2_set } @ttypeconvnode.resulttype_arrayconstructor_to_set,
  929. { load_smallset } nil,
  930. { cord_2_pointer } @ttypeconvnode.resulttype_cord_to_pointer,
  931. { intf_2_string } nil,
  932. { intf_2_guid } @ttypeconvnode.resulttype_interface_to_guid,
  933. { class_2_intf } nil,
  934. { char_2_char } @ttypeconvnode.resulttype_char_to_char,
  935. { normal_2_smallset} nil,
  936. { dynarray_2_openarray} @resulttype_dynarray_to_openarray,
  937. { pwchar_2_string} @resulttype_pwchar_to_string,
  938. { variant_2_dynarray} @resulttype_variant_to_dynarray,
  939. { dynarray_2_variant} @resulttype_dynarray_to_variant,
  940. { variant_2_enum} @resulttype_variant_to_enum,
  941. { enum_2_variant} @resulttype_enum_to_variant
  942. );
  943. type
  944. tprocedureofobject = function : tnode of object;
  945. var
  946. r : packed record
  947. proc : pointer;
  948. obj : pointer;
  949. end;
  950. begin
  951. result:=nil;
  952. { this is a little bit dirty but it works }
  953. { and should be quite portable too }
  954. r.proc:=resulttypeconvert[c];
  955. r.obj:=self;
  956. if assigned(r.proc) then
  957. result:=tprocedureofobject(r)();
  958. end;
  959. {$else}
  960. begin
  961. case c of
  962. tc_string_2_string: resulttype_string_to_string;
  963. tc_char_2_string : resulttype_char_to_string;
  964. tc_char_2_chararray: resulttype_char_to_chararray;
  965. tc_pchar_2_string : resulttype_pchar_to_string;
  966. tc_cchar_2_pchar : resulttype_cchar_to_pchar;
  967. tc_cstring_2_pchar : resulttype_cstring_to_pchar;
  968. tc_string_2_chararray : resulttype_string_to_chararray;
  969. tc_chararray_2_string : resulttype_chararray_to_string;
  970. tc_real_2_real : resulttype_real_to_real;
  971. tc_int_2_real : resulttype_int_to_real;
  972. tc_real_2_currency : resulttype_real_to_currency;
  973. tc_arrayconstructor_2_set : resulttype_arrayconstructor_to_set;
  974. tc_cord_2_pointer : resulttype_cord_to_pointer;
  975. tc_intf_2_guid : resulttype_interface_to_guid;
  976. tc_char_2_char : resulttype_char_to_char;
  977. tc_dynarray_2_openarray : resulttype_dynarray_to_openarray;
  978. tc_pwchar_2_string : resulttype_pwchar_to_string;
  979. tc_variant_2_dynarray : resulttype_variant_to_dynarray;
  980. tc_dynarray_2_variant : resulttype_dynarray_to_variant;
  981. end;
  982. end;
  983. {$Endif fpc}
  984. function ttypeconvnode.det_resulttype:tnode;
  985. var
  986. hp : tnode;
  987. currprocdef,
  988. aprocdef : tprocdef;
  989. eq : tequaltype;
  990. begin
  991. result:=nil;
  992. resulttype:=totype;
  993. resulttypepass(left);
  994. if codegenerror then
  995. exit;
  996. { When absolute force tc_equal }
  997. if (nf_absolute in flags) then
  998. begin
  999. convtype:=tc_equal;
  1000. exit;
  1001. end;
  1002. eq:=compare_defs_ext(left.resulttype.def,resulttype.def,left.nodetype,
  1003. nf_explicit in flags,true,convtype,aprocdef);
  1004. case eq of
  1005. te_exact,
  1006. te_equal :
  1007. begin
  1008. { because is_equal only checks the basetype for sets we need to
  1009. check here if we are loading a smallset into a normalset }
  1010. if (resulttype.def.deftype=setdef) and
  1011. (left.resulttype.def.deftype=setdef) and
  1012. ((tsetdef(resulttype.def).settype = smallset) xor
  1013. (tsetdef(left.resulttype.def).settype = smallset)) then
  1014. begin
  1015. { constant sets can be converted by changing the type only }
  1016. if (left.nodetype=setconstn) then
  1017. begin
  1018. left.resulttype:=resulttype;
  1019. result:=left;
  1020. left:=nil;
  1021. exit;
  1022. end;
  1023. if (tsetdef(resulttype.def).settype <> smallset) then
  1024. convtype:=tc_load_smallset
  1025. else
  1026. convtype := tc_normal_2_smallset;
  1027. exit;
  1028. end
  1029. else
  1030. begin
  1031. { Only leave when there is no conversion to do.
  1032. We can still need to call a conversion routine,
  1033. like the routine to convert a stringconstnode }
  1034. if convtype in [tc_equal,tc_not_possible] then
  1035. begin
  1036. left.resulttype:=resulttype;
  1037. result:=left;
  1038. left:=nil;
  1039. exit;
  1040. end;
  1041. end;
  1042. end;
  1043. te_convert_l1,
  1044. te_convert_l2,
  1045. te_convert_l3 :
  1046. begin
  1047. { nothing to do }
  1048. end;
  1049. te_convert_operator :
  1050. begin
  1051. include(current_procinfo.flags,pi_do_call);
  1052. inc(overloaded_operators[_assignment].refs);
  1053. hp:=ccallnode.create(ccallparanode.create(left,nil),
  1054. overloaded_operators[_assignment],nil,nil);
  1055. { tell explicitly which def we must use !! (PM) }
  1056. tcallnode(hp).procdefinition:=aprocdef;
  1057. left:=nil;
  1058. result:=hp;
  1059. exit;
  1060. end;
  1061. te_incompatible :
  1062. begin
  1063. { Procedures have a resulttype.def of voiddef and functions of their
  1064. own resulttype.def. They will therefore always be incompatible with
  1065. a procvar. Because isconvertable cannot check for procedures we
  1066. use an extra check for them.}
  1067. if (m_tp_procvar in aktmodeswitches) and
  1068. (resulttype.def.deftype=procvardef) then
  1069. begin
  1070. if is_procsym_load(left) then
  1071. begin
  1072. if (left.nodetype<>addrn) then
  1073. begin
  1074. convtype:=tc_proc_2_procvar;
  1075. { Now check if the procedure we are going to assign to
  1076. the procvar, is compatible with the procvar's type }
  1077. if not(nf_explicit in flags) and
  1078. (proc_to_procvar_equal(tprocsym(tloadnode(left).symtableentry).first_procdef,
  1079. tprocvardef(resulttype.def),true)=te_incompatible) then
  1080. IncompatibleTypes(tprocsym(tloadnode(left).symtableentry).first_procdef,resulttype.def);
  1081. exit;
  1082. end;
  1083. end
  1084. else
  1085. if (left.nodetype=calln) and
  1086. (tcallnode(left).para_count=0) then
  1087. begin
  1088. if assigned(tcallnode(left).right) then
  1089. begin
  1090. { this is already a procvar, if it is really equal
  1091. is checked below }
  1092. convtype:=tc_equal;
  1093. hp:=tcallnode(left).right.getcopy;
  1094. currprocdef:=tprocdef(hp.resulttype.def);
  1095. end
  1096. else
  1097. begin
  1098. convtype:=tc_proc_2_procvar;
  1099. currprocdef:=Tprocsym(Tcallnode(left).symtableprocentry).search_procdef_byprocvardef(Tprocvardef(resulttype.def));
  1100. hp:=cloadnode.create_procvar(tprocsym(tcallnode(left).symtableprocentry),
  1101. currprocdef,tcallnode(left).symtableproc);
  1102. if (tcallnode(left).symtableprocentry.owner.symtabletype=objectsymtable) then
  1103. begin
  1104. if assigned(tcallnode(left).methodpointer) then
  1105. begin
  1106. { Under certain circumstances the methodpointer is a loadvmtaddrn
  1107. which isn't possible if it is used as a method pointer, so
  1108. fix this.
  1109. If you change this, ensure that tests/tbs/tw2669.pp still works }
  1110. if tcallnode(left).methodpointer.nodetype=loadvmtaddrn then
  1111. tloadnode(hp).set_mp(tloadvmtaddrnode(tcallnode(left).methodpointer).left.getcopy)
  1112. else
  1113. tloadnode(hp).set_mp(tcallnode(left).methodpointer.getcopy);
  1114. end
  1115. else
  1116. tloadnode(hp).set_mp(load_self_node);
  1117. end;
  1118. resulttypepass(hp);
  1119. end;
  1120. left.free;
  1121. left:=hp;
  1122. { Now check if the procedure we are going to assign to
  1123. the procvar, is compatible with the procvar's type }
  1124. if not(nf_explicit in flags) and
  1125. (proc_to_procvar_equal(currprocdef,
  1126. tprocvardef(resulttype.def),true)=te_incompatible) then
  1127. IncompatibleTypes(left.resulttype.def,resulttype.def);
  1128. exit;
  1129. end;
  1130. end;
  1131. { Handle explicit type conversions }
  1132. if nf_explicit in flags then
  1133. begin
  1134. { do common tc_equal cast }
  1135. convtype:=tc_equal;
  1136. { check if the result could be in a register }
  1137. if (not(tstoreddef(resulttype.def).is_intregable) and
  1138. not(tstoreddef(resulttype.def).is_fpuregable)) or
  1139. ((left.resulttype.def.deftype = floatdef) and
  1140. (resulttype.def.deftype <> floatdef)) then
  1141. make_not_regable(left);
  1142. { class to class or object to object, with checkobject support }
  1143. if (resulttype.def.deftype=objectdef) and
  1144. (left.resulttype.def.deftype=objectdef) then
  1145. begin
  1146. if (cs_check_object in aktlocalswitches) then
  1147. begin
  1148. if is_class_or_interface(resulttype.def) then
  1149. begin
  1150. { we can translate the typeconvnode to 'as' when
  1151. typecasting to a class or interface }
  1152. hp:=casnode.create(left,cloadvmtaddrnode.create(ctypenode.create(resulttype)));
  1153. left:=nil;
  1154. result:=hp;
  1155. exit;
  1156. end;
  1157. end
  1158. else
  1159. begin
  1160. { check if the types are related }
  1161. if (not(tobjectdef(left.resulttype.def).is_related(tobjectdef(resulttype.def)))) and
  1162. (not(tobjectdef(resulttype.def).is_related(tobjectdef(left.resulttype.def)))) then
  1163. CGMessage2(type_w_classes_not_related,left.resulttype.def.typename,resulttype.def.typename);
  1164. end;
  1165. end
  1166. else
  1167. begin
  1168. { only if the same size or formal def }
  1169. if not(
  1170. (left.resulttype.def.deftype=formaldef) or
  1171. (
  1172. not(is_open_array(left.resulttype.def)) and
  1173. (left.resulttype.def.size=resulttype.def.size)
  1174. ) or
  1175. (
  1176. is_void(left.resulttype.def) and
  1177. (left.nodetype=derefn)
  1178. )
  1179. ) then
  1180. CGMessage(cg_e_illegal_type_conversion);
  1181. end;
  1182. end
  1183. else
  1184. IncompatibleTypes(left.resulttype.def,resulttype.def);
  1185. end;
  1186. else
  1187. internalerror(200211231);
  1188. end;
  1189. { Give hint for unportable code }
  1190. if ((left.resulttype.def.deftype=orddef) and
  1191. (resulttype.def.deftype in [pointerdef,procvardef,classrefdef])) or
  1192. ((resulttype.def.deftype=orddef) and
  1193. (left.resulttype.def.deftype in [pointerdef,procvardef,classrefdef])) then
  1194. CGMessage(cg_h_pointer_to_longint_conv_not_portable);
  1195. { Constant folding and other node transitions to
  1196. remove the typeconv node }
  1197. case left.nodetype of
  1198. loadn :
  1199. begin
  1200. { tp7 procvar support, when right is not a procvardef and we got a
  1201. loadn of a procvar (ignore procedures as void can not be converted)
  1202. then convert to a calln, the check for the result is already done
  1203. in is_convertible, also no conflict with @procvar is here because
  1204. that has an extra addrn.
  1205. The following deftypes always access the procvar: recorddef,setdef. This
  1206. has been tested with Kylix using trial and error }
  1207. if (m_tp_procvar in aktmodeswitches) and
  1208. (resulttype.def.deftype<>procvardef) and
  1209. { ignore internal typecasts to access methodpointer fields }
  1210. not(resulttype.def.deftype in [recorddef,setdef]) and
  1211. (left.resulttype.def.deftype=procvardef) and
  1212. (not is_void(tprocvardef(left.resulttype.def).rettype.def)) then
  1213. begin
  1214. hp:=ccallnode.create_procvar(nil,left);
  1215. resulttypepass(hp);
  1216. left:=hp;
  1217. end;
  1218. end;
  1219. calln :
  1220. begin
  1221. { See remark for loadn, this is the reverse }
  1222. if (m_tp_procvar in aktmodeswitches) and
  1223. (resulttype.def.deftype in [recorddef,setdef]) and
  1224. assigned(tcallnode(left).right) and
  1225. (tcallnode(left).para_count=0) then
  1226. begin
  1227. hp:=tcallnode(left).right.getcopy;
  1228. resulttypepass(hp);
  1229. left.free;
  1230. left:=hp;
  1231. end;
  1232. end;
  1233. niln :
  1234. begin
  1235. { nil to ordinal node }
  1236. if (resulttype.def.deftype=orddef) then
  1237. begin
  1238. hp:=cordconstnode.create(0,resulttype,true);
  1239. result:=hp;
  1240. exit;
  1241. end
  1242. else
  1243. { fold nil to any pointer type }
  1244. if (resulttype.def.deftype=pointerdef) then
  1245. begin
  1246. hp:=cnilnode.create;
  1247. hp.resulttype:=resulttype;
  1248. result:=hp;
  1249. exit;
  1250. end
  1251. else
  1252. { remove typeconv after niln, but not when the result is a
  1253. methodpointer. The typeconv of the methodpointer will then
  1254. take care of updateing size of niln to OS_64 }
  1255. if not((resulttype.def.deftype=procvardef) and
  1256. (po_methodpointer in tprocvardef(resulttype.def).procoptions)) then
  1257. begin
  1258. left.resulttype:=resulttype;
  1259. result:=left;
  1260. left:=nil;
  1261. exit;
  1262. end;
  1263. end;
  1264. ordconstn :
  1265. begin
  1266. { ordinal contants can be directly converted }
  1267. { but not char to char because it is a widechar to char or via versa }
  1268. { which needs extra code to do the code page transistion }
  1269. if is_ordinal(resulttype.def) and
  1270. not(convtype=tc_char_2_char) then
  1271. begin
  1272. { replace the resulttype and recheck the range }
  1273. left.resulttype:=resulttype;
  1274. testrange(left.resulttype.def,tordconstnode(left).value,(nf_explicit in flags));
  1275. result:=left;
  1276. left:=nil;
  1277. exit;
  1278. end;
  1279. end;
  1280. pointerconstn :
  1281. begin
  1282. { pointerconstn to any pointer is folded too }
  1283. if (resulttype.def.deftype=pointerdef) then
  1284. begin
  1285. left.resulttype:=resulttype;
  1286. result:=left;
  1287. left:=nil;
  1288. exit;
  1289. end
  1290. { constant pointer to ordinal }
  1291. else if is_ordinal(resulttype.def) then
  1292. begin
  1293. hp:=cordconstnode.create(tpointerconstnode(left).value,
  1294. resulttype,true);
  1295. result:=hp;
  1296. exit;
  1297. end;
  1298. end;
  1299. end;
  1300. { now call the resulttype helper to do constant folding }
  1301. result:=resulttype_call_helper(convtype);
  1302. end;
  1303. procedure Ttypeconvnode.mark_write;
  1304. begin
  1305. left.mark_write;
  1306. end;
  1307. function ttypeconvnode.first_cord_to_pointer : tnode;
  1308. begin
  1309. result:=nil;
  1310. internalerror(200104043);
  1311. end;
  1312. function ttypeconvnode.first_int_to_int : tnode;
  1313. begin
  1314. first_int_to_int:=nil;
  1315. if (left.expectloc<>LOC_REGISTER) and
  1316. not is_void(left.resulttype.def) and
  1317. (resulttype.def.size>left.resulttype.def.size) then
  1318. expectloc:=LOC_REGISTER
  1319. else
  1320. expectloc:=left.expectloc;
  1321. if is_64bit(resulttype.def) then
  1322. registers32:=max(registers32,2)
  1323. else
  1324. registers32:=max(registers32,1);
  1325. end;
  1326. function ttypeconvnode.first_cstring_to_pchar : tnode;
  1327. begin
  1328. first_cstring_to_pchar:=nil;
  1329. registers32:=1;
  1330. expectloc:=LOC_REGISTER;
  1331. end;
  1332. function ttypeconvnode.first_string_to_chararray : tnode;
  1333. begin
  1334. first_string_to_chararray:=nil;
  1335. expectloc:=left.expectloc;
  1336. end;
  1337. function ttypeconvnode.first_char_to_string : tnode;
  1338. begin
  1339. first_char_to_string:=nil;
  1340. expectloc:=LOC_REFERENCE;
  1341. end;
  1342. function ttypeconvnode.first_nothing : tnode;
  1343. begin
  1344. first_nothing:=nil;
  1345. end;
  1346. function ttypeconvnode.first_array_to_pointer : tnode;
  1347. begin
  1348. first_array_to_pointer:=nil;
  1349. if registers32<1 then
  1350. registers32:=1;
  1351. expectloc:=LOC_REGISTER;
  1352. end;
  1353. function ttypeconvnode.first_int_to_real: tnode;
  1354. var
  1355. fname: string[32];
  1356. typname : string[12];
  1357. begin
  1358. { Get the type name }
  1359. { Normally the typename should be one of the following:
  1360. single, double - carl
  1361. }
  1362. typname := lower(pbestrealtype^.def.gettypename);
  1363. { converting a 64bit integer to a float requires a helper }
  1364. if is_64bit(left.resulttype.def) then
  1365. begin
  1366. if is_signed(left.resulttype.def) then
  1367. fname := 'fpc_int64_to_'+typname
  1368. else
  1369. {$warning generic conversion from int to float does not support unsigned integers}
  1370. fname := 'fpc_int64_to_'+typname;
  1371. result := ccallnode.createintern(fname,ccallparanode.create(
  1372. left,nil));
  1373. left:=nil;
  1374. firstpass(result);
  1375. exit;
  1376. end
  1377. else
  1378. { other integers are supposed to be 32 bit }
  1379. begin
  1380. {$warning generic conversion from int to float does not support unsigned integers}
  1381. if is_signed(left.resulttype.def) then
  1382. fname := 'fpc_longint_to_'+typname
  1383. else
  1384. fname := 'fpc_longint_to_'+typname;
  1385. result := ccallnode.createintern(fname,ccallparanode.create(
  1386. left,nil));
  1387. left:=nil;
  1388. firstpass(result);
  1389. exit;
  1390. end;
  1391. end;
  1392. function ttypeconvnode.first_real_to_real : tnode;
  1393. begin
  1394. first_real_to_real:=nil;
  1395. { comp isn't a floating type }
  1396. if registersfpu<1 then
  1397. registersfpu:=1;
  1398. expectloc:=LOC_FPUREGISTER;
  1399. end;
  1400. function ttypeconvnode.first_pointer_to_array : tnode;
  1401. begin
  1402. first_pointer_to_array:=nil;
  1403. if registers32<1 then
  1404. registers32:=1;
  1405. expectloc:=LOC_REFERENCE;
  1406. end;
  1407. function ttypeconvnode.first_cchar_to_pchar : tnode;
  1408. begin
  1409. first_cchar_to_pchar:=nil;
  1410. internalerror(200104021);
  1411. end;
  1412. function ttypeconvnode.first_bool_to_int : tnode;
  1413. begin
  1414. first_bool_to_int:=nil;
  1415. { byte(boolean) or word(wordbool) or longint(longbool) must
  1416. be accepted for var parameters }
  1417. if (nf_explicit in flags) and
  1418. (left.resulttype.def.size=resulttype.def.size) and
  1419. (left.expectloc in [LOC_REFERENCE,LOC_CREFERENCE,LOC_CREGISTER]) then
  1420. exit;
  1421. { when converting to 64bit, first convert to a 32bit int and then }
  1422. { convert to a 64bit int (only necessary for 32bit processors) (JM) }
  1423. if resulttype.def.size > sizeof(aword) then
  1424. begin
  1425. result := ctypeconvnode.create_explicit(left,u32bittype);
  1426. result := ctypeconvnode.create(result,resulttype);
  1427. left := nil;
  1428. firstpass(result);
  1429. exit;
  1430. end;
  1431. expectloc:=LOC_REGISTER;
  1432. if registers32<1 then
  1433. registers32:=1;
  1434. end;
  1435. function ttypeconvnode.first_int_to_bool : tnode;
  1436. begin
  1437. first_int_to_bool:=nil;
  1438. { byte(boolean) or word(wordbool) or longint(longbool) must
  1439. be accepted for var parameters }
  1440. if (nf_explicit in flags) and
  1441. (left.resulttype.def.size=resulttype.def.size) and
  1442. (left.expectloc in [LOC_REFERENCE,LOC_CREFERENCE,LOC_CREGISTER]) then
  1443. exit;
  1444. expectloc:=LOC_REGISTER;
  1445. { need if bool to bool !!
  1446. not very nice !!
  1447. insertypeconv(left,s32bittype);
  1448. left.explizit:=true;
  1449. firstpass(left); }
  1450. if registers32<1 then
  1451. registers32:=1;
  1452. end;
  1453. function ttypeconvnode.first_bool_to_bool : tnode;
  1454. begin
  1455. first_bool_to_bool:=nil;
  1456. expectloc:=LOC_REGISTER;
  1457. if registers32<1 then
  1458. registers32:=1;
  1459. end;
  1460. function ttypeconvnode.first_char_to_char : tnode;
  1461. begin
  1462. first_char_to_char:=first_int_to_int;
  1463. end;
  1464. function ttypeconvnode.first_proc_to_procvar : tnode;
  1465. begin
  1466. first_proc_to_procvar:=nil;
  1467. if assigned(tunarynode(left).left) then
  1468. begin
  1469. if (left.expectloc<>LOC_CREFERENCE) then
  1470. CGMessage(cg_e_illegal_expression);
  1471. registers32:=left.registers32;
  1472. expectloc:=left.expectloc
  1473. end
  1474. else
  1475. begin
  1476. registers32:=left.registers32;
  1477. if registers32<1 then
  1478. registers32:=1;
  1479. expectloc:=LOC_REGISTER;
  1480. end
  1481. end;
  1482. function ttypeconvnode.first_load_smallset : tnode;
  1483. var
  1484. srsym: ttypesym;
  1485. p: tcallparanode;
  1486. begin
  1487. if not searchsystype('FPC_SMALL_SET',srsym) then
  1488. internalerror(200108313);
  1489. p := ccallparanode.create(left,nil);
  1490. { reused }
  1491. left := nil;
  1492. { convert parameter explicitely to fpc_small_set }
  1493. p.left := ctypeconvnode.create_explicit(p.left,srsym.restype);
  1494. { create call, adjust resulttype }
  1495. result :=
  1496. ccallnode.createinternres('fpc_set_load_small',p,resulttype);
  1497. firstpass(result);
  1498. end;
  1499. function ttypeconvnode.first_ansistring_to_pchar : tnode;
  1500. begin
  1501. first_ansistring_to_pchar:=nil;
  1502. expectloc:=LOC_REGISTER;
  1503. if registers32<1 then
  1504. registers32:=1;
  1505. end;
  1506. function ttypeconvnode.first_arrayconstructor_to_set : tnode;
  1507. begin
  1508. first_arrayconstructor_to_set:=nil;
  1509. internalerror(200104022);
  1510. end;
  1511. function ttypeconvnode.first_class_to_intf : tnode;
  1512. begin
  1513. first_class_to_intf:=nil;
  1514. expectloc:=LOC_REGISTER;
  1515. if registers32<1 then
  1516. registers32:=1;
  1517. end;
  1518. function ttypeconvnode._first_int_to_int : tnode;
  1519. begin
  1520. result:=first_int_to_int;
  1521. end;
  1522. function ttypeconvnode._first_cstring_to_pchar : tnode;
  1523. begin
  1524. result:=first_cstring_to_pchar;
  1525. end;
  1526. function ttypeconvnode._first_string_to_chararray : tnode;
  1527. begin
  1528. result:=first_string_to_chararray;
  1529. end;
  1530. function ttypeconvnode._first_char_to_string : tnode;
  1531. begin
  1532. result:=first_char_to_string;
  1533. end;
  1534. function ttypeconvnode._first_nothing : tnode;
  1535. begin
  1536. result:=first_nothing;
  1537. end;
  1538. function ttypeconvnode._first_array_to_pointer : tnode;
  1539. begin
  1540. result:=first_array_to_pointer;
  1541. end;
  1542. function ttypeconvnode._first_int_to_real : tnode;
  1543. begin
  1544. result:=first_int_to_real;
  1545. end;
  1546. function ttypeconvnode._first_real_to_real : tnode;
  1547. begin
  1548. result:=first_real_to_real;
  1549. end;
  1550. function ttypeconvnode._first_pointer_to_array : tnode;
  1551. begin
  1552. result:=first_pointer_to_array;
  1553. end;
  1554. function ttypeconvnode._first_cchar_to_pchar : tnode;
  1555. begin
  1556. result:=first_cchar_to_pchar;
  1557. end;
  1558. function ttypeconvnode._first_bool_to_int : tnode;
  1559. begin
  1560. result:=first_bool_to_int;
  1561. end;
  1562. function ttypeconvnode._first_int_to_bool : tnode;
  1563. begin
  1564. result:=first_int_to_bool;
  1565. end;
  1566. function ttypeconvnode._first_bool_to_bool : tnode;
  1567. begin
  1568. result:=first_bool_to_bool;
  1569. end;
  1570. function ttypeconvnode._first_proc_to_procvar : tnode;
  1571. begin
  1572. result:=first_proc_to_procvar;
  1573. end;
  1574. function ttypeconvnode._first_load_smallset : tnode;
  1575. begin
  1576. result:=first_load_smallset;
  1577. end;
  1578. function ttypeconvnode._first_cord_to_pointer : tnode;
  1579. begin
  1580. result:=first_cord_to_pointer;
  1581. end;
  1582. function ttypeconvnode._first_ansistring_to_pchar : tnode;
  1583. begin
  1584. result:=first_ansistring_to_pchar;
  1585. end;
  1586. function ttypeconvnode._first_arrayconstructor_to_set : tnode;
  1587. begin
  1588. result:=first_arrayconstructor_to_set;
  1589. end;
  1590. function ttypeconvnode._first_class_to_intf : tnode;
  1591. begin
  1592. result:=first_class_to_intf;
  1593. end;
  1594. function ttypeconvnode._first_char_to_char : tnode;
  1595. begin
  1596. result:=first_char_to_char;
  1597. end;
  1598. function ttypeconvnode.first_call_helper(c : tconverttype) : tnode;
  1599. const
  1600. firstconvert : array[tconverttype] of pointer = (
  1601. @ttypeconvnode._first_nothing, {equal}
  1602. @ttypeconvnode._first_nothing, {not_possible}
  1603. nil, { removed in resulttype_string_to_string }
  1604. @ttypeconvnode._first_char_to_string,
  1605. @ttypeconvnode._first_nothing, { char_2_chararray, needs nothing extra }
  1606. nil, { removed in resulttype_chararray_to_string }
  1607. @ttypeconvnode._first_cchar_to_pchar,
  1608. @ttypeconvnode._first_cstring_to_pchar,
  1609. @ttypeconvnode._first_ansistring_to_pchar,
  1610. @ttypeconvnode._first_string_to_chararray,
  1611. nil, { removed in resulttype_chararray_to_string }
  1612. @ttypeconvnode._first_array_to_pointer,
  1613. @ttypeconvnode._first_pointer_to_array,
  1614. @ttypeconvnode._first_int_to_int,
  1615. @ttypeconvnode._first_int_to_bool,
  1616. @ttypeconvnode._first_bool_to_bool,
  1617. @ttypeconvnode._first_bool_to_int,
  1618. @ttypeconvnode._first_real_to_real,
  1619. @ttypeconvnode._first_int_to_real,
  1620. nil, { removed in resulttype_real_to_currency }
  1621. @ttypeconvnode._first_proc_to_procvar,
  1622. @ttypeconvnode._first_arrayconstructor_to_set,
  1623. @ttypeconvnode._first_load_smallset,
  1624. @ttypeconvnode._first_cord_to_pointer,
  1625. @ttypeconvnode._first_nothing,
  1626. @ttypeconvnode._first_nothing,
  1627. @ttypeconvnode._first_class_to_intf,
  1628. @ttypeconvnode._first_char_to_char,
  1629. @ttypeconvnode._first_nothing,
  1630. @ttypeconvnode._first_nothing,
  1631. nil,
  1632. nil,
  1633. nil,
  1634. nil,
  1635. nil
  1636. );
  1637. type
  1638. tprocedureofobject = function : tnode of object;
  1639. var
  1640. r : packed record
  1641. proc : pointer;
  1642. obj : pointer;
  1643. end;
  1644. begin
  1645. { this is a little bit dirty but it works }
  1646. { and should be quite portable too }
  1647. r.proc:=firstconvert[c];
  1648. r.obj:=self;
  1649. if not assigned(r.proc) then
  1650. internalerror(200312081);
  1651. first_call_helper:=tprocedureofobject(r){$ifdef FPC}(){$endif FPC}
  1652. end;
  1653. function ttypeconvnode.pass_1 : tnode;
  1654. begin
  1655. result:=nil;
  1656. firstpass(left);
  1657. if codegenerror then
  1658. exit;
  1659. { load the value_str from the left part }
  1660. registers32:=left.registers32;
  1661. registersfpu:=left.registersfpu;
  1662. {$ifdef SUPPORT_MMX}
  1663. registersmmx:=left.registersmmx;
  1664. {$endif}
  1665. expectloc:=left.expectloc;
  1666. if (nf_explicit in flags) or
  1667. (nf_absolute in flags) then
  1668. begin
  1669. { check if the result could be in a register }
  1670. if not(tstoreddef(resulttype.def).is_intregable) and
  1671. not(tstoreddef(resulttype.def).is_fpuregable) then
  1672. make_not_regable(left);
  1673. end;
  1674. result:=first_call_helper(convtype);
  1675. end;
  1676. function ttypeconvnode.docompare(p: tnode) : boolean;
  1677. begin
  1678. docompare :=
  1679. inherited docompare(p) and
  1680. (convtype = ttypeconvnode(p).convtype);
  1681. end;
  1682. procedure ttypeconvnode._second_int_to_int;
  1683. begin
  1684. second_int_to_int;
  1685. end;
  1686. procedure ttypeconvnode._second_string_to_string;
  1687. begin
  1688. second_string_to_string;
  1689. end;
  1690. procedure ttypeconvnode._second_cstring_to_pchar;
  1691. begin
  1692. second_cstring_to_pchar;
  1693. end;
  1694. procedure ttypeconvnode._second_string_to_chararray;
  1695. begin
  1696. second_string_to_chararray;
  1697. end;
  1698. procedure ttypeconvnode._second_array_to_pointer;
  1699. begin
  1700. second_array_to_pointer;
  1701. end;
  1702. procedure ttypeconvnode._second_pointer_to_array;
  1703. begin
  1704. second_pointer_to_array;
  1705. end;
  1706. procedure ttypeconvnode._second_chararray_to_string;
  1707. begin
  1708. second_chararray_to_string;
  1709. end;
  1710. procedure ttypeconvnode._second_char_to_string;
  1711. begin
  1712. second_char_to_string;
  1713. end;
  1714. procedure ttypeconvnode._second_int_to_real;
  1715. begin
  1716. second_int_to_real;
  1717. end;
  1718. procedure ttypeconvnode._second_real_to_real;
  1719. begin
  1720. second_real_to_real;
  1721. end;
  1722. procedure ttypeconvnode._second_cord_to_pointer;
  1723. begin
  1724. second_cord_to_pointer;
  1725. end;
  1726. procedure ttypeconvnode._second_proc_to_procvar;
  1727. begin
  1728. second_proc_to_procvar;
  1729. end;
  1730. procedure ttypeconvnode._second_bool_to_int;
  1731. begin
  1732. second_bool_to_int;
  1733. end;
  1734. procedure ttypeconvnode._second_int_to_bool;
  1735. begin
  1736. second_int_to_bool;
  1737. end;
  1738. procedure ttypeconvnode._second_bool_to_bool;
  1739. begin
  1740. second_bool_to_bool;
  1741. end;
  1742. procedure ttypeconvnode._second_load_smallset;
  1743. begin
  1744. second_load_smallset;
  1745. end;
  1746. procedure ttypeconvnode._second_ansistring_to_pchar;
  1747. begin
  1748. second_ansistring_to_pchar;
  1749. end;
  1750. procedure ttypeconvnode._second_class_to_intf;
  1751. begin
  1752. second_class_to_intf;
  1753. end;
  1754. procedure ttypeconvnode._second_char_to_char;
  1755. begin
  1756. second_char_to_char;
  1757. end;
  1758. procedure ttypeconvnode._second_nothing;
  1759. begin
  1760. second_nothing;
  1761. end;
  1762. procedure ttypeconvnode.second_call_helper(c : tconverttype);
  1763. {$ifdef fpc}
  1764. const
  1765. secondconvert : array[tconverttype] of pointer = (
  1766. @_second_nothing, {equal}
  1767. @_second_nothing, {not_possible}
  1768. @_second_nothing, {second_string_to_string, handled in resulttype pass }
  1769. @_second_char_to_string,
  1770. @_second_nothing, {char_to_charray}
  1771. @_second_nothing, { pchar_to_string, handled in resulttype pass }
  1772. @_second_nothing, {cchar_to_pchar}
  1773. @_second_cstring_to_pchar,
  1774. @_second_ansistring_to_pchar,
  1775. @_second_string_to_chararray,
  1776. @_second_nothing, { chararray_to_string, handled in resulttype pass }
  1777. @_second_array_to_pointer,
  1778. @_second_pointer_to_array,
  1779. @_second_int_to_int,
  1780. @_second_int_to_bool,
  1781. @_second_bool_to_bool,
  1782. @_second_bool_to_int,
  1783. @_second_real_to_real,
  1784. @_second_int_to_real,
  1785. @_second_nothing, { real_to_currency, handled in resulttype pass }
  1786. @_second_proc_to_procvar,
  1787. @_second_nothing, { arrayconstructor_to_set }
  1788. @_second_nothing, { second_load_smallset, handled in first pass }
  1789. @_second_cord_to_pointer,
  1790. @_second_nothing, { interface 2 string }
  1791. @_second_nothing, { interface 2 guid }
  1792. @_second_class_to_intf,
  1793. @_second_char_to_char,
  1794. @_second_nothing, { normal_2_smallset }
  1795. @_second_nothing, { dynarray_2_openarray }
  1796. @_second_nothing, { pwchar_2_string }
  1797. @_second_nothing, { variant_2_dynarray }
  1798. @_second_nothing, { dynarray_2_variant}
  1799. @_second_nothing, { variant_2_enum }
  1800. @_second_nothing { enum_2_variant }
  1801. );
  1802. type
  1803. tprocedureofobject = procedure of object;
  1804. var
  1805. r : packed record
  1806. proc : pointer;
  1807. obj : pointer;
  1808. end;
  1809. begin
  1810. { this is a little bit dirty but it works }
  1811. { and should be quite portable too }
  1812. r.proc:=secondconvert[c];
  1813. r.obj:=self;
  1814. tprocedureofobject(r)();
  1815. end;
  1816. {$else fpc}
  1817. begin
  1818. case c of
  1819. tc_equal,
  1820. tc_not_possible,
  1821. tc_string_2_string : second_nothing;
  1822. tc_char_2_string : second_char_to_string;
  1823. tc_char_2_chararray : second_nothing;
  1824. tc_pchar_2_string : second_nothing;
  1825. tc_cchar_2_pchar : second_nothing;
  1826. tc_cstring_2_pchar : second_cstring_to_pchar;
  1827. tc_ansistring_2_pchar : second_ansistring_to_pchar;
  1828. tc_string_2_chararray : second_string_to_chararray;
  1829. tc_chararray_2_string : second_nothing;
  1830. tc_array_2_pointer : second_array_to_pointer;
  1831. tc_pointer_2_array : second_pointer_to_array;
  1832. tc_int_2_int : second_int_to_int;
  1833. tc_int_2_bool : second_int_to_bool;
  1834. tc_bool_2_bool : second_bool_to_bool;
  1835. tc_bool_2_int : second_bool_to_int;
  1836. tc_real_2_real : second_real_to_real;
  1837. tc_int_2_real : second_int_to_real;
  1838. tc_real_2_currency : second_nothing;
  1839. tc_proc_2_procvar : second_proc_to_procvar;
  1840. tc_arrayconstructor_2_set : second_nothing;
  1841. tc_load_smallset : second_nothing;
  1842. tc_cord_2_pointer : second_cord_to_pointer;
  1843. tc_intf_2_string : second_nothing;
  1844. tc_intf_2_guid : second_nothing;
  1845. tc_class_2_intf : second_class_to_intf;
  1846. tc_char_2_char : second_char_to_char;
  1847. tc_normal_2_smallset : second_nothing;
  1848. tc_dynarray_2_openarray : second_nothing;
  1849. tc_pwchar_2_string : second_nothing;
  1850. tc_variant_2_dynarray : second_nothing;
  1851. tc_dynarray_2_variant : second_nothing;
  1852. else internalerror(2002101101);
  1853. end;
  1854. end;
  1855. {$endif fpc}
  1856. {*****************************************************************************
  1857. TISNODE
  1858. *****************************************************************************}
  1859. constructor tisnode.create(l,r : tnode);
  1860. begin
  1861. inherited create(isn,l,r);
  1862. end;
  1863. function tisnode.det_resulttype:tnode;
  1864. var
  1865. paras: tcallparanode;
  1866. begin
  1867. result:=nil;
  1868. resulttypepass(left);
  1869. resulttypepass(right);
  1870. set_varstate(left,vs_used,true);
  1871. set_varstate(right,vs_used,true);
  1872. if codegenerror then
  1873. exit;
  1874. if (right.resulttype.def.deftype=classrefdef) then
  1875. begin
  1876. { left must be a class }
  1877. if is_class(left.resulttype.def) then
  1878. begin
  1879. { the operands must be related }
  1880. if (not(tobjectdef(left.resulttype.def).is_related(
  1881. tobjectdef(tclassrefdef(right.resulttype.def).pointertype.def)))) and
  1882. (not(tobjectdef(tclassrefdef(right.resulttype.def).pointertype.def).is_related(
  1883. tobjectdef(left.resulttype.def)))) then
  1884. CGMessage2(type_e_classes_not_related,left.resulttype.def.typename,
  1885. tclassrefdef(right.resulttype.def).pointertype.def.typename);
  1886. end
  1887. else
  1888. CGMessage1(type_e_class_type_expected,left.resulttype.def.typename);
  1889. { call fpc_do_is helper }
  1890. paras := ccallparanode.create(
  1891. left,
  1892. ccallparanode.create(
  1893. right,nil));
  1894. result := ccallnode.createintern('fpc_do_is',paras);
  1895. left := nil;
  1896. right := nil;
  1897. end
  1898. else if is_interface(right.resulttype.def) then
  1899. begin
  1900. { left is a class }
  1901. if is_class(left.resulttype.def) then
  1902. begin
  1903. { the operands must be related }
  1904. if not(assigned(tobjectdef(left.resulttype.def).implementedinterfaces) and
  1905. (tobjectdef(left.resulttype.def).implementedinterfaces.searchintf(right.resulttype.def)<>-1)) then
  1906. CGMessage2(type_e_classes_not_related,left.resulttype.def.typename,right.resulttype.def.typename);
  1907. end
  1908. { left is an interface }
  1909. else if is_interface(left.resulttype.def) then
  1910. begin
  1911. { the operands must be related }
  1912. if (not(tobjectdef(left.resulttype.def).is_related(tobjectdef(right.resulttype.def)))) and
  1913. (not(tobjectdef(right.resulttype.def).is_related(tobjectdef(left.resulttype.def)))) then
  1914. CGMessage(type_e_mismatch);
  1915. end
  1916. else
  1917. CGMessage1(type_e_class_type_expected,left.resulttype.def.typename);
  1918. { call fpc_do_is helper }
  1919. paras := ccallparanode.create(
  1920. left,
  1921. ccallparanode.create(
  1922. right,nil));
  1923. result := ccallnode.createintern('fpc_do_is',paras);
  1924. left := nil;
  1925. right := nil;
  1926. end
  1927. else
  1928. CGMessage1(type_e_class_or_interface_type_expected,right.resulttype.def.typename);
  1929. resulttype:=booltype;
  1930. end;
  1931. function tisnode.pass_1 : tnode;
  1932. begin
  1933. internalerror(200204254);
  1934. result:=nil;
  1935. end;
  1936. { dummy pass_2, it will never be called, but we need one since }
  1937. { you can't instantiate an abstract class }
  1938. procedure tisnode.pass_2;
  1939. begin
  1940. end;
  1941. {*****************************************************************************
  1942. TASNODE
  1943. *****************************************************************************}
  1944. constructor tasnode.create(l,r : tnode);
  1945. begin
  1946. inherited create(asn,l,r);
  1947. call := nil;
  1948. end;
  1949. destructor tasnode.destroy;
  1950. begin
  1951. call.free;
  1952. inherited destroy;
  1953. end;
  1954. function tasnode.det_resulttype:tnode;
  1955. var
  1956. hp : tnode;
  1957. begin
  1958. result:=nil;
  1959. resulttypepass(right);
  1960. resulttypepass(left);
  1961. set_varstate(right,vs_used,true);
  1962. set_varstate(left,vs_used,true);
  1963. if codegenerror then
  1964. exit;
  1965. if (right.resulttype.def.deftype=classrefdef) then
  1966. begin
  1967. { left must be a class }
  1968. if is_class(left.resulttype.def) then
  1969. begin
  1970. { the operands must be related }
  1971. if (not(tobjectdef(left.resulttype.def).is_related(
  1972. tobjectdef(tclassrefdef(right.resulttype.def).pointertype.def)))) and
  1973. (not(tobjectdef(tclassrefdef(right.resulttype.def).pointertype.def).is_related(
  1974. tobjectdef(left.resulttype.def)))) then
  1975. CGMessage2(type_e_classes_not_related,left.resulttype.def.typename,
  1976. tclassrefdef(right.resulttype.def).pointertype.def.typename);
  1977. end
  1978. else
  1979. CGMessage1(type_e_class_type_expected,left.resulttype.def.typename);
  1980. resulttype:=tclassrefdef(right.resulttype.def).pointertype;
  1981. end
  1982. else if is_interface(right.resulttype.def) then
  1983. begin
  1984. { left is a class }
  1985. if is_class(left.resulttype.def) then
  1986. begin
  1987. { the operands must be related
  1988. no, because the class instance could be a child class of the current one which
  1989. implements additional interfaces (FK)
  1990. b:=false;
  1991. o:=tobjectdef(left.resulttype.def);
  1992. while assigned(o) do
  1993. begin
  1994. if assigned(o.implementedinterfaces) and
  1995. (o.implementedinterfaces.searchintf(right.resulttype.def)<>-1) then
  1996. begin
  1997. b:=true;
  1998. break;
  1999. end;
  2000. o:=o.childof;
  2001. end;
  2002. if not(b) then
  2003. CGMessage2(type_e_classes_not_related,left.resulttype.def.typename,right.resulttype.def.typename);
  2004. }
  2005. end
  2006. { left is an interface }
  2007. else if is_interface(left.resulttype.def) then
  2008. begin
  2009. { the operands must be related
  2010. we don't necessarily know how the both interfaces are implemented, so we can't do this check (FK)
  2011. if (not(tobjectdef(left.resulttype.def).is_related(tobjectdef(right.resulttype.def)))) and
  2012. (not(tobjectdef(right.resulttype.def).is_related(tobjectdef(left.resulttype.def)))) then
  2013. CGMessage2(type_e_classes_not_related,left.resulttype.def.typename,right.resulttype.def.typename);
  2014. }
  2015. end
  2016. else
  2017. CGMessage1(type_e_class_type_expected,left.resulttype.def.typename);
  2018. resulttype:=right.resulttype;
  2019. { load the GUID of the interface }
  2020. if (right.nodetype=typen) then
  2021. begin
  2022. if assigned(tobjectdef(right.resulttype.def).iidguid) then
  2023. begin
  2024. hp:=cguidconstnode.create(tobjectdef(right.resulttype.def).iidguid^);
  2025. right.free;
  2026. right:=hp;
  2027. end
  2028. else
  2029. internalerror(200206282);
  2030. resulttypepass(right);
  2031. end;
  2032. end
  2033. else
  2034. CGMessage1(type_e_class_or_interface_type_expected,right.resulttype.def.typename);
  2035. end;
  2036. function tasnode.getcopy: tnode;
  2037. begin
  2038. result := inherited getcopy;
  2039. if assigned(call) then
  2040. tasnode(result).call := call.getcopy
  2041. else
  2042. tasnode(result).call := nil;
  2043. end;
  2044. function tasnode.pass_1 : tnode;
  2045. var
  2046. procname: string;
  2047. begin
  2048. result:=nil;
  2049. if not assigned(call) then
  2050. begin
  2051. if is_class(left.resulttype.def) and
  2052. (right.resulttype.def.deftype=classrefdef) then
  2053. call := ccallnode.createinternres('fpc_do_as',
  2054. ccallparanode.create(left,ccallparanode.create(right,nil)),
  2055. resulttype)
  2056. else
  2057. begin
  2058. if is_class(left.resulttype.def) then
  2059. procname := 'fpc_class_as_intf'
  2060. else
  2061. procname := 'fpc_intf_as';
  2062. call := ccallnode.createinternres(procname,
  2063. ccallparanode.create(right,ccallparanode.create(left,nil)),
  2064. resulttype);
  2065. end;
  2066. left := nil;
  2067. right := nil;
  2068. firstpass(call);
  2069. if codegenerror then
  2070. exit;
  2071. expectloc:=call.expectloc;
  2072. registers32:=call.registers32;
  2073. registersfpu:=call.registersfpu;
  2074. {$ifdef SUPPORT_MMX}
  2075. registersmmx:=call.registersmmx;
  2076. {$endif SUPPORT_MMX}
  2077. end;
  2078. end;
  2079. begin
  2080. ctypeconvnode:=ttypeconvnode;
  2081. casnode:=tasnode;
  2082. cisnode:=tisnode;
  2083. end.
  2084. {
  2085. $Log$
  2086. Revision 1.135 2004-01-26 16:12:27 daniel
  2087. * reginfo now also only allocated during register allocation
  2088. * third round of gdb cleanups: kick out most of concatstabto
  2089. Revision 1.134 2003/12/26 00:32:21 florian
  2090. + fpu<->mm register conversion
  2091. Revision 1.133 2003/12/22 23:11:15 peter
  2092. * fix rangecheck error
  2093. Revision 1.132 2003/12/08 22:35:28 peter
  2094. * again procvar fixes
  2095. Revision 1.131 2003/11/22 00:31:52 jonas
  2096. * fixed range error
  2097. Revision 1.130 2003/11/04 22:30:15 florian
  2098. + type cast variant<->enum
  2099. * cnv. node second pass uses now as well helper wrappers
  2100. Revision 1.129 2003/10/31 18:42:03 peter
  2101. * don't call proc_to_procvar for explicit typecasts
  2102. Revision 1.128 2003/10/29 22:01:20 florian
  2103. * fixed passing of dyn. arrays to open array parameters
  2104. Revision 1.127 2003/10/28 15:36:01 peter
  2105. * absolute to object field supported, fixes tb0458
  2106. Revision 1.126 2003/10/23 14:44:07 peter
  2107. * splitted buildderef and buildderefimpl to fix interface crc
  2108. calculation
  2109. Revision 1.125 2003/10/22 20:40:00 peter
  2110. * write derefdata in a separate ppu entry
  2111. Revision 1.124 2003/10/21 18:16:13 peter
  2112. * IncompatibleTypes() added that will include unit names when
  2113. the typenames are the same
  2114. Revision 1.123 2003/10/09 14:39:03 peter
  2115. * allow explicit typecasts from classrefdef, fixes 2728
  2116. Revision 1.122 2003/10/08 19:19:45 peter
  2117. * set_varstate cleanup
  2118. Revision 1.121 2003/10/07 14:30:27 peter
  2119. * fix 2720
  2120. Revision 1.120 2003/10/01 20:34:48 peter
  2121. * procinfo unit contains tprocinfo
  2122. * cginfo renamed to cgbase
  2123. * moved cgmessage to verbose
  2124. * fixed ppc and sparc compiles
  2125. Revision 1.119 2003/09/25 14:57:51 peter
  2126. * fix different expectloc
  2127. Revision 1.118 2003/09/06 22:27:08 florian
  2128. * fixed web bug 2669
  2129. * cosmetic fix in printnode
  2130. * tobjectdef.gettypename implemented
  2131. Revision 1.117 2003/09/03 15:55:01 peter
  2132. * NEWRA branch merged
  2133. Revision 1.116 2003/08/10 17:25:23 peter
  2134. * fixed some reported bugs
  2135. Revision 1.115 2003/06/05 20:05:55 peter
  2136. * removed changesettype because that will change the definition
  2137. of the setdef forever and can result in a different between
  2138. original interface and current implementation definition
  2139. Revision 1.114 2003/06/04 17:55:09 jonas
  2140. * disable fpuregable for fpu variables typecasted to non fpu-type
  2141. Revision 1.113 2003/06/04 17:29:01 jonas
  2142. * fixed void_to_(int,pointer) typeconversion
  2143. Revision 1.112 2003/06/03 21:05:48 peter
  2144. * fix check for procedure without parameters
  2145. * calling constructor as member will not allocate memory
  2146. Revision 1.111 2003/05/11 21:37:03 peter
  2147. * moved implicit exception frame from ncgutil to psub
  2148. * constructor/destructor helpers moved from cobj/ncgutil to psub
  2149. Revision 1.110 2003/05/09 17:47:02 peter
  2150. * self moved to hidden parameter
  2151. * removed hdisposen,hnewn,selfn
  2152. Revision 1.109 2003/04/27 11:21:33 peter
  2153. * aktprocdef renamed to current_procdef
  2154. * procinfo renamed to current_procinfo
  2155. * procinfo will now be stored in current_module so it can be
  2156. cleaned up properly
  2157. * gen_main_procsym changed to create_main_proc and release_main_proc
  2158. to also generate a tprocinfo structure
  2159. * fixed unit implicit initfinal
  2160. Revision 1.108 2003/04/23 20:16:04 peter
  2161. + added currency support based on int64
  2162. + is_64bit for use in cg units instead of is_64bitint
  2163. * removed cgmessage from n386add, replace with internalerrors
  2164. Revision 1.107 2003/04/23 13:13:08 peter
  2165. * fix checking of procdef type which was broken since loadn returned
  2166. pointertype for tp procvar
  2167. Revision 1.106 2003/04/23 10:10:07 peter
  2168. * expectloc fixes
  2169. Revision 1.105 2003/04/22 23:50:23 peter
  2170. * firstpass uses expectloc
  2171. * checks if there are differences between the expectloc and
  2172. location.loc from secondpass in EXTDEBUG
  2173. Revision 1.104 2003/04/22 09:52:30 peter
  2174. * do not convert procvars with void return to callnode
  2175. Revision 1.103 2003/03/17 18:54:23 peter
  2176. * fix missing self setting for method to procvar conversion in
  2177. tp_procvar mode
  2178. Revision 1.102 2003/02/15 22:15:57 carl
  2179. * generic conversaion routines only work on signed types
  2180. Revision 1.101 2003/01/16 22:13:52 peter
  2181. * convert_l3 convertlevel added. This level is used for conversions
  2182. where information can be lost like converting widestring->ansistring
  2183. or dword->byte
  2184. Revision 1.100 2003/01/15 01:44:32 peter
  2185. * merged methodpointer fixes from 1.0.x
  2186. Revision 1.99 2003/01/09 21:43:39 peter
  2187. * constant string conversion fixed, it's now equal to both
  2188. shortstring, ansistring and the typeconvnode will return
  2189. te_equal but still return convtype to change the constnode
  2190. Revision 1.98 2003/01/05 22:41:40 peter
  2191. * move code that checks for longint-pointer conversion hint
  2192. Revision 1.97 2003/01/03 12:15:56 daniel
  2193. * Removed ifdefs around notifications
  2194. ifdefs around for loop optimizations remain
  2195. Revision 1.96 2002/12/22 16:34:49 peter
  2196. * proc-procvar crash fixed (tw2277)
  2197. Revision 1.95 2002/12/20 16:01:26 peter
  2198. * don't allow class(classref) conversion
  2199. Revision 1.94 2002/12/05 14:27:26 florian
  2200. * some variant <-> dyn. array stuff
  2201. Revision 1.93 2002/11/30 10:45:14 carl
  2202. * fix bug with checking of duplicated items in sets (new sets bug only)
  2203. Revision 1.92 2002/11/27 19:43:21 carl
  2204. * updated notes and hints
  2205. Revision 1.91 2002/11/27 13:11:38 peter
  2206. * more currency fixes, taddcurr runs now successfull
  2207. Revision 1.90 2002/11/27 11:29:21 peter
  2208. * when converting from and to currency divide or multiple the
  2209. result by 10000
  2210. Revision 1.89 2002/11/25 17:43:18 peter
  2211. * splitted defbase in defutil,symutil,defcmp
  2212. * merged isconvertable and is_equal into compare_defs(_ext)
  2213. * made operator search faster by walking the list only once
  2214. Revision 1.88 2002/11/17 16:31:56 carl
  2215. * memory optimization (3-4%) : cleanup of tai fields,
  2216. cleanup of tdef and tsym fields.
  2217. * make it work for m68k
  2218. Revision 1.87 2002/10/10 16:07:57 florian
  2219. + several widestring/pwidechar related stuff added
  2220. Revision 1.86 2002/10/06 16:10:23 florian
  2221. * when compiling <interface> as <interface> we can't assume
  2222. anything about relation
  2223. Revision 1.85 2002/10/05 12:43:25 carl
  2224. * fixes for Delphi 6 compilation
  2225. (warning : Some features do not work under Delphi)
  2226. Revision 1.84 2002/10/02 20:23:50 florian
  2227. - removed the relation check for <class> as <interface> because we don't
  2228. know the runtime type of <class>! It could be a child class of the given type
  2229. which implements additional interfaces
  2230. Revision 1.83 2002/10/02 20:17:14 florian
  2231. + the as operator for <class> as <interface> has to check the parent classes as well
  2232. Revision 1.82 2002/09/30 07:00:47 florian
  2233. * fixes to common code to get the alpha compiler compiled applied
  2234. Revision 1.81 2002/09/16 14:11:13 peter
  2235. * add argument to equal_paras() to support default values or not
  2236. Revision 1.80 2002/09/07 20:40:23 carl
  2237. * cardinal -> longword
  2238. Revision 1.79 2002/09/07 15:25:03 peter
  2239. * old logs removed and tabs fixed
  2240. Revision 1.78 2002/09/07 12:16:04 carl
  2241. * second part bug report 1996 fix, testrange in cordconstnode
  2242. only called if option is set (also make parsing a tiny faster)
  2243. Revision 1.77 2002/09/05 05:56:07 jonas
  2244. - reverted my last commit, it was completely bogus :(
  2245. Revision 1.75 2002/09/02 19:24:42 peter
  2246. * array of char support for Str()
  2247. Revision 1.74 2002/09/01 08:01:16 daniel
  2248. * Removed sets from Tcallnode.det_resulttype
  2249. + Added read/write notifications of variables. These will be usefull
  2250. for providing information for several optimizations. For example
  2251. the value of the loop variable of a for loop does matter is the
  2252. variable is read after the for loop, but if it's no longer used
  2253. or written, it doesn't matter and this can be used to optimize
  2254. the loop code generation.
  2255. Revision 1.73 2002/08/23 16:14:49 peter
  2256. * tempgen cleanup
  2257. * tt_noreuse temp type added that will be used in genentrycode
  2258. Revision 1.72 2002/08/20 18:23:33 jonas
  2259. * the as node again uses a compilerproc
  2260. + (untested) support for interface "as" statements
  2261. Revision 1.71 2002/08/19 19:36:43 peter
  2262. * More fixes for cross unit inlining, all tnodes are now implemented
  2263. * Moved pocall_internconst to po_internconst because it is not a
  2264. calling type at all and it conflicted when inlining of these small
  2265. functions was requested
  2266. Revision 1.70 2002/08/17 09:23:36 florian
  2267. * first part of current_procinfo rewrite
  2268. Revision 1.69 2002/08/14 19:26:55 carl
  2269. + generic int_to_real type conversion
  2270. + generic unaryminus node
  2271. Revision 1.68 2002/08/11 16:08:55 florian
  2272. + support of explicit type case boolean->char
  2273. Revision 1.67 2002/08/11 15:28:00 florian
  2274. + support of explicit type case <any ordinal type>->pointer
  2275. (delphi mode only)
  2276. Revision 1.66 2002/08/09 07:33:01 florian
  2277. * a couple of interface related fixes
  2278. Revision 1.65 2002/07/29 21:23:42 florian
  2279. * more fixes for the ppc
  2280. + wrappers for the tcnvnode.first_* stuff introduced
  2281. Revision 1.64 2002/07/23 12:34:30 daniel
  2282. * Readded old set code. To use it define 'oldset'. Activated by default
  2283. for ppc.
  2284. Revision 1.63 2002/07/23 09:51:22 daniel
  2285. * Tried to make Tprocsym.defs protected. I didn't succeed but the cleanups
  2286. are worth comitting.
  2287. Revision 1.62 2002/07/22 11:48:04 daniel
  2288. * Sets are now internally sets.
  2289. Revision 1.61 2002/07/20 17:16:02 florian
  2290. + source code page support
  2291. Revision 1.60 2002/07/20 11:57:54 florian
  2292. * types.pas renamed to defbase.pas because D6 contains a types
  2293. unit so this would conflicts if D6 programms are compiled
  2294. + Willamette/SSE2 instructions to assembler added
  2295. Revision 1.59 2002/07/01 16:23:53 peter
  2296. * cg64 patch
  2297. * basics for currency
  2298. * asnode updates for class and interface (not finished)
  2299. Revision 1.58 2002/05/18 13:34:09 peter
  2300. * readded missing revisions
  2301. }