ncnv.pas 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715
  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:=u8inttype
  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,u8inttype);
  356. inserttypeconv(p2,u8inttype);
  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,u8inttype);
  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,u8inttype);
  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,u8inttype);
  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:=u8inttype;
  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,s32inttype,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,u8inttype);
  639. if (target_info.endian = endian_little) then
  640. left := caddnode.create(orn,
  641. cshlshrnode.create(shln,left,cordconstnode.create(8,s32inttype,false)),
  642. cordconstnode.create(1,s32inttype,false))
  643. else
  644. left := caddnode.create(orn,left,
  645. cordconstnode.create(1 shl 8,s32inttype,false));
  646. left := ctypeconvnode.create_explicit(left,u16inttype);
  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,sinttype);
  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,sinttype);
  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(aprocdef.procsym.refs);
  1053. hp:=ccallnode.create(ccallparanode.create(left,nil),
  1054. Tprocsym(aprocdef.procsym),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. {$ifndef cpu64bit}
  1322. if is_64bit(resulttype.def) then
  1323. registersint:=max(registersint,2)
  1324. else
  1325. {$endif cpu64bit}
  1326. registersint:=max(registersint,1);
  1327. end;
  1328. function ttypeconvnode.first_cstring_to_pchar : tnode;
  1329. begin
  1330. first_cstring_to_pchar:=nil;
  1331. registersint:=1;
  1332. expectloc:=LOC_REGISTER;
  1333. end;
  1334. function ttypeconvnode.first_string_to_chararray : tnode;
  1335. begin
  1336. first_string_to_chararray:=nil;
  1337. expectloc:=left.expectloc;
  1338. end;
  1339. function ttypeconvnode.first_char_to_string : tnode;
  1340. begin
  1341. first_char_to_string:=nil;
  1342. expectloc:=LOC_REFERENCE;
  1343. end;
  1344. function ttypeconvnode.first_nothing : tnode;
  1345. begin
  1346. first_nothing:=nil;
  1347. end;
  1348. function ttypeconvnode.first_array_to_pointer : tnode;
  1349. begin
  1350. first_array_to_pointer:=nil;
  1351. if registersint<1 then
  1352. registersint:=1;
  1353. expectloc:=LOC_REGISTER;
  1354. end;
  1355. function ttypeconvnode.first_int_to_real: tnode;
  1356. var
  1357. fname: string[32];
  1358. typname : string[12];
  1359. begin
  1360. { Get the type name }
  1361. { Normally the typename should be one of the following:
  1362. single, double - carl
  1363. }
  1364. typname := lower(pbestrealtype^.def.gettypename);
  1365. { converting a 64bit integer to a float requires a helper }
  1366. if is_64bit(left.resulttype.def) then
  1367. begin
  1368. if is_signed(left.resulttype.def) then
  1369. fname := 'fpc_int64_to_'+typname
  1370. else
  1371. {$warning generic conversion from int to float does not support unsigned integers}
  1372. fname := 'fpc_int64_to_'+typname;
  1373. result := ccallnode.createintern(fname,ccallparanode.create(
  1374. left,nil));
  1375. left:=nil;
  1376. firstpass(result);
  1377. exit;
  1378. end
  1379. else
  1380. { other integers are supposed to be 32 bit }
  1381. begin
  1382. {$warning generic conversion from int to float does not support unsigned integers}
  1383. if is_signed(left.resulttype.def) then
  1384. fname := 'fpc_longint_to_'+typname
  1385. else
  1386. fname := 'fpc_longint_to_'+typname;
  1387. result := ccallnode.createintern(fname,ccallparanode.create(
  1388. left,nil));
  1389. left:=nil;
  1390. firstpass(result);
  1391. exit;
  1392. end;
  1393. end;
  1394. function ttypeconvnode.first_real_to_real : tnode;
  1395. begin
  1396. first_real_to_real:=nil;
  1397. { comp isn't a floating type }
  1398. if registersfpu<1 then
  1399. registersfpu:=1;
  1400. expectloc:=LOC_FPUREGISTER;
  1401. end;
  1402. function ttypeconvnode.first_pointer_to_array : tnode;
  1403. begin
  1404. first_pointer_to_array:=nil;
  1405. if registersint<1 then
  1406. registersint:=1;
  1407. expectloc:=LOC_REFERENCE;
  1408. end;
  1409. function ttypeconvnode.first_cchar_to_pchar : tnode;
  1410. begin
  1411. first_cchar_to_pchar:=nil;
  1412. internalerror(200104021);
  1413. end;
  1414. function ttypeconvnode.first_bool_to_int : tnode;
  1415. begin
  1416. first_bool_to_int:=nil;
  1417. { byte(boolean) or word(wordbool) or longint(longbool) must
  1418. be accepted for var parameters }
  1419. if (nf_explicit in flags) and
  1420. (left.resulttype.def.size=resulttype.def.size) and
  1421. (left.expectloc in [LOC_REFERENCE,LOC_CREFERENCE,LOC_CREGISTER]) then
  1422. exit;
  1423. { when converting to 64bit, first convert to a 32bit int and then }
  1424. { convert to a 64bit int (only necessary for 32bit processors) (JM) }
  1425. if resulttype.def.size > sizeof(aword) then
  1426. begin
  1427. result := ctypeconvnode.create_explicit(left,u32inttype);
  1428. result := ctypeconvnode.create(result,resulttype);
  1429. left := nil;
  1430. firstpass(result);
  1431. exit;
  1432. end;
  1433. expectloc:=LOC_REGISTER;
  1434. if registersint<1 then
  1435. registersint:=1;
  1436. end;
  1437. function ttypeconvnode.first_int_to_bool : tnode;
  1438. begin
  1439. first_int_to_bool:=nil;
  1440. { byte(boolean) or word(wordbool) or longint(longbool) must
  1441. be accepted for var parameters }
  1442. if (nf_explicit in flags) and
  1443. (left.resulttype.def.size=resulttype.def.size) and
  1444. (left.expectloc in [LOC_REFERENCE,LOC_CREFERENCE,LOC_CREGISTER]) then
  1445. exit;
  1446. expectloc:=LOC_REGISTER;
  1447. { need if bool to bool !!
  1448. not very nice !!
  1449. insertypeconv(left,s32inttype);
  1450. left.explizit:=true;
  1451. firstpass(left); }
  1452. if registersint<1 then
  1453. registersint:=1;
  1454. end;
  1455. function ttypeconvnode.first_bool_to_bool : tnode;
  1456. begin
  1457. first_bool_to_bool:=nil;
  1458. expectloc:=LOC_REGISTER;
  1459. if registersint<1 then
  1460. registersint:=1;
  1461. end;
  1462. function ttypeconvnode.first_char_to_char : tnode;
  1463. begin
  1464. first_char_to_char:=first_int_to_int;
  1465. end;
  1466. function ttypeconvnode.first_proc_to_procvar : tnode;
  1467. begin
  1468. first_proc_to_procvar:=nil;
  1469. if assigned(tunarynode(left).left) then
  1470. begin
  1471. if (left.expectloc<>LOC_CREFERENCE) then
  1472. CGMessage(cg_e_illegal_expression);
  1473. registersint:=left.registersint;
  1474. expectloc:=left.expectloc
  1475. end
  1476. else
  1477. begin
  1478. registersint:=left.registersint;
  1479. if registersint<1 then
  1480. registersint:=1;
  1481. expectloc:=LOC_REGISTER;
  1482. end
  1483. end;
  1484. function ttypeconvnode.first_load_smallset : tnode;
  1485. var
  1486. srsym: ttypesym;
  1487. p: tcallparanode;
  1488. begin
  1489. if not searchsystype('FPC_SMALL_SET',srsym) then
  1490. internalerror(200108313);
  1491. p := ccallparanode.create(left,nil);
  1492. { reused }
  1493. left := nil;
  1494. { convert parameter explicitely to fpc_small_set }
  1495. p.left := ctypeconvnode.create_explicit(p.left,srsym.restype);
  1496. { create call, adjust resulttype }
  1497. result :=
  1498. ccallnode.createinternres('fpc_set_load_small',p,resulttype);
  1499. firstpass(result);
  1500. end;
  1501. function ttypeconvnode.first_ansistring_to_pchar : tnode;
  1502. begin
  1503. first_ansistring_to_pchar:=nil;
  1504. expectloc:=LOC_REGISTER;
  1505. if registersint<1 then
  1506. registersint:=1;
  1507. end;
  1508. function ttypeconvnode.first_arrayconstructor_to_set : tnode;
  1509. begin
  1510. first_arrayconstructor_to_set:=nil;
  1511. internalerror(200104022);
  1512. end;
  1513. function ttypeconvnode.first_class_to_intf : tnode;
  1514. begin
  1515. first_class_to_intf:=nil;
  1516. expectloc:=LOC_REGISTER;
  1517. if registersint<1 then
  1518. registersint:=1;
  1519. end;
  1520. function ttypeconvnode._first_int_to_int : tnode;
  1521. begin
  1522. result:=first_int_to_int;
  1523. end;
  1524. function ttypeconvnode._first_cstring_to_pchar : tnode;
  1525. begin
  1526. result:=first_cstring_to_pchar;
  1527. end;
  1528. function ttypeconvnode._first_string_to_chararray : tnode;
  1529. begin
  1530. result:=first_string_to_chararray;
  1531. end;
  1532. function ttypeconvnode._first_char_to_string : tnode;
  1533. begin
  1534. result:=first_char_to_string;
  1535. end;
  1536. function ttypeconvnode._first_nothing : tnode;
  1537. begin
  1538. result:=first_nothing;
  1539. end;
  1540. function ttypeconvnode._first_array_to_pointer : tnode;
  1541. begin
  1542. result:=first_array_to_pointer;
  1543. end;
  1544. function ttypeconvnode._first_int_to_real : tnode;
  1545. begin
  1546. result:=first_int_to_real;
  1547. end;
  1548. function ttypeconvnode._first_real_to_real : tnode;
  1549. begin
  1550. result:=first_real_to_real;
  1551. end;
  1552. function ttypeconvnode._first_pointer_to_array : tnode;
  1553. begin
  1554. result:=first_pointer_to_array;
  1555. end;
  1556. function ttypeconvnode._first_cchar_to_pchar : tnode;
  1557. begin
  1558. result:=first_cchar_to_pchar;
  1559. end;
  1560. function ttypeconvnode._first_bool_to_int : tnode;
  1561. begin
  1562. result:=first_bool_to_int;
  1563. end;
  1564. function ttypeconvnode._first_int_to_bool : tnode;
  1565. begin
  1566. result:=first_int_to_bool;
  1567. end;
  1568. function ttypeconvnode._first_bool_to_bool : tnode;
  1569. begin
  1570. result:=first_bool_to_bool;
  1571. end;
  1572. function ttypeconvnode._first_proc_to_procvar : tnode;
  1573. begin
  1574. result:=first_proc_to_procvar;
  1575. end;
  1576. function ttypeconvnode._first_load_smallset : tnode;
  1577. begin
  1578. result:=first_load_smallset;
  1579. end;
  1580. function ttypeconvnode._first_cord_to_pointer : tnode;
  1581. begin
  1582. result:=first_cord_to_pointer;
  1583. end;
  1584. function ttypeconvnode._first_ansistring_to_pchar : tnode;
  1585. begin
  1586. result:=first_ansistring_to_pchar;
  1587. end;
  1588. function ttypeconvnode._first_arrayconstructor_to_set : tnode;
  1589. begin
  1590. result:=first_arrayconstructor_to_set;
  1591. end;
  1592. function ttypeconvnode._first_class_to_intf : tnode;
  1593. begin
  1594. result:=first_class_to_intf;
  1595. end;
  1596. function ttypeconvnode._first_char_to_char : tnode;
  1597. begin
  1598. result:=first_char_to_char;
  1599. end;
  1600. function ttypeconvnode.first_call_helper(c : tconverttype) : tnode;
  1601. const
  1602. firstconvert : array[tconverttype] of pointer = (
  1603. @ttypeconvnode._first_nothing, {equal}
  1604. @ttypeconvnode._first_nothing, {not_possible}
  1605. nil, { removed in resulttype_string_to_string }
  1606. @ttypeconvnode._first_char_to_string,
  1607. @ttypeconvnode._first_nothing, { char_2_chararray, needs nothing extra }
  1608. nil, { removed in resulttype_chararray_to_string }
  1609. @ttypeconvnode._first_cchar_to_pchar,
  1610. @ttypeconvnode._first_cstring_to_pchar,
  1611. @ttypeconvnode._first_ansistring_to_pchar,
  1612. @ttypeconvnode._first_string_to_chararray,
  1613. nil, { removed in resulttype_chararray_to_string }
  1614. @ttypeconvnode._first_array_to_pointer,
  1615. @ttypeconvnode._first_pointer_to_array,
  1616. @ttypeconvnode._first_int_to_int,
  1617. @ttypeconvnode._first_int_to_bool,
  1618. @ttypeconvnode._first_bool_to_bool,
  1619. @ttypeconvnode._first_bool_to_int,
  1620. @ttypeconvnode._first_real_to_real,
  1621. @ttypeconvnode._first_int_to_real,
  1622. nil, { removed in resulttype_real_to_currency }
  1623. @ttypeconvnode._first_proc_to_procvar,
  1624. @ttypeconvnode._first_arrayconstructor_to_set,
  1625. @ttypeconvnode._first_load_smallset,
  1626. @ttypeconvnode._first_cord_to_pointer,
  1627. @ttypeconvnode._first_nothing,
  1628. @ttypeconvnode._first_nothing,
  1629. @ttypeconvnode._first_class_to_intf,
  1630. @ttypeconvnode._first_char_to_char,
  1631. @ttypeconvnode._first_nothing,
  1632. @ttypeconvnode._first_nothing,
  1633. nil,
  1634. nil,
  1635. nil,
  1636. nil,
  1637. nil
  1638. );
  1639. type
  1640. tprocedureofobject = function : tnode of object;
  1641. var
  1642. r : packed record
  1643. proc : pointer;
  1644. obj : pointer;
  1645. end;
  1646. begin
  1647. { this is a little bit dirty but it works }
  1648. { and should be quite portable too }
  1649. r.proc:=firstconvert[c];
  1650. r.obj:=self;
  1651. if not assigned(r.proc) then
  1652. internalerror(200312081);
  1653. first_call_helper:=tprocedureofobject(r){$ifdef FPC}(){$endif FPC}
  1654. end;
  1655. function ttypeconvnode.pass_1 : tnode;
  1656. begin
  1657. result:=nil;
  1658. firstpass(left);
  1659. if codegenerror then
  1660. exit;
  1661. { load the value_str from the left part }
  1662. registersint:=left.registersint;
  1663. registersfpu:=left.registersfpu;
  1664. {$ifdef SUPPORT_MMX}
  1665. registersmmx:=left.registersmmx;
  1666. {$endif}
  1667. expectloc:=left.expectloc;
  1668. if (nf_explicit in flags) or
  1669. (nf_absolute in flags) then
  1670. begin
  1671. { check if the result could be in a register }
  1672. if not(tstoreddef(resulttype.def).is_intregable) and
  1673. not(tstoreddef(resulttype.def).is_fpuregable) then
  1674. make_not_regable(left);
  1675. end;
  1676. result:=first_call_helper(convtype);
  1677. end;
  1678. function ttypeconvnode.docompare(p: tnode) : boolean;
  1679. begin
  1680. docompare :=
  1681. inherited docompare(p) and
  1682. (convtype = ttypeconvnode(p).convtype);
  1683. end;
  1684. procedure ttypeconvnode._second_int_to_int;
  1685. begin
  1686. second_int_to_int;
  1687. end;
  1688. procedure ttypeconvnode._second_string_to_string;
  1689. begin
  1690. second_string_to_string;
  1691. end;
  1692. procedure ttypeconvnode._second_cstring_to_pchar;
  1693. begin
  1694. second_cstring_to_pchar;
  1695. end;
  1696. procedure ttypeconvnode._second_string_to_chararray;
  1697. begin
  1698. second_string_to_chararray;
  1699. end;
  1700. procedure ttypeconvnode._second_array_to_pointer;
  1701. begin
  1702. second_array_to_pointer;
  1703. end;
  1704. procedure ttypeconvnode._second_pointer_to_array;
  1705. begin
  1706. second_pointer_to_array;
  1707. end;
  1708. procedure ttypeconvnode._second_chararray_to_string;
  1709. begin
  1710. second_chararray_to_string;
  1711. end;
  1712. procedure ttypeconvnode._second_char_to_string;
  1713. begin
  1714. second_char_to_string;
  1715. end;
  1716. procedure ttypeconvnode._second_int_to_real;
  1717. begin
  1718. second_int_to_real;
  1719. end;
  1720. procedure ttypeconvnode._second_real_to_real;
  1721. begin
  1722. second_real_to_real;
  1723. end;
  1724. procedure ttypeconvnode._second_cord_to_pointer;
  1725. begin
  1726. second_cord_to_pointer;
  1727. end;
  1728. procedure ttypeconvnode._second_proc_to_procvar;
  1729. begin
  1730. second_proc_to_procvar;
  1731. end;
  1732. procedure ttypeconvnode._second_bool_to_int;
  1733. begin
  1734. second_bool_to_int;
  1735. end;
  1736. procedure ttypeconvnode._second_int_to_bool;
  1737. begin
  1738. second_int_to_bool;
  1739. end;
  1740. procedure ttypeconvnode._second_bool_to_bool;
  1741. begin
  1742. second_bool_to_bool;
  1743. end;
  1744. procedure ttypeconvnode._second_load_smallset;
  1745. begin
  1746. second_load_smallset;
  1747. end;
  1748. procedure ttypeconvnode._second_ansistring_to_pchar;
  1749. begin
  1750. second_ansistring_to_pchar;
  1751. end;
  1752. procedure ttypeconvnode._second_class_to_intf;
  1753. begin
  1754. second_class_to_intf;
  1755. end;
  1756. procedure ttypeconvnode._second_char_to_char;
  1757. begin
  1758. second_char_to_char;
  1759. end;
  1760. procedure ttypeconvnode._second_nothing;
  1761. begin
  1762. second_nothing;
  1763. end;
  1764. procedure ttypeconvnode.second_call_helper(c : tconverttype);
  1765. {$ifdef fpc}
  1766. const
  1767. secondconvert : array[tconverttype] of pointer = (
  1768. @_second_nothing, {equal}
  1769. @_second_nothing, {not_possible}
  1770. @_second_nothing, {second_string_to_string, handled in resulttype pass }
  1771. @_second_char_to_string,
  1772. @_second_nothing, {char_to_charray}
  1773. @_second_nothing, { pchar_to_string, handled in resulttype pass }
  1774. @_second_nothing, {cchar_to_pchar}
  1775. @_second_cstring_to_pchar,
  1776. @_second_ansistring_to_pchar,
  1777. @_second_string_to_chararray,
  1778. @_second_nothing, { chararray_to_string, handled in resulttype pass }
  1779. @_second_array_to_pointer,
  1780. @_second_pointer_to_array,
  1781. @_second_int_to_int,
  1782. @_second_int_to_bool,
  1783. @_second_bool_to_bool,
  1784. @_second_bool_to_int,
  1785. @_second_real_to_real,
  1786. @_second_int_to_real,
  1787. @_second_nothing, { real_to_currency, handled in resulttype pass }
  1788. @_second_proc_to_procvar,
  1789. @_second_nothing, { arrayconstructor_to_set }
  1790. @_second_nothing, { second_load_smallset, handled in first pass }
  1791. @_second_cord_to_pointer,
  1792. @_second_nothing, { interface 2 string }
  1793. @_second_nothing, { interface 2 guid }
  1794. @_second_class_to_intf,
  1795. @_second_char_to_char,
  1796. @_second_nothing, { normal_2_smallset }
  1797. @_second_nothing, { dynarray_2_openarray }
  1798. @_second_nothing, { pwchar_2_string }
  1799. @_second_nothing, { variant_2_dynarray }
  1800. @_second_nothing, { dynarray_2_variant}
  1801. @_second_nothing, { variant_2_enum }
  1802. @_second_nothing { enum_2_variant }
  1803. );
  1804. type
  1805. tprocedureofobject = procedure of object;
  1806. var
  1807. r : packed record
  1808. proc : pointer;
  1809. obj : pointer;
  1810. end;
  1811. begin
  1812. { this is a little bit dirty but it works }
  1813. { and should be quite portable too }
  1814. r.proc:=secondconvert[c];
  1815. r.obj:=self;
  1816. tprocedureofobject(r)();
  1817. end;
  1818. {$else fpc}
  1819. begin
  1820. case c of
  1821. tc_equal,
  1822. tc_not_possible,
  1823. tc_string_2_string : second_nothing;
  1824. tc_char_2_string : second_char_to_string;
  1825. tc_char_2_chararray : second_nothing;
  1826. tc_pchar_2_string : second_nothing;
  1827. tc_cchar_2_pchar : second_nothing;
  1828. tc_cstring_2_pchar : second_cstring_to_pchar;
  1829. tc_ansistring_2_pchar : second_ansistring_to_pchar;
  1830. tc_string_2_chararray : second_string_to_chararray;
  1831. tc_chararray_2_string : second_nothing;
  1832. tc_array_2_pointer : second_array_to_pointer;
  1833. tc_pointer_2_array : second_pointer_to_array;
  1834. tc_int_2_int : second_int_to_int;
  1835. tc_int_2_bool : second_int_to_bool;
  1836. tc_bool_2_bool : second_bool_to_bool;
  1837. tc_bool_2_int : second_bool_to_int;
  1838. tc_real_2_real : second_real_to_real;
  1839. tc_int_2_real : second_int_to_real;
  1840. tc_real_2_currency : second_nothing;
  1841. tc_proc_2_procvar : second_proc_to_procvar;
  1842. tc_arrayconstructor_2_set : second_nothing;
  1843. tc_load_smallset : second_nothing;
  1844. tc_cord_2_pointer : second_cord_to_pointer;
  1845. tc_intf_2_string : second_nothing;
  1846. tc_intf_2_guid : second_nothing;
  1847. tc_class_2_intf : second_class_to_intf;
  1848. tc_char_2_char : second_char_to_char;
  1849. tc_normal_2_smallset : second_nothing;
  1850. tc_dynarray_2_openarray : second_nothing;
  1851. tc_pwchar_2_string : second_nothing;
  1852. tc_variant_2_dynarray : second_nothing;
  1853. tc_dynarray_2_variant : second_nothing;
  1854. else internalerror(2002101101);
  1855. end;
  1856. end;
  1857. {$endif fpc}
  1858. {*****************************************************************************
  1859. TISNODE
  1860. *****************************************************************************}
  1861. constructor tisnode.create(l,r : tnode);
  1862. begin
  1863. inherited create(isn,l,r);
  1864. end;
  1865. function tisnode.det_resulttype:tnode;
  1866. var
  1867. paras: tcallparanode;
  1868. begin
  1869. result:=nil;
  1870. resulttypepass(left);
  1871. resulttypepass(right);
  1872. set_varstate(left,vs_used,true);
  1873. set_varstate(right,vs_used,true);
  1874. if codegenerror then
  1875. exit;
  1876. if (right.resulttype.def.deftype=classrefdef) then
  1877. begin
  1878. { left must be a class }
  1879. if is_class(left.resulttype.def) then
  1880. begin
  1881. { the operands must be related }
  1882. if (not(tobjectdef(left.resulttype.def).is_related(
  1883. tobjectdef(tclassrefdef(right.resulttype.def).pointertype.def)))) and
  1884. (not(tobjectdef(tclassrefdef(right.resulttype.def).pointertype.def).is_related(
  1885. tobjectdef(left.resulttype.def)))) then
  1886. CGMessage2(type_e_classes_not_related,left.resulttype.def.typename,
  1887. tclassrefdef(right.resulttype.def).pointertype.def.typename);
  1888. end
  1889. else
  1890. CGMessage1(type_e_class_type_expected,left.resulttype.def.typename);
  1891. { call fpc_do_is helper }
  1892. paras := ccallparanode.create(
  1893. left,
  1894. ccallparanode.create(
  1895. right,nil));
  1896. result := ccallnode.createintern('fpc_do_is',paras);
  1897. left := nil;
  1898. right := nil;
  1899. end
  1900. else if is_interface(right.resulttype.def) then
  1901. begin
  1902. { left is a class }
  1903. if is_class(left.resulttype.def) then
  1904. begin
  1905. { the operands must be related }
  1906. if not(assigned(tobjectdef(left.resulttype.def).implementedinterfaces) and
  1907. (tobjectdef(left.resulttype.def).implementedinterfaces.searchintf(right.resulttype.def)<>-1)) then
  1908. CGMessage2(type_e_classes_not_related,left.resulttype.def.typename,right.resulttype.def.typename);
  1909. end
  1910. { left is an interface }
  1911. else if is_interface(left.resulttype.def) then
  1912. begin
  1913. { the operands must be related }
  1914. if (not(tobjectdef(left.resulttype.def).is_related(tobjectdef(right.resulttype.def)))) and
  1915. (not(tobjectdef(right.resulttype.def).is_related(tobjectdef(left.resulttype.def)))) then
  1916. CGMessage(type_e_mismatch);
  1917. end
  1918. else
  1919. CGMessage1(type_e_class_type_expected,left.resulttype.def.typename);
  1920. { call fpc_do_is helper }
  1921. paras := ccallparanode.create(
  1922. left,
  1923. ccallparanode.create(
  1924. right,nil));
  1925. result := ccallnode.createintern('fpc_do_is',paras);
  1926. left := nil;
  1927. right := nil;
  1928. end
  1929. else
  1930. CGMessage1(type_e_class_or_interface_type_expected,right.resulttype.def.typename);
  1931. resulttype:=booltype;
  1932. end;
  1933. function tisnode.pass_1 : tnode;
  1934. begin
  1935. internalerror(200204254);
  1936. result:=nil;
  1937. end;
  1938. { dummy pass_2, it will never be called, but we need one since }
  1939. { you can't instantiate an abstract class }
  1940. procedure tisnode.pass_2;
  1941. begin
  1942. end;
  1943. {*****************************************************************************
  1944. TASNODE
  1945. *****************************************************************************}
  1946. constructor tasnode.create(l,r : tnode);
  1947. begin
  1948. inherited create(asn,l,r);
  1949. call := nil;
  1950. end;
  1951. destructor tasnode.destroy;
  1952. begin
  1953. call.free;
  1954. inherited destroy;
  1955. end;
  1956. function tasnode.det_resulttype:tnode;
  1957. var
  1958. hp : tnode;
  1959. begin
  1960. result:=nil;
  1961. resulttypepass(right);
  1962. resulttypepass(left);
  1963. set_varstate(right,vs_used,true);
  1964. set_varstate(left,vs_used,true);
  1965. if codegenerror then
  1966. exit;
  1967. if (right.resulttype.def.deftype=classrefdef) then
  1968. begin
  1969. { left must be a class }
  1970. if is_class(left.resulttype.def) then
  1971. begin
  1972. { the operands must be related }
  1973. if (not(tobjectdef(left.resulttype.def).is_related(
  1974. tobjectdef(tclassrefdef(right.resulttype.def).pointertype.def)))) and
  1975. (not(tobjectdef(tclassrefdef(right.resulttype.def).pointertype.def).is_related(
  1976. tobjectdef(left.resulttype.def)))) then
  1977. CGMessage2(type_e_classes_not_related,left.resulttype.def.typename,
  1978. tclassrefdef(right.resulttype.def).pointertype.def.typename);
  1979. end
  1980. else
  1981. CGMessage1(type_e_class_type_expected,left.resulttype.def.typename);
  1982. resulttype:=tclassrefdef(right.resulttype.def).pointertype;
  1983. end
  1984. else if is_interface(right.resulttype.def) then
  1985. begin
  1986. { left is a class }
  1987. if is_class(left.resulttype.def) then
  1988. begin
  1989. { the operands must be related
  1990. no, because the class instance could be a child class of the current one which
  1991. implements additional interfaces (FK)
  1992. b:=false;
  1993. o:=tobjectdef(left.resulttype.def);
  1994. while assigned(o) do
  1995. begin
  1996. if assigned(o.implementedinterfaces) and
  1997. (o.implementedinterfaces.searchintf(right.resulttype.def)<>-1) then
  1998. begin
  1999. b:=true;
  2000. break;
  2001. end;
  2002. o:=o.childof;
  2003. end;
  2004. if not(b) then
  2005. CGMessage2(type_e_classes_not_related,left.resulttype.def.typename,right.resulttype.def.typename);
  2006. }
  2007. end
  2008. { left is an interface }
  2009. else if is_interface(left.resulttype.def) then
  2010. begin
  2011. { the operands must be related
  2012. we don't necessarily know how the both interfaces are implemented, so we can't do this check (FK)
  2013. if (not(tobjectdef(left.resulttype.def).is_related(tobjectdef(right.resulttype.def)))) and
  2014. (not(tobjectdef(right.resulttype.def).is_related(tobjectdef(left.resulttype.def)))) then
  2015. CGMessage2(type_e_classes_not_related,left.resulttype.def.typename,right.resulttype.def.typename);
  2016. }
  2017. end
  2018. else
  2019. CGMessage1(type_e_class_type_expected,left.resulttype.def.typename);
  2020. resulttype:=right.resulttype;
  2021. { load the GUID of the interface }
  2022. if (right.nodetype=typen) then
  2023. begin
  2024. if assigned(tobjectdef(right.resulttype.def).iidguid) then
  2025. begin
  2026. hp:=cguidconstnode.create(tobjectdef(right.resulttype.def).iidguid^);
  2027. right.free;
  2028. right:=hp;
  2029. end
  2030. else
  2031. internalerror(200206282);
  2032. resulttypepass(right);
  2033. end;
  2034. end
  2035. else
  2036. CGMessage1(type_e_class_or_interface_type_expected,right.resulttype.def.typename);
  2037. end;
  2038. function tasnode.getcopy: tnode;
  2039. begin
  2040. result := inherited getcopy;
  2041. if assigned(call) then
  2042. tasnode(result).call := call.getcopy
  2043. else
  2044. tasnode(result).call := nil;
  2045. end;
  2046. function tasnode.pass_1 : tnode;
  2047. var
  2048. procname: string;
  2049. begin
  2050. result:=nil;
  2051. if not assigned(call) then
  2052. begin
  2053. if is_class(left.resulttype.def) and
  2054. (right.resulttype.def.deftype=classrefdef) then
  2055. call := ccallnode.createinternres('fpc_do_as',
  2056. ccallparanode.create(left,ccallparanode.create(right,nil)),
  2057. resulttype)
  2058. else
  2059. begin
  2060. if is_class(left.resulttype.def) then
  2061. procname := 'fpc_class_as_intf'
  2062. else
  2063. procname := 'fpc_intf_as';
  2064. call := ccallnode.createinternres(procname,
  2065. ccallparanode.create(right,ccallparanode.create(left,nil)),
  2066. resulttype);
  2067. end;
  2068. left := nil;
  2069. right := nil;
  2070. firstpass(call);
  2071. if codegenerror then
  2072. exit;
  2073. expectloc:=call.expectloc;
  2074. registersint:=call.registersint;
  2075. registersfpu:=call.registersfpu;
  2076. {$ifdef SUPPORT_MMX}
  2077. registersmmx:=call.registersmmx;
  2078. {$endif SUPPORT_MMX}
  2079. end;
  2080. end;
  2081. begin
  2082. ctypeconvnode:=ttypeconvnode;
  2083. casnode:=tasnode;
  2084. cisnode:=tisnode;
  2085. end.
  2086. {
  2087. $Log$
  2088. Revision 1.138 2004-02-05 01:24:08 florian
  2089. * several fixes to compile x86-64 system
  2090. Revision 1.137 2004/02/04 22:15:15 daniel
  2091. * Rtti generation moved to ncgutil
  2092. * Assmtai usage of symsym removed
  2093. * operator overloading cleanup up
  2094. Revision 1.136 2004/02/03 22:32:54 peter
  2095. * renamed xNNbittype to xNNinttype
  2096. * renamed registers32 to registersint
  2097. * replace some s32bit,u32bit with torddef([su]inttype).def.typ
  2098. Revision 1.135 2004/01/26 16:12:27 daniel
  2099. * reginfo now also only allocated during register allocation
  2100. * third round of gdb cleanups: kick out most of concatstabto
  2101. Revision 1.134 2003/12/26 00:32:21 florian
  2102. + fpu<->mm register conversion
  2103. Revision 1.133 2003/12/22 23:11:15 peter
  2104. * fix rangecheck error
  2105. Revision 1.132 2003/12/08 22:35:28 peter
  2106. * again procvar fixes
  2107. Revision 1.131 2003/11/22 00:31:52 jonas
  2108. * fixed range error
  2109. Revision 1.130 2003/11/04 22:30:15 florian
  2110. + type cast variant<->enum
  2111. * cnv. node second pass uses now as well helper wrappers
  2112. Revision 1.129 2003/10/31 18:42:03 peter
  2113. * don't call proc_to_procvar for explicit typecasts
  2114. Revision 1.128 2003/10/29 22:01:20 florian
  2115. * fixed passing of dyn. arrays to open array parameters
  2116. Revision 1.127 2003/10/28 15:36:01 peter
  2117. * absolute to object field supported, fixes tb0458
  2118. Revision 1.126 2003/10/23 14:44:07 peter
  2119. * splitted buildderef and buildderefimpl to fix interface crc
  2120. calculation
  2121. Revision 1.125 2003/10/22 20:40:00 peter
  2122. * write derefdata in a separate ppu entry
  2123. Revision 1.124 2003/10/21 18:16:13 peter
  2124. * IncompatibleTypes() added that will include unit names when
  2125. the typenames are the same
  2126. Revision 1.123 2003/10/09 14:39:03 peter
  2127. * allow explicit typecasts from classrefdef, fixes 2728
  2128. Revision 1.122 2003/10/08 19:19:45 peter
  2129. * set_varstate cleanup
  2130. Revision 1.121 2003/10/07 14:30:27 peter
  2131. * fix 2720
  2132. Revision 1.120 2003/10/01 20:34:48 peter
  2133. * procinfo unit contains tprocinfo
  2134. * cginfo renamed to cgbase
  2135. * moved cgmessage to verbose
  2136. * fixed ppc and sparc compiles
  2137. Revision 1.119 2003/09/25 14:57:51 peter
  2138. * fix different expectloc
  2139. Revision 1.118 2003/09/06 22:27:08 florian
  2140. * fixed web bug 2669
  2141. * cosmetic fix in printnode
  2142. * tobjectdef.gettypename implemented
  2143. Revision 1.117 2003/09/03 15:55:01 peter
  2144. * NEWRA branch merged
  2145. Revision 1.116 2003/08/10 17:25:23 peter
  2146. * fixed some reported bugs
  2147. Revision 1.115 2003/06/05 20:05:55 peter
  2148. * removed changesettype because that will change the definition
  2149. of the setdef forever and can result in a different between
  2150. original interface and current implementation definition
  2151. Revision 1.114 2003/06/04 17:55:09 jonas
  2152. * disable fpuregable for fpu variables typecasted to non fpu-type
  2153. Revision 1.113 2003/06/04 17:29:01 jonas
  2154. * fixed void_to_(int,pointer) typeconversion
  2155. Revision 1.112 2003/06/03 21:05:48 peter
  2156. * fix check for procedure without parameters
  2157. * calling constructor as member will not allocate memory
  2158. Revision 1.111 2003/05/11 21:37:03 peter
  2159. * moved implicit exception frame from ncgutil to psub
  2160. * constructor/destructor helpers moved from cobj/ncgutil to psub
  2161. Revision 1.110 2003/05/09 17:47:02 peter
  2162. * self moved to hidden parameter
  2163. * removed hdisposen,hnewn,selfn
  2164. Revision 1.109 2003/04/27 11:21:33 peter
  2165. * aktprocdef renamed to current_procdef
  2166. * procinfo renamed to current_procinfo
  2167. * procinfo will now be stored in current_module so it can be
  2168. cleaned up properly
  2169. * gen_main_procsym changed to create_main_proc and release_main_proc
  2170. to also generate a tprocinfo structure
  2171. * fixed unit implicit initfinal
  2172. Revision 1.108 2003/04/23 20:16:04 peter
  2173. + added currency support based on int64
  2174. + is_64bit for use in cg units instead of is_64bitint
  2175. * removed cgmessage from n386add, replace with internalerrors
  2176. Revision 1.107 2003/04/23 13:13:08 peter
  2177. * fix checking of procdef type which was broken since loadn returned
  2178. pointertype for tp procvar
  2179. Revision 1.106 2003/04/23 10:10:07 peter
  2180. * expectloc fixes
  2181. Revision 1.105 2003/04/22 23:50:23 peter
  2182. * firstpass uses expectloc
  2183. * checks if there are differences between the expectloc and
  2184. location.loc from secondpass in EXTDEBUG
  2185. Revision 1.104 2003/04/22 09:52:30 peter
  2186. * do not convert procvars with void return to callnode
  2187. Revision 1.103 2003/03/17 18:54:23 peter
  2188. * fix missing self setting for method to procvar conversion in
  2189. tp_procvar mode
  2190. Revision 1.102 2003/02/15 22:15:57 carl
  2191. * generic conversaion routines only work on signed types
  2192. Revision 1.101 2003/01/16 22:13:52 peter
  2193. * convert_l3 convertlevel added. This level is used for conversions
  2194. where information can be lost like converting widestring->ansistring
  2195. or dword->byte
  2196. Revision 1.100 2003/01/15 01:44:32 peter
  2197. * merged methodpointer fixes from 1.0.x
  2198. Revision 1.99 2003/01/09 21:43:39 peter
  2199. * constant string conversion fixed, it's now equal to both
  2200. shortstring, ansistring and the typeconvnode will return
  2201. te_equal but still return convtype to change the constnode
  2202. Revision 1.98 2003/01/05 22:41:40 peter
  2203. * move code that checks for longint-pointer conversion hint
  2204. Revision 1.97 2003/01/03 12:15:56 daniel
  2205. * Removed ifdefs around notifications
  2206. ifdefs around for loop optimizations remain
  2207. Revision 1.96 2002/12/22 16:34:49 peter
  2208. * proc-procvar crash fixed (tw2277)
  2209. Revision 1.95 2002/12/20 16:01:26 peter
  2210. * don't allow class(classref) conversion
  2211. Revision 1.94 2002/12/05 14:27:26 florian
  2212. * some variant <-> dyn. array stuff
  2213. Revision 1.93 2002/11/30 10:45:14 carl
  2214. * fix bug with checking of duplicated items in sets (new sets bug only)
  2215. Revision 1.92 2002/11/27 19:43:21 carl
  2216. * updated notes and hints
  2217. Revision 1.91 2002/11/27 13:11:38 peter
  2218. * more currency fixes, taddcurr runs now successfull
  2219. Revision 1.90 2002/11/27 11:29:21 peter
  2220. * when converting from and to currency divide or multiple the
  2221. result by 10000
  2222. Revision 1.89 2002/11/25 17:43:18 peter
  2223. * splitted defbase in defutil,symutil,defcmp
  2224. * merged isconvertable and is_equal into compare_defs(_ext)
  2225. * made operator search faster by walking the list only once
  2226. Revision 1.88 2002/11/17 16:31:56 carl
  2227. * memory optimization (3-4%) : cleanup of tai fields,
  2228. cleanup of tdef and tsym fields.
  2229. * make it work for m68k
  2230. Revision 1.87 2002/10/10 16:07:57 florian
  2231. + several widestring/pwidechar related stuff added
  2232. Revision 1.86 2002/10/06 16:10:23 florian
  2233. * when compiling <interface> as <interface> we can't assume
  2234. anything about relation
  2235. Revision 1.85 2002/10/05 12:43:25 carl
  2236. * fixes for Delphi 6 compilation
  2237. (warning : Some features do not work under Delphi)
  2238. Revision 1.84 2002/10/02 20:23:50 florian
  2239. - removed the relation check for <class> as <interface> because we don't
  2240. know the runtime type of <class>! It could be a child class of the given type
  2241. which implements additional interfaces
  2242. Revision 1.83 2002/10/02 20:17:14 florian
  2243. + the as operator for <class> as <interface> has to check the parent classes as well
  2244. Revision 1.82 2002/09/30 07:00:47 florian
  2245. * fixes to common code to get the alpha compiler compiled applied
  2246. Revision 1.81 2002/09/16 14:11:13 peter
  2247. * add argument to equal_paras() to support default values or not
  2248. Revision 1.80 2002/09/07 20:40:23 carl
  2249. * cardinal -> longword
  2250. Revision 1.79 2002/09/07 15:25:03 peter
  2251. * old logs removed and tabs fixed
  2252. Revision 1.78 2002/09/07 12:16:04 carl
  2253. * second part bug report 1996 fix, testrange in cordconstnode
  2254. only called if option is set (also make parsing a tiny faster)
  2255. Revision 1.77 2002/09/05 05:56:07 jonas
  2256. - reverted my last commit, it was completely bogus :(
  2257. Revision 1.75 2002/09/02 19:24:42 peter
  2258. * array of char support for Str()
  2259. Revision 1.74 2002/09/01 08:01:16 daniel
  2260. * Removed sets from Tcallnode.det_resulttype
  2261. + Added read/write notifications of variables. These will be usefull
  2262. for providing information for several optimizations. For example
  2263. the value of the loop variable of a for loop does matter is the
  2264. variable is read after the for loop, but if it's no longer used
  2265. or written, it doesn't matter and this can be used to optimize
  2266. the loop code generation.
  2267. Revision 1.73 2002/08/23 16:14:49 peter
  2268. * tempgen cleanup
  2269. * tt_noreuse temp type added that will be used in genentrycode
  2270. Revision 1.72 2002/08/20 18:23:33 jonas
  2271. * the as node again uses a compilerproc
  2272. + (untested) support for interface "as" statements
  2273. Revision 1.71 2002/08/19 19:36:43 peter
  2274. * More fixes for cross unit inlining, all tnodes are now implemented
  2275. * Moved pocall_internconst to po_internconst because it is not a
  2276. calling type at all and it conflicted when inlining of these small
  2277. functions was requested
  2278. Revision 1.70 2002/08/17 09:23:36 florian
  2279. * first part of current_procinfo rewrite
  2280. Revision 1.69 2002/08/14 19:26:55 carl
  2281. + generic int_to_real type conversion
  2282. + generic unaryminus node
  2283. Revision 1.68 2002/08/11 16:08:55 florian
  2284. + support of explicit type case boolean->char
  2285. Revision 1.67 2002/08/11 15:28:00 florian
  2286. + support of explicit type case <any ordinal type>->pointer
  2287. (delphi mode only)
  2288. Revision 1.66 2002/08/09 07:33:01 florian
  2289. * a couple of interface related fixes
  2290. Revision 1.65 2002/07/29 21:23:42 florian
  2291. * more fixes for the ppc
  2292. + wrappers for the tcnvnode.first_* stuff introduced
  2293. Revision 1.64 2002/07/23 12:34:30 daniel
  2294. * Readded old set code. To use it define 'oldset'. Activated by default
  2295. for ppc.
  2296. Revision 1.63 2002/07/23 09:51:22 daniel
  2297. * Tried to make Tprocsym.defs protected. I didn't succeed but the cleanups
  2298. are worth comitting.
  2299. Revision 1.62 2002/07/22 11:48:04 daniel
  2300. * Sets are now internally sets.
  2301. Revision 1.61 2002/07/20 17:16:02 florian
  2302. + source code page support
  2303. Revision 1.60 2002/07/20 11:57:54 florian
  2304. * types.pas renamed to defbase.pas because D6 contains a types
  2305. unit so this would conflicts if D6 programms are compiled
  2306. + Willamette/SSE2 instructions to assembler added
  2307. Revision 1.59 2002/07/01 16:23:53 peter
  2308. * cg64 patch
  2309. * basics for currency
  2310. * asnode updates for class and interface (not finished)
  2311. Revision 1.58 2002/05/18 13:34:09 peter
  2312. * readded missing revisions
  2313. }