nadd.pas 114 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868
  1. {
  2. Copyright (c) 1998-2002 by Florian Klaempfl
  3. Type checking and simplification for add nodes
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program; if not, write to the Free Software
  14. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  15. ****************************************************************************
  16. }
  17. unit nadd;
  18. {$i fpcdefs.inc}
  19. { define addstringopt}
  20. interface
  21. uses
  22. node,symtype;
  23. type
  24. taddnode = class(tbinopnode)
  25. private
  26. resultrealdefderef: tderef;
  27. function pass_typecheck_internal:tnode;
  28. public
  29. resultrealdef : tdef;
  30. constructor create(tt : tnodetype;l,r : tnode);override;
  31. constructor ppuload(t:tnodetype;ppufile:tcompilerppufile);override;
  32. procedure ppuwrite(ppufile:tcompilerppufile);override;
  33. procedure buildderefimpl;override;
  34. procedure derefimpl;override;
  35. function pass_1 : tnode;override;
  36. function pass_typecheck:tnode;override;
  37. function simplify(forinline: boolean) : tnode;override;
  38. function dogetcopy : tnode;override;
  39. function docompare(p: tnode): boolean; override;
  40. {$ifdef state_tracking}
  41. function track_state_pass(exec_known:boolean):boolean;override;
  42. {$endif}
  43. protected
  44. { override the following if you want to implement }
  45. { parts explicitely in the code generator (JM) }
  46. function first_addstring: tnode; virtual;
  47. function first_addset: tnode; virtual;
  48. { only implements "muln" nodes, the rest always has to be done in }
  49. { the code generator for performance reasons (JM) }
  50. function first_add64bitint: tnode; virtual;
  51. { override and return false if you can handle 32x32->64 }
  52. { bit multiplies directly in your code generator. If }
  53. { this function is overridden to return false, you can }
  54. { get multiplies with left/right both s32bit or u32bit, }
  55. { and resultdef of the muln s64bit or u64bit }
  56. function use_generic_mul32to64: boolean; virtual;
  57. { This routine calls internal runtime library helpers
  58. for all floating point arithmetic in the case
  59. where the emulation switches is on. Otherwise
  60. returns nil, and everything must be done in
  61. the code generation phase.
  62. }
  63. function first_addfloat : tnode; virtual;
  64. private
  65. { checks whether a muln can be calculated as a 32bit }
  66. { * 32bit -> 64 bit }
  67. function try_make_mul32to64: boolean;
  68. end;
  69. taddnodeclass = class of taddnode;
  70. var
  71. { caddnode is used to create nodes of the add type }
  72. { the virtual constructor allows to assign }
  73. { another class type to caddnode => processor }
  74. { specific node types can be created }
  75. caddnode : taddnodeclass = taddnode;
  76. implementation
  77. uses
  78. {$IFNDEF USE_FAKE_SYSUTILS}
  79. sysutils,
  80. {$ELSE}
  81. fksysutl,
  82. {$ENDIF}
  83. globtype,systems,constexp,
  84. cutils,verbose,globals,widestr,
  85. symconst,symdef,symsym,symtable,defutil,defcmp,
  86. cgbase,
  87. htypechk,pass_1,
  88. nld,nbas,nmat,ncnv,ncon,nset,nopt,ncal,ninl,nmem,nutils,
  89. {$ifdef state_tracking}
  90. nstate,
  91. {$endif}
  92. cpuinfo,procinfo;
  93. {*****************************************************************************
  94. TADDNODE
  95. *****************************************************************************}
  96. {$maxfpuregisters 0}
  97. function getbestreal(t1,t2 : tdef) : tdef;
  98. const
  99. floatweight : array[tfloattype] of byte =
  100. (2,3,4,5,0,1,6);
  101. begin
  102. if t1.typ=floatdef then
  103. begin
  104. result:=t1;
  105. if t2.typ=floatdef then
  106. begin
  107. { when a comp or currency is used, use always the
  108. best float type to calculate the result }
  109. if (tfloatdef(t2).floattype in [s64comp,s64currency]) or
  110. (tfloatdef(t2).floattype in [s64comp,s64currency]) then
  111. result:=pbestrealtype^
  112. else
  113. if floatweight[tfloatdef(t2).floattype]>floatweight[tfloatdef(t1).floattype] then
  114. result:=t2;
  115. end;
  116. end
  117. else if t2.typ=floatdef then
  118. result:=t2
  119. else internalerror(200508061);
  120. end;
  121. constructor taddnode.create(tt : tnodetype;l,r : tnode);
  122. begin
  123. inherited create(tt,l,r);
  124. end;
  125. constructor taddnode.ppuload(t: tnodetype; ppufile: tcompilerppufile);
  126. begin
  127. inherited ppuload(t, ppufile);
  128. ppufile.getderef(resultrealdefderef);
  129. end;
  130. procedure taddnode.ppuwrite(ppufile: tcompilerppufile);
  131. begin
  132. inherited ppuwrite(ppufile);
  133. ppufile.putderef(resultrealdefderef);
  134. end;
  135. procedure taddnode.buildderefimpl;
  136. begin
  137. inherited buildderefimpl;
  138. resultrealdefderef.build(resultrealdef);
  139. end;
  140. procedure taddnode.derefimpl;
  141. begin
  142. inherited derefimpl;
  143. resultrealdef:=tdef(resultrealdefderef.resolve);
  144. end;
  145. function taddnode.simplify(forinline : boolean) : tnode;
  146. var
  147. t, hp : tnode;
  148. lt,rt : tnodetype;
  149. realdef : tdef;
  150. rd,ld : tdef;
  151. rv,lv,v : tconstexprint;
  152. rvd,lvd : bestreal;
  153. ws1,ws2 : pcompilerwidestring;
  154. concatstrings : boolean;
  155. c1,c2 : array[0..1] of char;
  156. s1,s2 : pchar;
  157. l1,l2 : longint;
  158. resultset : Tconstset;
  159. b : boolean;
  160. begin
  161. result:=nil;
  162. { load easier access variables }
  163. rd:=right.resultdef;
  164. ld:=left.resultdef;
  165. rt:=right.nodetype;
  166. lt:=left.nodetype;
  167. if (nodetype = slashn) and
  168. (((rt = ordconstn) and
  169. (tordconstnode(right).value = 0)) or
  170. ((rt = realconstn) and
  171. (trealconstnode(right).value_real = 0.0))) then
  172. begin
  173. if floating_point_range_check_error then
  174. begin
  175. result:=crealconstnode.create(1,pbestrealtype^);
  176. Message(parser_e_division_by_zero);
  177. exit;
  178. end;
  179. end;
  180. { both are int constants }
  181. if (
  182. (
  183. is_constintnode(left) and
  184. is_constintnode(right)
  185. ) or
  186. (
  187. is_constboolnode(left) and
  188. is_constboolnode(right) and
  189. (nodetype in [slashn,ltn,lten,gtn,gten,equaln,unequaln,andn,xorn,orn])
  190. ) or
  191. (
  192. is_constenumnode(left) and
  193. is_constenumnode(right) and
  194. allowenumop(nodetype))
  195. ) or
  196. (
  197. (lt = pointerconstn) and
  198. is_constintnode(right) and
  199. (nodetype in [addn,subn])
  200. ) or
  201. (
  202. (lt in [pointerconstn,niln]) and
  203. (rt in [pointerconstn,niln]) and
  204. (nodetype in [ltn,lten,gtn,gten,equaln,unequaln,subn])
  205. ) then
  206. begin
  207. t:=nil;
  208. { load values }
  209. case lt of
  210. ordconstn:
  211. lv:=tordconstnode(left).value;
  212. pointerconstn:
  213. lv:=tpointerconstnode(left).value;
  214. niln:
  215. lv:=0;
  216. else
  217. internalerror(2002080202);
  218. end;
  219. case rt of
  220. ordconstn:
  221. rv:=tordconstnode(right).value;
  222. pointerconstn:
  223. rv:=tpointerconstnode(right).value;
  224. niln:
  225. rv:=0;
  226. else
  227. internalerror(2002080203);
  228. end;
  229. { type checking already took care of multiplying }
  230. { integer constants with pointeddef.size if necessary }
  231. case nodetype of
  232. addn :
  233. begin
  234. v:=lv+rv;
  235. if v.overflow then
  236. begin
  237. Message(parser_e_arithmetic_operation_overflow);
  238. { Recover }
  239. t:=genintconstnode(0)
  240. end
  241. else if (lt=pointerconstn) then
  242. t := cpointerconstnode.create(qword(v),resultdef)
  243. else
  244. if is_integer(ld) then
  245. t := create_simplified_ord_const(v,resultdef,forinline)
  246. else
  247. t := cordconstnode.create(v,resultdef,(ld.typ<>enumdef));
  248. end;
  249. subn :
  250. begin
  251. v:=lv-rv;
  252. if v.overflow then
  253. begin
  254. Message(parser_e_arithmetic_operation_overflow);
  255. { Recover }
  256. t:=genintconstnode(0)
  257. end
  258. else if (lt=pointerconstn) then
  259. { pointer-pointer results in an integer }
  260. if (rt=pointerconstn) then
  261. begin
  262. if not(nf_has_pointerdiv in flags) then
  263. internalerror(2008030101);
  264. t := cpointerconstnode.create(qword(v),resultdef)
  265. end
  266. else
  267. t := cpointerconstnode.create(qword(v),resultdef)
  268. else
  269. if is_integer(ld) then
  270. t := create_simplified_ord_const(v,resultdef,forinline)
  271. else
  272. t:=cordconstnode.create(v,resultdef,(ld.typ<>enumdef));
  273. end;
  274. muln :
  275. begin
  276. v:=lv*rv;
  277. if v.overflow then
  278. begin
  279. message(parser_e_arithmetic_operation_overflow);
  280. { Recover }
  281. t:=genintconstnode(0)
  282. end
  283. else
  284. t := create_simplified_ord_const(v,resultdef,forinline)
  285. end;
  286. xorn :
  287. if is_integer(ld) then
  288. t := create_simplified_ord_const(lv xor rv,resultdef,forinline)
  289. else
  290. t:=cordconstnode.create(lv xor rv,resultdef,true);
  291. orn :
  292. if is_integer(ld) then
  293. t:=create_simplified_ord_const(lv or rv,resultdef,forinline)
  294. else
  295. t:=cordconstnode.create(lv or rv,resultdef,true);
  296. andn :
  297. if is_integer(ld) then
  298. t:=create_simplified_ord_const(lv and rv,resultdef,forinline)
  299. else
  300. t:=cordconstnode.create(lv and rv,resultdef,true);
  301. ltn :
  302. t:=cordconstnode.create(ord(lv<rv),pasbool8type,true);
  303. lten :
  304. t:=cordconstnode.create(ord(lv<=rv),pasbool8type,true);
  305. gtn :
  306. t:=cordconstnode.create(ord(lv>rv),pasbool8type,true);
  307. gten :
  308. t:=cordconstnode.create(ord(lv>=rv),pasbool8type,true);
  309. equaln :
  310. t:=cordconstnode.create(ord(lv=rv),pasbool8type,true);
  311. unequaln :
  312. t:=cordconstnode.create(ord(lv<>rv),pasbool8type,true);
  313. slashn :
  314. begin
  315. { int/int becomes a real }
  316. rvd:=rv;
  317. lvd:=lv;
  318. t:=crealconstnode.create(lvd/rvd,resultrealdef);
  319. end;
  320. else
  321. internalerror(2008022101);
  322. end;
  323. result:=t;
  324. exit;
  325. end
  326. {Match against the ranges, i.e.:
  327. var a:1..10;
  328. begin
  329. if a>0 then
  330. ... always evaluates to true. (DM)}
  331. else if is_constintnode(left) and (right.resultdef.typ=orddef) and
  332. { don't ignore type checks }
  333. is_subequal(left.resultdef,right.resultdef) then
  334. begin
  335. t:=nil;
  336. hp:=right;
  337. realdef:=hp.resultdef;
  338. { stop with finding the real def when we either encounter
  339. a) an explicit type conversion (then the value has to be
  340. re-interpreted)
  341. b) an "absolute" type conversion (also requires
  342. re-interpretation)
  343. }
  344. while (hp.nodetype=typeconvn) and
  345. ([nf_internal,nf_explicit,nf_absolute] * hp.flags = []) do
  346. begin
  347. hp:=ttypeconvnode(hp).left;
  348. realdef:=hp.resultdef;
  349. end;
  350. lv:=Tordconstnode(left).value;
  351. with torddef(realdef) do
  352. case nodetype of
  353. ltn:
  354. if lv<low then
  355. t:=Cordconstnode.create(1,pasbool8type,true)
  356. else if lv>=high then
  357. t:=Cordconstnode.create(0,pasbool8type,true);
  358. lten:
  359. if lv<=low then
  360. t:=Cordconstnode.create(1,pasbool8type,true)
  361. else if lv>high then
  362. t:=Cordconstnode.create(0,pasbool8type,true);
  363. gtn:
  364. if lv<=low then
  365. t:=Cordconstnode.create(0,pasbool8type,true)
  366. else if lv>high then
  367. t:=Cordconstnode.create(1,pasbool8type,true);
  368. gten :
  369. if lv<low then
  370. t:=Cordconstnode.create(0,pasbool8type,true)
  371. else if lv>=high then
  372. t:=Cordconstnode.create(1,pasbool8type,true);
  373. equaln:
  374. if (lv<low) or (lv>high) then
  375. t:=Cordconstnode.create(0,pasbool8type,true);
  376. unequaln:
  377. if (lv<low) or (lv>high) then
  378. t:=Cordconstnode.create(1,pasbool8type,true);
  379. end;
  380. if t<>nil then
  381. begin
  382. result:=t;
  383. exit;
  384. end
  385. end
  386. else if (left.resultdef.typ=orddef) and is_constintnode(right) and
  387. { don't ignore type checks }
  388. is_subequal(left.resultdef,right.resultdef) then
  389. begin
  390. t:=nil;
  391. hp:=left;
  392. realdef:=hp.resultdef;
  393. while (hp.nodetype=typeconvn) and
  394. ([nf_internal,nf_explicit,nf_absolute] * hp.flags = []) do
  395. begin
  396. hp:=ttypeconvnode(hp).left;
  397. realdef:=hp.resultdef;
  398. end;
  399. rv:=Tordconstnode(right).value;
  400. with torddef(realdef) do
  401. case nodetype of
  402. ltn:
  403. if high<rv then
  404. t:=Cordconstnode.create(1,pasbool8type,true)
  405. else if low>=rv then
  406. t:=Cordconstnode.create(0,pasbool8type,true);
  407. lten:
  408. if high<=rv then
  409. t:=Cordconstnode.create(1,pasbool8type,true)
  410. else if low>rv then
  411. t:=Cordconstnode.create(0,pasbool8type,true);
  412. gtn:
  413. if high<=rv then
  414. t:=Cordconstnode.create(0,pasbool8type,true)
  415. else if low>rv then
  416. t:=Cordconstnode.create(1,pasbool8type,true);
  417. gten:
  418. if high<rv then
  419. t:=Cordconstnode.create(0,pasbool8type,true)
  420. else if low>=rv then
  421. t:=Cordconstnode.create(1,pasbool8type,true);
  422. equaln:
  423. if (rv<low) or (rv>high) then
  424. t:=Cordconstnode.create(0,pasbool8type,true);
  425. unequaln:
  426. if (rv<low) or (rv>high) then
  427. t:=Cordconstnode.create(1,pasbool8type,true);
  428. end;
  429. if t<>nil then
  430. begin
  431. result:=t;
  432. exit;
  433. end
  434. end;
  435. { Add,Sub,Mul with constant 0, 1 or -1? }
  436. if is_constintnode(right) and is_integer(left.resultdef) then
  437. begin
  438. if tordconstnode(right).value = 0 then
  439. begin
  440. case nodetype of
  441. addn,subn:
  442. result := left.getcopy;
  443. muln:
  444. result:=cordconstnode.create(0,resultdef,true);
  445. end;
  446. end
  447. else if tordconstnode(right).value = 1 then
  448. begin
  449. case nodetype of
  450. muln:
  451. result := left.getcopy;
  452. end;
  453. end
  454. {$ifdef VER2_2}
  455. else if (tordconstnode(right).value.svalue = -1) and (tordconstnode(right).value.signed) then
  456. {$else}
  457. else if tordconstnode(right).value = -1 then
  458. {$endif}
  459. begin
  460. case nodetype of
  461. muln:
  462. result := cunaryminusnode.create(left.getcopy);
  463. end;
  464. end;
  465. if assigned(result) then
  466. exit;
  467. end;
  468. if is_constintnode(left) and is_integer(right.resultdef) then
  469. begin
  470. if tordconstnode(left).value = 0 then
  471. begin
  472. case nodetype of
  473. addn:
  474. result := right.getcopy;
  475. subn:
  476. result := cunaryminusnode.create(right.getcopy);
  477. muln:
  478. result:=cordconstnode.create(0,right.resultdef,true);
  479. end;
  480. end
  481. else if tordconstnode(left).value = 1 then
  482. begin
  483. case nodetype of
  484. muln:
  485. result := right.getcopy;
  486. end;
  487. end
  488. {$ifdef VER2_2}
  489. else if (tordconstnode(left).value.svalue = -1) and (tordconstnode(left).value.signed) then
  490. {$else}
  491. else if tordconstnode(left).value = -1 then
  492. {$endif}
  493. begin
  494. case nodetype of
  495. muln:
  496. result := cunaryminusnode.create(right.getcopy);
  497. end;
  498. end;
  499. if assigned(result) then
  500. exit;
  501. end;
  502. { both real constants ? }
  503. if (lt=realconstn) and (rt=realconstn) then
  504. begin
  505. lvd:=trealconstnode(left).value_real;
  506. rvd:=trealconstnode(right).value_real;
  507. case nodetype of
  508. addn :
  509. t:=crealconstnode.create(lvd+rvd,resultrealdef);
  510. subn :
  511. t:=crealconstnode.create(lvd-rvd,resultrealdef);
  512. muln :
  513. t:=crealconstnode.create(lvd*rvd,resultrealdef);
  514. starstarn:
  515. begin
  516. if lvd<0 then
  517. begin
  518. Message(parser_e_invalid_float_operation);
  519. t:=crealconstnode.create(0,resultrealdef);
  520. end
  521. else if lvd=0 then
  522. t:=crealconstnode.create(1.0,resultrealdef)
  523. else
  524. t:=crealconstnode.create(exp(ln(lvd)*rvd),resultrealdef);
  525. end;
  526. slashn :
  527. t:=crealconstnode.create(lvd/rvd,resultrealdef);
  528. ltn :
  529. t:=cordconstnode.create(ord(lvd<rvd),pasbool8type,true);
  530. lten :
  531. t:=cordconstnode.create(ord(lvd<=rvd),pasbool8type,true);
  532. gtn :
  533. t:=cordconstnode.create(ord(lvd>rvd),pasbool8type,true);
  534. gten :
  535. t:=cordconstnode.create(ord(lvd>=rvd),pasbool8type,true);
  536. equaln :
  537. t:=cordconstnode.create(ord(lvd=rvd),pasbool8type,true);
  538. unequaln :
  539. t:=cordconstnode.create(ord(lvd<>rvd),pasbool8type,true);
  540. else
  541. internalerror(2008022102);
  542. end;
  543. result:=t;
  544. exit;
  545. end;
  546. { first, we handle widestrings, so we can check later for }
  547. { stringconstn only }
  548. { widechars are converted above to widestrings too }
  549. { this isn't ver y efficient, but I don't think }
  550. { that it does matter that much (FK) }
  551. if (lt=stringconstn) and (rt=stringconstn) and
  552. (tstringconstnode(left).cst_type in [cst_widestring,cst_unicodestring]) and
  553. (tstringconstnode(right).cst_type in [cst_widestring,cst_unicodestring]) then
  554. begin
  555. initwidestring(ws1);
  556. initwidestring(ws2);
  557. copywidestring(pcompilerwidestring(tstringconstnode(left).value_str),ws1);
  558. copywidestring(pcompilerwidestring(tstringconstnode(right).value_str),ws2);
  559. case nodetype of
  560. addn :
  561. begin
  562. concatwidestrings(ws1,ws2);
  563. t:=cstringconstnode.createwstr(ws1);
  564. end;
  565. ltn :
  566. t:=cordconstnode.create(byte(comparewidestrings(ws1,ws2)<0),pasbool8type,true);
  567. lten :
  568. t:=cordconstnode.create(byte(comparewidestrings(ws1,ws2)<=0),pasbool8type,true);
  569. gtn :
  570. t:=cordconstnode.create(byte(comparewidestrings(ws1,ws2)>0),pasbool8type,true);
  571. gten :
  572. t:=cordconstnode.create(byte(comparewidestrings(ws1,ws2)>=0),pasbool8type,true);
  573. equaln :
  574. t:=cordconstnode.create(byte(comparewidestrings(ws1,ws2)=0),pasbool8type,true);
  575. unequaln :
  576. t:=cordconstnode.create(byte(comparewidestrings(ws1,ws2)<>0),pasbool8type,true);
  577. else
  578. internalerror(2008022103);
  579. end;
  580. donewidestring(ws1);
  581. donewidestring(ws2);
  582. result:=t;
  583. exit;
  584. end;
  585. { concating strings ? }
  586. concatstrings:=false;
  587. if (lt=ordconstn) and (rt=ordconstn) and
  588. is_char(ld) and is_char(rd) then
  589. begin
  590. c1[0]:=char(int64(tordconstnode(left).value));
  591. c1[1]:=#0;
  592. l1:=1;
  593. c2[0]:=char(int64(tordconstnode(right).value));
  594. c2[1]:=#0;
  595. l2:=1;
  596. s1:=@c1[0];
  597. s2:=@c2[0];
  598. concatstrings:=true;
  599. end
  600. else if (lt=stringconstn) and (rt=ordconstn) and is_char(rd) then
  601. begin
  602. s1:=tstringconstnode(left).value_str;
  603. l1:=tstringconstnode(left).len;
  604. c2[0]:=char(int64(tordconstnode(right).value));
  605. c2[1]:=#0;
  606. s2:=@c2[0];
  607. l2:=1;
  608. concatstrings:=true;
  609. end
  610. else if (lt=ordconstn) and (rt=stringconstn) and is_char(ld) then
  611. begin
  612. c1[0]:=char(int64(tordconstnode(left).value));
  613. c1[1]:=#0;
  614. l1:=1;
  615. s1:=@c1[0];
  616. s2:=tstringconstnode(right).value_str;
  617. l2:=tstringconstnode(right).len;
  618. concatstrings:=true;
  619. end
  620. else if (lt=stringconstn) and (rt=stringconstn) then
  621. begin
  622. s1:=tstringconstnode(left).value_str;
  623. l1:=tstringconstnode(left).len;
  624. s2:=tstringconstnode(right).value_str;
  625. l2:=tstringconstnode(right).len;
  626. concatstrings:=true;
  627. end;
  628. if concatstrings then
  629. begin
  630. case nodetype of
  631. addn :
  632. begin
  633. t:=cstringconstnode.createpchar(concatansistrings(s1,s2,l1,l2),l1+l2);
  634. typecheckpass(t);
  635. tstringconstnode(t).changestringtype(resultdef);
  636. end;
  637. ltn :
  638. t:=cordconstnode.create(byte(compareansistrings(s1,s2,l1,l2)<0),pasbool8type,true);
  639. lten :
  640. t:=cordconstnode.create(byte(compareansistrings(s1,s2,l1,l2)<=0),pasbool8type,true);
  641. gtn :
  642. t:=cordconstnode.create(byte(compareansistrings(s1,s2,l1,l2)>0),pasbool8type,true);
  643. gten :
  644. t:=cordconstnode.create(byte(compareansistrings(s1,s2,l1,l2)>=0),pasbool8type,true);
  645. equaln :
  646. t:=cordconstnode.create(byte(compareansistrings(s1,s2,l1,l2)=0),pasbool8type,true);
  647. unequaln :
  648. t:=cordconstnode.create(byte(compareansistrings(s1,s2,l1,l2)<>0),pasbool8type,true);
  649. else
  650. internalerror(2008022104);
  651. end;
  652. result:=t;
  653. exit;
  654. end;
  655. { set constant evaluation }
  656. if (right.nodetype=setconstn) and
  657. not assigned(tsetconstnode(right).left) and
  658. (left.nodetype=setconstn) and
  659. not assigned(tsetconstnode(left).left) then
  660. begin
  661. case nodetype of
  662. addn :
  663. begin
  664. resultset:=tsetconstnode(right).value_set^ + tsetconstnode(left).value_set^;
  665. t:=csetconstnode.create(@resultset,resultdef);
  666. end;
  667. muln :
  668. begin
  669. resultset:=tsetconstnode(right).value_set^ * tsetconstnode(left).value_set^;
  670. t:=csetconstnode.create(@resultset,resultdef);
  671. end;
  672. subn :
  673. begin
  674. resultset:=tsetconstnode(left).value_set^ - tsetconstnode(right).value_set^;
  675. t:=csetconstnode.create(@resultset,resultdef);
  676. end;
  677. symdifn :
  678. begin
  679. resultset:=tsetconstnode(right).value_set^ >< tsetconstnode(left).value_set^;
  680. t:=csetconstnode.create(@resultset,resultdef);
  681. end;
  682. unequaln :
  683. begin
  684. b:=tsetconstnode(right).value_set^ <> tsetconstnode(left).value_set^;
  685. t:=cordconstnode.create(byte(b),pasbool8type,true);
  686. end;
  687. equaln :
  688. begin
  689. b:=tsetconstnode(right).value_set^ = tsetconstnode(left).value_set^;
  690. t:=cordconstnode.create(byte(b),pasbool8type,true);
  691. end;
  692. lten :
  693. begin
  694. b:=tsetconstnode(left).value_set^ <= tsetconstnode(right).value_set^;
  695. t:=cordconstnode.create(byte(b),pasbool8type,true);
  696. end;
  697. gten :
  698. begin
  699. b:=tsetconstnode(left).value_set^ >= tsetconstnode(right).value_set^;
  700. t:=cordconstnode.create(byte(b),pasbool8type,true);
  701. end;
  702. else
  703. internalerror(2008022105);
  704. end;
  705. result:=t;
  706. exit;
  707. end;
  708. { slow simplifications }
  709. if (cs_opt_level2 in current_settings.optimizerswitches) then
  710. begin
  711. { the comparison is might be expensive and the nodes are usually only
  712. equal if some previous optimizations were done so don't check
  713. this simplification always
  714. }
  715. if is_boolean(left.resultdef) and is_boolean(right.resultdef) and
  716. { since the expressions might have sideeffects, we may only remove them
  717. if short boolean evaluation is turned on }
  718. (nf_short_bool in flags) then
  719. begin
  720. if left.isequal(right) then
  721. begin
  722. case nodetype of
  723. andn,orn:
  724. begin
  725. result:=left;
  726. left:=nil;
  727. exit;
  728. end;
  729. {
  730. xorn:
  731. begin
  732. result:=cordconstnode.create(0,resultdef,true);
  733. exit;
  734. end;
  735. }
  736. end;
  737. end;
  738. end;
  739. { using sqr(x) for reals instead of x*x might reduces register pressure and/or
  740. memory accesses while sqr(<real>) has no drawback }
  741. if (nodetype=muln) and
  742. is_real(left.resultdef) and is_real(right.resultdef) and
  743. left.isequal(right) then
  744. begin
  745. result:=cinlinenode.create(in_sqr_real,false,left);
  746. left:=nil;
  747. exit;
  748. end;
  749. end;
  750. end;
  751. function taddnode.dogetcopy: tnode;
  752. var
  753. n: taddnode;
  754. begin
  755. n:=taddnode(inherited dogetcopy);
  756. n.resultrealdef:=resultrealdef;
  757. result:=n;
  758. end;
  759. function taddnode.docompare(p: tnode): boolean;
  760. begin
  761. result:=
  762. inherited docompare(p) and
  763. equal_defs(taddnode(p).resultrealdef,resultrealdef);
  764. end;
  765. function taddnode.pass_typecheck:tnode;
  766. begin
  767. { This function is small to keep the stack small for recursive of
  768. large + operations }
  769. typecheckpass(left);
  770. typecheckpass(right);
  771. result:=pass_typecheck_internal;
  772. end;
  773. function taddnode.pass_typecheck_internal:tnode;
  774. var
  775. hp : tnode;
  776. rd,ld,nd : tdef;
  777. hsym : tfieldvarsym;
  778. llow,lhigh,
  779. rlow,rhigh : tconstexprint;
  780. strtype : tstringtype;
  781. b : boolean;
  782. lt,rt : tnodetype;
  783. ot : tnodetype;
  784. {$ifdef state_tracking}
  785. factval : Tnode;
  786. change : boolean;
  787. {$endif}
  788. begin
  789. result:=nil;
  790. { avoid any problems with type parameters later on }
  791. if is_typeparam(left.resultdef) or is_typeparam(right.resultdef) then
  792. begin
  793. resultdef:=cundefinedtype;
  794. exit;
  795. end;
  796. { both left and right need to be valid }
  797. set_varstate(left,vs_read,[vsf_must_be_valid]);
  798. set_varstate(right,vs_read,[vsf_must_be_valid]);
  799. if codegenerror then
  800. exit;
  801. { tp procvar support }
  802. maybe_call_procvar(left,true);
  803. maybe_call_procvar(right,true);
  804. { convert array constructors to sets, because there is no other operator
  805. possible for array constructors }
  806. if is_array_constructor(left.resultdef) then
  807. begin
  808. arrayconstructor_to_set(left);
  809. typecheckpass(left);
  810. end;
  811. if is_array_constructor(right.resultdef) then
  812. begin
  813. arrayconstructor_to_set(right);
  814. typecheckpass(right);
  815. end;
  816. { allow operator overloading }
  817. hp:=self;
  818. if isbinaryoverloaded(hp) then
  819. begin
  820. result:=hp;
  821. exit;
  822. end;
  823. { Stop checking when an error was found in the operator checking }
  824. if codegenerror then
  825. begin
  826. result:=cerrornode.create;
  827. exit;
  828. end;
  829. { Kylix allows enum+ordconstn in an enum type declaration, we need to do
  830. the conversion here before the constant folding }
  831. if (m_delphi in current_settings.modeswitches) and
  832. (blocktype in [bt_type,bt_const_type,bt_var_type]) then
  833. begin
  834. if (left.resultdef.typ=enumdef) and
  835. (right.resultdef.typ=orddef) then
  836. begin
  837. { insert explicit typecast to default signed int }
  838. left:=ctypeconvnode.create_internal(left,sinttype);
  839. typecheckpass(left);
  840. end
  841. else
  842. if (left.resultdef.typ=orddef) and
  843. (right.resultdef.typ=enumdef) then
  844. begin
  845. { insert explicit typecast to default signed int }
  846. right:=ctypeconvnode.create_internal(right,sinttype);
  847. typecheckpass(right);
  848. end;
  849. end;
  850. { is one a real float, then both need to be floats, this
  851. need to be done before the constant folding so constant
  852. operation on a float and int are also handled }
  853. {$ifdef x86}
  854. { use extended as default real type only when the x87 fpu is used }
  855. {$ifdef i386}
  856. if not(current_settings.fputype=fpu_x87) then
  857. resultrealdef:=s64floattype
  858. else
  859. resultrealdef:=pbestrealtype^;
  860. {$endif i386}
  861. {$ifdef x86_64}
  862. { x86-64 has no x87 only mode, so use always double as default }
  863. resultrealdef:=s64floattype;
  864. {$endif x86_6}
  865. {$else not x86}
  866. resultrealdef:=pbestrealtype^;
  867. {$endif not x86}
  868. if (right.resultdef.typ=floatdef) or (left.resultdef.typ=floatdef) then
  869. begin
  870. { when both floattypes are already equal then use that
  871. floattype for results }
  872. if (right.resultdef.typ=floatdef) and
  873. (left.resultdef.typ=floatdef) and
  874. (tfloatdef(left.resultdef).floattype=tfloatdef(right.resultdef).floattype) then
  875. resultrealdef:=left.resultdef
  876. { when there is a currency type then use currency, but
  877. only when currency is defined as float }
  878. else
  879. if (is_currency(right.resultdef) or
  880. is_currency(left.resultdef)) and
  881. ((s64currencytype.typ = floatdef) or
  882. (nodetype <> slashn)) then
  883. begin
  884. resultrealdef:=s64currencytype;
  885. inserttypeconv(right,resultrealdef);
  886. inserttypeconv(left,resultrealdef);
  887. end
  888. else
  889. begin
  890. resultrealdef:=getbestreal(left.resultdef,right.resultdef);
  891. inserttypeconv(right,resultrealdef);
  892. inserttypeconv(left,resultrealdef);
  893. end;
  894. end;
  895. { If both operands are constant and there is a unicodestring
  896. or unicodestring then convert everything to unicodestring }
  897. if is_constnode(right) and is_constnode(left) and
  898. (is_unicodestring(right.resultdef) or
  899. is_unicodestring(left.resultdef)) then
  900. begin
  901. inserttypeconv(right,cunicodestringtype);
  902. inserttypeconv(left,cunicodestringtype);
  903. end;
  904. { If both operands are constant and there is a widechar
  905. or widestring then convert everything to widestring. This
  906. allows constant folding like char+widechar }
  907. if is_constnode(right) and is_constnode(left) and
  908. (is_widestring(right.resultdef) or
  909. is_widestring(left.resultdef) or
  910. is_widechar(right.resultdef) or
  911. is_widechar(left.resultdef)) then
  912. begin
  913. inserttypeconv(right,cwidestringtype);
  914. inserttypeconv(left,cwidestringtype);
  915. end;
  916. { load easier access variables }
  917. rd:=right.resultdef;
  918. ld:=left.resultdef;
  919. rt:=right.nodetype;
  920. lt:=left.nodetype;
  921. { 4 character constant strings are compatible with orddef }
  922. { in macpas mode (become cardinals) }
  923. if (m_mac in current_settings.modeswitches) and
  924. { only allow for comparisons, additions etc are }
  925. { normally program errors }
  926. (nodetype in [ltn,lten,gtn,gten,unequaln,equaln]) and
  927. (((lt=stringconstn) and
  928. (tstringconstnode(left).len=4) and
  929. (rd.typ=orddef)) or
  930. ((rt=stringconstn) and
  931. (tstringconstnode(right).len=4) and
  932. (ld.typ=orddef))) then
  933. begin
  934. if (rt=stringconstn) then
  935. begin
  936. inserttypeconv(right,u32inttype);
  937. rt:=right.nodetype;
  938. rd:=right.resultdef;
  939. end
  940. else
  941. begin
  942. inserttypeconv(left,u32inttype);
  943. lt:=left.nodetype;
  944. ld:=left.resultdef;
  945. end;
  946. end;
  947. { but an int/int gives real/real! }
  948. if (nodetype=slashn) and not(is_vector(left.resultdef)) and not(is_vector(right.resultdef)) then
  949. begin
  950. if is_currency(left.resultdef) and
  951. is_currency(right.resultdef) then
  952. { In case of currency, converting to float means dividing by 10000 }
  953. { However, since this is already a division, both divisions by }
  954. { 10000 are eliminated when we divide the results -> we can skip }
  955. { them. }
  956. if s64currencytype.typ = floatdef then
  957. begin
  958. { there's no s64comptype or so, how do we avoid the type conversion?
  959. left.resultdef := s64comptype;
  960. right.resultdef := s64comptype; }
  961. end
  962. else
  963. begin
  964. left.resultdef := s64inttype;
  965. right.resultdef := s64inttype;
  966. end;
  967. inserttypeconv(right,resultrealdef);
  968. inserttypeconv(left,resultrealdef);
  969. end
  970. { if both are orddefs then check sub types }
  971. else if (ld.typ=orddef) and (rd.typ=orddef) then
  972. begin
  973. { set for & and | operations in macpas mode: they only work on }
  974. { booleans, and always short circuit evaluation }
  975. if (nf_short_bool in flags) then
  976. begin
  977. if not is_boolean(ld) then
  978. begin
  979. inserttypeconv(left,pasbool8type);
  980. ld := left.resultdef;
  981. end;
  982. if not is_boolean(rd) then
  983. begin
  984. inserttypeconv(right,pasbool8type);
  985. rd := right.resultdef;
  986. end;
  987. end;
  988. { 2 booleans? Make them equal to the largest boolean }
  989. if (is_boolean(ld) and is_boolean(rd)) or
  990. (nf_short_bool in flags) then
  991. begin
  992. if (torddef(left.resultdef).size>torddef(right.resultdef).size) or
  993. (is_cbool(left.resultdef) and not is_cbool(right.resultdef)) then
  994. begin
  995. right:=ctypeconvnode.create_internal(right,left.resultdef);
  996. ttypeconvnode(right).convtype:=tc_bool_2_bool;
  997. typecheckpass(right);
  998. end
  999. else if (torddef(left.resultdef).size<torddef(right.resultdef).size) or
  1000. (not is_cbool(left.resultdef) and is_cbool(right.resultdef)) then
  1001. begin
  1002. left:=ctypeconvnode.create_internal(left,right.resultdef);
  1003. ttypeconvnode(left).convtype:=tc_bool_2_bool;
  1004. typecheckpass(left);
  1005. end;
  1006. case nodetype of
  1007. xorn,
  1008. ltn,
  1009. lten,
  1010. gtn,
  1011. gten,
  1012. andn,
  1013. orn:
  1014. begin
  1015. end;
  1016. unequaln,
  1017. equaln:
  1018. begin
  1019. if not(cs_full_boolean_eval in current_settings.localswitches) or
  1020. (nf_short_bool in flags) then
  1021. begin
  1022. { Remove any compares with constants }
  1023. if (left.nodetype=ordconstn) then
  1024. begin
  1025. hp:=right;
  1026. b:=(tordconstnode(left).value<>0);
  1027. ot:=nodetype;
  1028. left.free;
  1029. left:=nil;
  1030. right:=nil;
  1031. if (not(b) and (ot=equaln)) or
  1032. (b and (ot=unequaln)) then
  1033. begin
  1034. hp:=cnotnode.create(hp);
  1035. end;
  1036. result:=hp;
  1037. exit;
  1038. end;
  1039. if (right.nodetype=ordconstn) then
  1040. begin
  1041. hp:=left;
  1042. b:=(tordconstnode(right).value<>0);
  1043. ot:=nodetype;
  1044. right.free;
  1045. right:=nil;
  1046. left:=nil;
  1047. if (not(b) and (ot=equaln)) or
  1048. (b and (ot=unequaln)) then
  1049. begin
  1050. hp:=cnotnode.create(hp);
  1051. end;
  1052. result:=hp;
  1053. exit;
  1054. end;
  1055. end;
  1056. end;
  1057. else
  1058. begin
  1059. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1060. result:=cnothingnode.create;
  1061. exit;
  1062. end;
  1063. end;
  1064. end
  1065. { Both are chars? }
  1066. else if is_char(rd) and is_char(ld) then
  1067. begin
  1068. if nodetype=addn then
  1069. begin
  1070. resultdef:=cshortstringtype;
  1071. if not(is_constcharnode(left) and is_constcharnode(right)) then
  1072. begin
  1073. inserttypeconv(left,cshortstringtype);
  1074. {$ifdef addstringopt}
  1075. hp := genaddsstringcharoptnode(self);
  1076. result := hp;
  1077. exit;
  1078. {$endif addstringopt}
  1079. end
  1080. end
  1081. else if not(nodetype in [ltn,lten,gtn,gten,unequaln,equaln]) then
  1082. begin
  1083. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1084. result:=cnothingnode.create;
  1085. exit;
  1086. end;
  1087. end
  1088. { There is a widechar? }
  1089. else if is_widechar(rd) or is_widechar(ld) then
  1090. begin
  1091. { widechar+widechar gives widestring }
  1092. if nodetype=addn then
  1093. begin
  1094. inserttypeconv(left,cwidestringtype);
  1095. if (torddef(rd).ordtype<>uwidechar) then
  1096. inserttypeconv(right,cwidechartype);
  1097. resultdef:=cwidestringtype;
  1098. end
  1099. else
  1100. begin
  1101. if (torddef(ld).ordtype<>uwidechar) then
  1102. inserttypeconv(left,cwidechartype);
  1103. if (torddef(rd).ordtype<>uwidechar) then
  1104. inserttypeconv(right,cwidechartype);
  1105. end;
  1106. end
  1107. { is there a currency type ? }
  1108. else if ((torddef(rd).ordtype=scurrency) or (torddef(ld).ordtype=scurrency)) then
  1109. begin
  1110. if (torddef(ld).ordtype<>scurrency) then
  1111. inserttypeconv(left,s64currencytype);
  1112. if (torddef(rd).ordtype<>scurrency) then
  1113. inserttypeconv(right,s64currencytype);
  1114. end
  1115. { "and" does't care about the sign of integers }
  1116. { "xor", "or" and compares don't need extension to native int }
  1117. { size either as long as both values are signed or unsigned }
  1118. { "xor" and "or" also don't care about the sign if the values }
  1119. { occupy an entire register }
  1120. { don't do it if either type is 64 bit, since in that case we }
  1121. { can't safely find a "common" type }
  1122. else if is_integer(ld) and is_integer(rd) and
  1123. not is_64bitint(ld) and not is_64bitint(rd) and
  1124. ((nodetype=andn) or
  1125. ((nodetype in [orn,xorn,equaln,unequaln,gtn,gten,ltn,lten]) and
  1126. not(is_signed(ld) xor is_signed(rd)))) then
  1127. begin
  1128. if (rd.size>ld.size) or
  1129. { Delphi-compatible: prefer unsigned type for "and" with equal size }
  1130. ((rd.size=ld.size) and
  1131. not is_signed(rd)) then
  1132. begin
  1133. if (rd.size=ld.size) and
  1134. is_signed(ld) then
  1135. inserttypeconv_internal(left,rd)
  1136. else
  1137. begin
  1138. { not to left right.resultdef, because that may
  1139. cause a range error if left and right's def don't
  1140. completely overlap }
  1141. nd:=get_common_intdef(torddef(ld),torddef(rd),true);
  1142. inserttypeconv(left,nd);
  1143. inserttypeconv(right,nd);
  1144. end;
  1145. end
  1146. else
  1147. begin
  1148. if (rd.size=ld.size) and
  1149. is_signed(rd) then
  1150. inserttypeconv_internal(right,ld)
  1151. else
  1152. begin
  1153. nd:=get_common_intdef(torddef(ld),torddef(rd),true);
  1154. inserttypeconv(left,nd);
  1155. inserttypeconv(right,nd);
  1156. end;
  1157. end
  1158. end
  1159. { is there a signed 64 bit type ? }
  1160. else if ((torddef(rd).ordtype=s64bit) or (torddef(ld).ordtype=s64bit)) then
  1161. begin
  1162. if (torddef(ld).ordtype<>s64bit) then
  1163. inserttypeconv(left,s64inttype);
  1164. if (torddef(rd).ordtype<>s64bit) then
  1165. inserttypeconv(right,s64inttype);
  1166. end
  1167. { is there a unsigned 64 bit type ? }
  1168. else if ((torddef(rd).ordtype=u64bit) or (torddef(ld).ordtype=u64bit)) then
  1169. begin
  1170. if (torddef(ld).ordtype<>u64bit) then
  1171. inserttypeconv(left,u64inttype);
  1172. if (torddef(rd).ordtype<>u64bit) then
  1173. inserttypeconv(right,u64inttype);
  1174. end
  1175. { 64 bit cpus do calculations always in 64 bit }
  1176. {$ifndef cpu64bitaddr}
  1177. { is there a cardinal? }
  1178. else if ((torddef(rd).ordtype=u32bit) or (torddef(ld).ordtype=u32bit)) then
  1179. begin
  1180. { convert positive constants to u32bit }
  1181. if (torddef(ld).ordtype<>u32bit) and
  1182. is_constintnode(left) and
  1183. (tordconstnode(left).value >= 0) then
  1184. inserttypeconv(left,u32inttype);
  1185. if (torddef(rd).ordtype<>u32bit) and
  1186. is_constintnode(right) and
  1187. (tordconstnode(right).value >= 0) then
  1188. inserttypeconv(right,u32inttype);
  1189. { when one of the operand is signed or the operation is subn then perform
  1190. the operation in 64bit, can't use rd/ld here because there
  1191. could be already typeconvs inserted.
  1192. This is compatible with the code below for other unsigned types (PFV) }
  1193. if is_signed(left.resultdef) or
  1194. is_signed(right.resultdef) or
  1195. (nodetype=subn) then
  1196. begin
  1197. if nodetype<>subn then
  1198. CGMessage(type_h_mixed_signed_unsigned);
  1199. { mark as internal in case added for a subn, so }
  1200. { ttypeconvnode.simplify can remove the 64 bit }
  1201. { typecast again if semantically correct. Even }
  1202. { if we could detect that here already, we }
  1203. { mustn't do it here because that would change }
  1204. { overload choosing behaviour etc. The code in }
  1205. { ncnv.pas is run after that is already decided }
  1206. if (not is_signed(left.resultdef) and
  1207. not is_signed(right.resultdef)) or
  1208. (nodetype in [orn,xorn]) then
  1209. include(flags,nf_internal);
  1210. inserttypeconv(left,s64inttype);
  1211. inserttypeconv(right,s64inttype);
  1212. end
  1213. else
  1214. begin
  1215. if (torddef(left.resultdef).ordtype<>u32bit) then
  1216. inserttypeconv(left,u32inttype);
  1217. if (torddef(right.resultdef).ordtype<>u32bit) then
  1218. inserttypeconv(right,u32inttype);
  1219. end;
  1220. end
  1221. {$endif cpu64bitaddr}
  1222. { generic ord conversion is sinttype }
  1223. else
  1224. begin
  1225. { if the left or right value is smaller than the normal
  1226. type sinttype and is unsigned, and the other value
  1227. is a constant < 0, the result will always be false/true
  1228. for equal / unequal nodes.
  1229. }
  1230. if (
  1231. { left : unsigned ordinal var, right : < 0 constant }
  1232. (
  1233. ((is_signed(ld)=false) and (is_constintnode(left) =false)) and
  1234. ((is_constintnode(right)) and (tordconstnode(right).value < 0))
  1235. ) or
  1236. { right : unsigned ordinal var, left : < 0 constant }
  1237. (
  1238. ((is_signed(rd)=false) and (is_constintnode(right) =false)) and
  1239. ((is_constintnode(left)) and (tordconstnode(left).value < 0))
  1240. )
  1241. ) then
  1242. begin
  1243. if nodetype = equaln then
  1244. CGMessage(type_w_signed_unsigned_always_false)
  1245. else
  1246. if nodetype = unequaln then
  1247. CGMessage(type_w_signed_unsigned_always_true)
  1248. else
  1249. if (is_constintnode(left) and (nodetype in [ltn,lten])) or
  1250. (is_constintnode(right) and (nodetype in [gtn,gten])) then
  1251. CGMessage(type_w_signed_unsigned_always_true)
  1252. else
  1253. if (is_constintnode(right) and (nodetype in [ltn,lten])) or
  1254. (is_constintnode(left) and (nodetype in [gtn,gten])) then
  1255. CGMessage(type_w_signed_unsigned_always_false);
  1256. end;
  1257. { When there is a signed type or there is a minus operation
  1258. we convert to signed int. Otherwise (both are unsigned) we keep
  1259. the result also unsigned. This is compatible with Delphi (PFV) }
  1260. if is_signed(ld) or
  1261. is_signed(rd) or
  1262. (nodetype=subn) then
  1263. begin
  1264. {$ifdef cpunodefaultint}
  1265. { for small cpus we use the smallest common type }
  1266. nd:=get_common_intdef(torddef(ld),torddef(rd),false);
  1267. inserttypeconv(right,nd);
  1268. inserttypeconv(left,nd);
  1269. {$else cpunodefaultint}
  1270. inserttypeconv(right,sinttype);
  1271. inserttypeconv(left,sinttype);
  1272. {$endif cpunodefaultint}
  1273. end
  1274. else
  1275. begin
  1276. inserttypeconv(right,uinttype);
  1277. inserttypeconv(left,uinttype);
  1278. end;
  1279. end;
  1280. end
  1281. { if both are floatdefs, conversion is already done before constant folding }
  1282. else if (ld.typ=floatdef) then
  1283. begin
  1284. if not(nodetype in [addn,subn,muln,slashn,equaln,unequaln,ltn,lten,gtn,gten]) then
  1285. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1286. end
  1287. { left side a setdef, must be before string processing,
  1288. else array constructor can be seen as array of char (PFV) }
  1289. else if (ld.typ=setdef) then
  1290. begin
  1291. if not(nodetype in [addn,subn,symdifn,muln,equaln,unequaln,lten,gten]) then
  1292. CGMessage(type_e_set_operation_unknown);
  1293. { right must either be a set or a set element }
  1294. if (rd.typ<>setdef) and
  1295. (rt<>setelementn) then
  1296. CGMessage(type_e_mismatch)
  1297. { Make operands the same setdef. If one's elementtype fits }
  1298. { entirely inside the other's, pick the one with the largest }
  1299. { range. Otherwise create a new setdef with a range which }
  1300. { can contain both. }
  1301. else if not(equal_defs(ld,rd)) then
  1302. begin
  1303. { note: ld cannot be an empty set with elementdef=nil in }
  1304. { case right is not a set, arrayconstructor_to_set takes }
  1305. { care of that }
  1306. { 1: rd is a set with an assigned elementdef, and ld is }
  1307. { either an empty set without elementdef or a set whose }
  1308. { elementdef fits in rd's elementdef -> convert to rd }
  1309. if ((rd.typ=setdef) and
  1310. assigned(tsetdef(rd).elementdef) and
  1311. (not assigned(tsetdef(ld).elementdef) or
  1312. is_in_limit(ld,rd))) then
  1313. inserttypeconv(left,rd)
  1314. { 2: rd is either an empty set without elementdef or a set }
  1315. { whose elementdef fits in ld's elementdef, or a set }
  1316. { element whose def fits in ld's elementdef -> convert }
  1317. { to ld. ld's elementdef can't be nil here, is caught }
  1318. { previous case and "note:" above }
  1319. else if ((rd.typ=setdef) and
  1320. (not assigned(tsetdef(rd).elementdef) or
  1321. is_in_limit(rd,ld))) or
  1322. ((rd.typ<>setdef) and
  1323. is_in_limit(rd,tsetdef(ld).elementdef)) then
  1324. if (rd.typ=setdef) then
  1325. inserttypeconv(right,ld)
  1326. else
  1327. inserttypeconv(right,tsetdef(ld).elementdef)
  1328. { 3: otherwise create setdef which encompasses both, taking }
  1329. { into account empty sets without elementdef }
  1330. else
  1331. begin
  1332. if assigned(tsetdef(ld).elementdef) then
  1333. begin
  1334. llow:=tsetdef(ld).setbase;
  1335. lhigh:=tsetdef(ld).setmax;
  1336. end;
  1337. if (rd.typ=setdef) then
  1338. if assigned(tsetdef(rd).elementdef) then
  1339. begin
  1340. rlow:=tsetdef(rd).setbase;
  1341. rhigh:=tsetdef(rd).setmax;
  1342. end
  1343. else
  1344. begin
  1345. { ld's elementdef must have been valid }
  1346. rlow:=llow;
  1347. rhigh:=lhigh;
  1348. end
  1349. else
  1350. getrange(rd,rlow,rhigh);
  1351. if not assigned(tsetdef(ld).elementdef) then
  1352. begin
  1353. llow:=rlow;
  1354. lhigh:=rhigh;
  1355. end;
  1356. nd:=tsetdef.create(tsetdef(ld).elementdef,min(llow,rlow),max(lhigh,rhigh));
  1357. inserttypeconv(left,nd);
  1358. if (rd.typ=setdef) then
  1359. inserttypeconv(right,nd)
  1360. else
  1361. inserttypeconv(right,tsetdef(nd).elementdef);
  1362. end;
  1363. end;
  1364. end
  1365. { pointer comparision and subtraction }
  1366. else if (
  1367. (rd.typ=pointerdef) and (ld.typ=pointerdef)
  1368. ) or
  1369. { compare/add pchar to variable (not stringconst) char arrays
  1370. by addresses like BP/Delphi }
  1371. (
  1372. (nodetype in [equaln,unequaln,subn,addn]) and
  1373. (
  1374. ((is_pchar(ld) or (lt=niln)) and is_chararray(rd) and (rt<>stringconstn)) or
  1375. ((is_pchar(rd) or (rt=niln)) and is_chararray(ld) and (lt<>stringconstn))
  1376. )
  1377. ) then
  1378. begin
  1379. { convert char array to pointer }
  1380. if is_chararray(rd) then
  1381. begin
  1382. inserttypeconv(right,charpointertype);
  1383. rd:=right.resultdef;
  1384. end
  1385. else if is_chararray(ld) then
  1386. begin
  1387. inserttypeconv(left,charpointertype);
  1388. ld:=left.resultdef;
  1389. end;
  1390. case nodetype of
  1391. equaln,unequaln :
  1392. begin
  1393. if is_voidpointer(right.resultdef) then
  1394. inserttypeconv(right,left.resultdef)
  1395. else if is_voidpointer(left.resultdef) then
  1396. inserttypeconv(left,right.resultdef)
  1397. else if not(equal_defs(ld,rd)) then
  1398. IncompatibleTypes(ld,rd);
  1399. { now that the type checking is done, convert both to charpointer, }
  1400. { because methodpointers are 8 bytes even though only the first 4 }
  1401. { bytes must be compared. This can happen here if we are in }
  1402. { TP/Delphi mode, because there @methodpointer = voidpointer (but }
  1403. { a voidpointer of 8 bytes). A conversion to voidpointer would be }
  1404. { optimized away, since the result already was a voidpointer, so }
  1405. { use a charpointer instead (JM) }
  1406. inserttypeconv_internal(left,charpointertype);
  1407. inserttypeconv_internal(right,charpointertype);
  1408. end;
  1409. ltn,lten,gtn,gten:
  1410. begin
  1411. if (cs_extsyntax in current_settings.moduleswitches) then
  1412. begin
  1413. if is_voidpointer(right.resultdef) then
  1414. inserttypeconv(right,left.resultdef)
  1415. else if is_voidpointer(left.resultdef) then
  1416. inserttypeconv(left,right.resultdef)
  1417. else if not(equal_defs(ld,rd)) then
  1418. IncompatibleTypes(ld,rd);
  1419. end
  1420. else
  1421. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1422. end;
  1423. subn:
  1424. begin
  1425. if (cs_extsyntax in current_settings.moduleswitches) then
  1426. begin
  1427. if is_voidpointer(right.resultdef) then
  1428. begin
  1429. if is_big_untyped_addrnode(right) then
  1430. CGMessage1(type_w_untyped_arithmetic_unportable,node2opstr(nodetype));
  1431. inserttypeconv(right,left.resultdef)
  1432. end
  1433. else if is_voidpointer(left.resultdef) then
  1434. inserttypeconv(left,right.resultdef)
  1435. else if not(equal_defs(ld,rd)) then
  1436. IncompatibleTypes(ld,rd);
  1437. end
  1438. else
  1439. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1440. if not(nf_has_pointerdiv in flags) and
  1441. (tpointerdef(rd).pointeddef.size>1) then
  1442. begin
  1443. hp:=getcopy;
  1444. include(hp.flags,nf_has_pointerdiv);
  1445. result:=cmoddivnode.create(divn,hp,cordconstnode.create(tpointerdef(rd).pointeddef.size,sinttype,false));
  1446. end;
  1447. resultdef:=sinttype;
  1448. exit;
  1449. end;
  1450. else
  1451. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1452. end;
  1453. end
  1454. { is one of the operands a string?,
  1455. chararrays are also handled as strings (after conversion), also take
  1456. care of chararray+chararray and chararray+char.
  1457. Note: Must be done after pointerdef+pointerdef has been checked, else
  1458. pchar is converted to string }
  1459. else if (rd.typ=stringdef) or
  1460. (ld.typ=stringdef) or
  1461. { stringconstn's can be arraydefs }
  1462. (lt=stringconstn) or
  1463. (rt=stringconstn) or
  1464. ((is_pchar(rd) or is_chararray(rd) or is_char(rd) or is_open_chararray(rd) or
  1465. is_pwidechar(rd) or is_widechararray(rd) or is_widechar(rd) or is_open_widechararray(rd)) and
  1466. (is_pchar(ld) or is_chararray(ld) or is_char(ld) or is_open_chararray(ld) or
  1467. is_pwidechar(ld) or is_widechararray(ld) or is_widechar(ld) or is_open_widechararray(ld))) then
  1468. begin
  1469. if (nodetype in [addn,equaln,unequaln,lten,gten,ltn,gtn]) then
  1470. begin
  1471. { Is there a unicodestring? }
  1472. if is_unicodestring(rd) or is_unicodestring(ld) then
  1473. strtype:=st_unicodestring
  1474. else
  1475. { Is there a widestring? }
  1476. if is_widestring(rd) or is_widestring(ld) or
  1477. is_pwidechar(rd) or is_widechararray(rd) or is_widechar(rd) or is_open_widechararray(rd) or
  1478. is_pwidechar(ld) or is_widechararray(ld) or is_widechar(ld) or is_open_widechararray(ld) then
  1479. strtype:=st_widestring
  1480. else
  1481. if is_ansistring(rd) or is_ansistring(ld) or
  1482. ((cs_ansistrings in current_settings.localswitches) and
  1483. //todo: Move some of this to longstring's then they are implemented?
  1484. (
  1485. is_pchar(rd) or (is_chararray(rd) and (rd.size > 255)) or is_open_chararray(rd) or (lt = stringconstn) or
  1486. is_pchar(ld) or (is_chararray(ld) and (ld.size > 255)) or is_open_chararray(ld) or (rt = stringconstn)
  1487. )
  1488. ) then
  1489. strtype:=st_ansistring
  1490. else
  1491. if is_longstring(rd) or is_longstring(ld) then
  1492. strtype:=st_longstring
  1493. else
  1494. begin
  1495. { TODO: todo: add a warning/hint here if one converting a too large array}
  1496. { nodes is PChar, array [with size > 255] or OpenArrayOfChar.
  1497. Note: Delphi halts with error if "array [0..xx] of char"
  1498. is assigned to ShortString and string length is less
  1499. then array size }
  1500. strtype:= st_shortstring;
  1501. end;
  1502. // Now convert nodes to common string type
  1503. case strtype of
  1504. st_widestring :
  1505. begin
  1506. if not(is_widestring(rd)) then
  1507. inserttypeconv(right,cwidestringtype);
  1508. if not(is_widestring(ld)) then
  1509. inserttypeconv(left,cwidestringtype);
  1510. end;
  1511. st_unicodestring :
  1512. begin
  1513. if not(is_unicodestring(rd)) then
  1514. inserttypeconv(right,cunicodestringtype);
  1515. if not(is_unicodestring(ld)) then
  1516. inserttypeconv(left,cunicodestringtype);
  1517. end;
  1518. st_ansistring :
  1519. begin
  1520. if not(is_ansistring(rd)) then
  1521. inserttypeconv(right,cansistringtype);
  1522. if not(is_ansistring(ld)) then
  1523. inserttypeconv(left,cansistringtype);
  1524. end;
  1525. st_longstring :
  1526. begin
  1527. if not(is_longstring(rd)) then
  1528. inserttypeconv(right,clongstringtype);
  1529. if not(is_longstring(ld)) then
  1530. inserttypeconv(left,clongstringtype);
  1531. end;
  1532. st_shortstring :
  1533. begin
  1534. if not(is_shortstring(ld)) then
  1535. inserttypeconv(left,cshortstringtype);
  1536. { don't convert char, that can be handled by the optimized node }
  1537. if not(is_shortstring(rd) or is_char(rd)) then
  1538. inserttypeconv(right,cshortstringtype);
  1539. end;
  1540. else
  1541. internalerror(2005101);
  1542. end;
  1543. end
  1544. else
  1545. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1546. end
  1547. { implicit pointer object type comparison }
  1548. else if is_implicit_pointer_object_type(rd) or is_implicit_pointer_object_type(ld) then
  1549. begin
  1550. if (nodetype in [equaln,unequaln]) then
  1551. begin
  1552. if is_implicit_pointer_object_type(rd) and is_implicit_pointer_object_type(ld) then
  1553. begin
  1554. if tobjectdef(rd).is_related(tobjectdef(ld)) then
  1555. inserttypeconv(right,left.resultdef)
  1556. else
  1557. inserttypeconv(left,right.resultdef);
  1558. end
  1559. else if is_implicit_pointer_object_type(rd) then
  1560. inserttypeconv(left,right.resultdef)
  1561. else
  1562. inserttypeconv(right,left.resultdef);
  1563. end
  1564. else
  1565. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1566. end
  1567. else if (rd.typ=classrefdef) and (ld.typ=classrefdef) then
  1568. begin
  1569. if (nodetype in [equaln,unequaln]) then
  1570. begin
  1571. if tobjectdef(tclassrefdef(rd).pointeddef).is_related(
  1572. tobjectdef(tclassrefdef(ld).pointeddef)) then
  1573. inserttypeconv(right,left.resultdef)
  1574. else
  1575. inserttypeconv(left,right.resultdef);
  1576. end
  1577. else
  1578. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1579. end
  1580. { allow comparison with nil pointer }
  1581. else if is_implicit_pointer_object_type(rd) or (rd.typ=classrefdef) then
  1582. begin
  1583. if (nodetype in [equaln,unequaln]) then
  1584. inserttypeconv(left,right.resultdef)
  1585. else
  1586. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1587. end
  1588. else if is_implicit_pointer_object_type(ld) or (ld.typ=classrefdef) then
  1589. begin
  1590. if (nodetype in [equaln,unequaln]) then
  1591. inserttypeconv(right,left.resultdef)
  1592. else
  1593. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1594. end
  1595. { support procvar=nil,procvar<>nil }
  1596. else if ((ld.typ=procvardef) and (rt=niln)) or
  1597. ((rd.typ=procvardef) and (lt=niln)) then
  1598. begin
  1599. if not(nodetype in [equaln,unequaln]) then
  1600. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1601. { find proc field in methodpointer record }
  1602. hsym:=tfieldvarsym(trecorddef(methodpointertype).symtable.Find('proc'));
  1603. if not assigned(hsym) then
  1604. internalerror(200412043);
  1605. { For methodpointers compare only tmethodpointer.proc }
  1606. if (rd.typ=procvardef) and
  1607. (not tprocvardef(rd).is_addressonly) then
  1608. begin
  1609. right:=csubscriptnode.create(
  1610. hsym,
  1611. ctypeconvnode.create_internal(right,methodpointertype));
  1612. typecheckpass(right);
  1613. end;
  1614. if (ld.typ=procvardef) and
  1615. (not tprocvardef(ld).is_addressonly) then
  1616. begin
  1617. left:=csubscriptnode.create(
  1618. hsym,
  1619. ctypeconvnode.create_internal(left,methodpointertype));
  1620. typecheckpass(left);
  1621. end;
  1622. end
  1623. { support dynamicarray=nil,dynamicarray<>nil }
  1624. else if (is_dynamic_array(ld) and (rt=niln)) or
  1625. (is_dynamic_array(rd) and (lt=niln)) or
  1626. (is_dynamic_array(ld) and is_dynamic_array(rd)) then
  1627. begin
  1628. if not(nodetype in [equaln,unequaln]) then
  1629. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1630. end
  1631. {$ifdef SUPPORT_MMX}
  1632. { mmx support, this must be before the zero based array
  1633. check }
  1634. else if (cs_mmx in current_settings.localswitches) and
  1635. is_mmx_able_array(ld) and
  1636. is_mmx_able_array(rd) and
  1637. equal_defs(ld,rd) then
  1638. begin
  1639. case nodetype of
  1640. addn,subn,xorn,orn,andn:
  1641. ;
  1642. { mul is a little bit restricted }
  1643. muln:
  1644. if not(mmx_type(ld) in [mmxu16bit,mmxs16bit,mmxfixed16]) then
  1645. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1646. else
  1647. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1648. end;
  1649. end
  1650. {$endif SUPPORT_MMX}
  1651. { vector support, this must be before the zero based array
  1652. check }
  1653. else if (cs_support_vectors in current_settings.globalswitches) and
  1654. is_vector(ld) and
  1655. is_vector(rd) and
  1656. equal_defs(ld,rd) then
  1657. begin
  1658. if not(nodetype in [addn,subn,xorn,orn,andn,muln,slashn]) then
  1659. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1660. { both defs must be equal, so taking left or right as resultdef doesn't matter }
  1661. resultdef:=left.resultdef;
  1662. end
  1663. { this is a little bit dangerous, also the left type }
  1664. { pointer to should be checked! This broke the mmx support }
  1665. else if (rd.typ=pointerdef) or
  1666. (is_zero_based_array(rd) and (rt<>stringconstn)) then
  1667. begin
  1668. if is_zero_based_array(rd) then
  1669. begin
  1670. resultdef:=tpointerdef.create(tarraydef(rd).elementdef);
  1671. inserttypeconv(right,resultdef);
  1672. end
  1673. else
  1674. resultdef:=right.resultdef;
  1675. inserttypeconv(left,sinttype);
  1676. if nodetype=addn then
  1677. begin
  1678. if not(cs_extsyntax in current_settings.moduleswitches) or
  1679. (not (is_pchar(ld) or is_chararray(ld) or is_open_chararray(ld) or is_widechar(ld) or is_widechararray(ld) or is_open_widechararray(ld)) and
  1680. not(cs_pointermath in current_settings.localswitches) and
  1681. not((ld.typ=pointerdef) and tpointerdef(ld).has_pointer_math)) then
  1682. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1683. if (rd.typ=pointerdef) and
  1684. (tpointerdef(rd).pointeddef.size>1) then
  1685. begin
  1686. left:=caddnode.create(muln,left,
  1687. cordconstnode.create(tpointerdef(rd).pointeddef.size,sinttype,true));
  1688. typecheckpass(left);
  1689. end;
  1690. end
  1691. else
  1692. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1693. end
  1694. else if (ld.typ=pointerdef) or
  1695. (is_zero_based_array(ld) and (lt<>stringconstn)) then
  1696. begin
  1697. if is_zero_based_array(ld) then
  1698. begin
  1699. resultdef:=tpointerdef.create(tarraydef(ld).elementdef);
  1700. inserttypeconv(left,resultdef);
  1701. end
  1702. else
  1703. resultdef:=left.resultdef;
  1704. inserttypeconv(right,sinttype);
  1705. if nodetype in [addn,subn] then
  1706. begin
  1707. if (lt=niln) then
  1708. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),'NIL',rd.typename);
  1709. if not(cs_extsyntax in current_settings.moduleswitches) or
  1710. (not (is_pchar(ld) or is_chararray(ld) or is_open_chararray(ld) or is_widechar(ld) or is_widechararray(ld) or is_open_widechararray(ld)) and
  1711. not(cs_pointermath in current_settings.localswitches) and
  1712. not((ld.typ=pointerdef) and tpointerdef(ld).has_pointer_math)) then
  1713. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1714. if (ld.typ=pointerdef) then
  1715. begin
  1716. if is_big_untyped_addrnode(left) then
  1717. CGMessage1(type_w_untyped_arithmetic_unportable,node2opstr(nodetype));
  1718. if (tpointerdef(ld).pointeddef.size>1) then
  1719. begin
  1720. right:=caddnode.create(muln,right,
  1721. cordconstnode.create(tpointerdef(ld).pointeddef.size,sinttype,true));
  1722. typecheckpass(right);
  1723. end
  1724. end else
  1725. if is_zero_based_array(ld) and
  1726. (tarraydef(ld).elementdef.size>1) then
  1727. begin
  1728. right:=caddnode.create(muln,right,
  1729. cordconstnode.create(tarraydef(ld).elementdef.size,sinttype,true));
  1730. typecheckpass(right);
  1731. end;
  1732. end
  1733. else
  1734. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1735. end
  1736. else if (rd.typ=procvardef) and
  1737. (ld.typ=procvardef) and
  1738. equal_defs(rd,ld) then
  1739. begin
  1740. if (nodetype in [equaln,unequaln]) then
  1741. begin
  1742. if tprocvardef(rd).is_addressonly then
  1743. begin
  1744. inserttypeconv_internal(right,voidpointertype);
  1745. inserttypeconv_internal(left,voidpointertype);
  1746. end
  1747. else
  1748. begin
  1749. { find proc field in methodpointer record }
  1750. hsym:=tfieldvarsym(trecorddef(methodpointertype).symtable.Find('proc'));
  1751. if not assigned(hsym) then
  1752. internalerror(200412043);
  1753. { Compare tmehodpointer(left).proc }
  1754. right:=csubscriptnode.create(
  1755. hsym,
  1756. ctypeconvnode.create_internal(right,methodpointertype));
  1757. typecheckpass(right);
  1758. left:=csubscriptnode.create(
  1759. hsym,
  1760. ctypeconvnode.create_internal(left,methodpointertype));
  1761. typecheckpass(left);
  1762. end;
  1763. end
  1764. else
  1765. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1766. end
  1767. { enums }
  1768. else if (ld.typ=enumdef) and (rd.typ=enumdef) then
  1769. begin
  1770. if allowenumop(nodetype) then
  1771. inserttypeconv(right,left.resultdef)
  1772. else
  1773. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1774. end
  1775. { generic conversion, this is for error recovery }
  1776. else
  1777. begin
  1778. inserttypeconv(left,sinttype);
  1779. inserttypeconv(right,sinttype);
  1780. end;
  1781. { set resultdef if not already done }
  1782. if not assigned(resultdef) then
  1783. begin
  1784. case nodetype of
  1785. ltn,lten,gtn,gten,equaln,unequaln :
  1786. resultdef:=pasbool8type;
  1787. slashn :
  1788. resultdef:=resultrealdef;
  1789. addn:
  1790. begin
  1791. { for strings, return is always a 255 char string }
  1792. if is_shortstring(left.resultdef) then
  1793. resultdef:=cshortstringtype
  1794. else
  1795. resultdef:=left.resultdef;
  1796. end;
  1797. else
  1798. resultdef:=left.resultdef;
  1799. end;
  1800. end;
  1801. { when the result is currency we need some extra code for
  1802. multiplication and division. this should not be done when
  1803. the muln or slashn node is created internally }
  1804. if not(nf_is_currency in flags) and
  1805. is_currency(resultdef) then
  1806. begin
  1807. case nodetype of
  1808. slashn :
  1809. begin
  1810. { slashn will only work with floats }
  1811. hp:=caddnode.create(muln,getcopy,crealconstnode.create(10000.0,s64currencytype));
  1812. include(hp.flags,nf_is_currency);
  1813. result:=hp;
  1814. end;
  1815. muln :
  1816. begin
  1817. if s64currencytype.typ=floatdef then
  1818. hp:=caddnode.create(slashn,getcopy,crealconstnode.create(10000.0,s64currencytype))
  1819. else
  1820. hp:=cmoddivnode.create(divn,getcopy,cordconstnode.create(10000,s64currencytype,false));
  1821. include(hp.flags,nf_is_currency);
  1822. result:=hp
  1823. end;
  1824. end;
  1825. end;
  1826. if not codegenerror and
  1827. not assigned(result) then
  1828. result:=simplify(false);
  1829. end;
  1830. function taddnode.first_addstring: tnode;
  1831. const
  1832. swap_relation: array [ltn..unequaln] of Tnodetype=(gtn, gten, ltn, lten, equaln, unequaln);
  1833. var
  1834. p: tnode;
  1835. newstatement : tstatementnode;
  1836. tempnode (*,tempnode2*) : ttempcreatenode;
  1837. cmpfuncname: string;
  1838. begin
  1839. { when we get here, we are sure that both the left and the right }
  1840. { node are both strings of the same stringtype (JM) }
  1841. case nodetype of
  1842. addn:
  1843. begin
  1844. if (left.nodetype=stringconstn) and (tstringconstnode(left).len=0) then
  1845. begin
  1846. result:=right;
  1847. left.free;
  1848. left:=nil;
  1849. right:=nil;
  1850. exit;
  1851. end;
  1852. if (right.nodetype=stringconstn) and (tstringconstnode(right).len=0) then
  1853. begin
  1854. result:=left;
  1855. left:=nil;
  1856. right.free;
  1857. right:=nil;
  1858. exit;
  1859. end;
  1860. { create the call to the concat routine both strings as arguments }
  1861. if assigned(aktassignmentnode) and
  1862. (aktassignmentnode.right=self) and
  1863. (aktassignmentnode.left.resultdef=resultdef) and
  1864. valid_for_var(aktassignmentnode.left,false) then
  1865. begin
  1866. result:=ccallnode.createintern('fpc_'+
  1867. tstringdef(resultdef).stringtypname+'_concat',
  1868. ccallparanode.create(right,
  1869. ccallparanode.create(left,
  1870. ccallparanode.create(aktassignmentnode.left.getcopy,nil))));
  1871. include(aktassignmentnode.flags,nf_assign_done_in_right);
  1872. firstpass(result);
  1873. end
  1874. else
  1875. begin
  1876. result:=internalstatements(newstatement);
  1877. tempnode:=ctempcreatenode.create(resultdef,resultdef.size,tt_persistent,true);
  1878. addstatement(newstatement,tempnode);
  1879. addstatement(newstatement,ccallnode.createintern('fpc_'+
  1880. tstringdef(resultdef).stringtypname+'_concat',
  1881. ccallparanode.create(right,
  1882. ccallparanode.create(left,
  1883. ccallparanode.create(ctemprefnode.create(tempnode),nil)))));
  1884. addstatement(newstatement,ctempdeletenode.create_normal_temp(tempnode));
  1885. addstatement(newstatement,ctemprefnode.create(tempnode));
  1886. end;
  1887. { we reused the arguments }
  1888. left := nil;
  1889. right := nil;
  1890. end;
  1891. ltn,lten,gtn,gten,equaln,unequaln :
  1892. begin
  1893. { generate better code for comparison with empty string, we
  1894. only need to compare the length with 0 }
  1895. if (nodetype in [equaln,unequaln,gtn,gten,ltn,lten]) and
  1896. { windows widestrings are too complicated to be handled optimized }
  1897. not(is_widestring(left.resultdef) and (target_info.system in systems_windows)) and
  1898. (((left.nodetype=stringconstn) and (tstringconstnode(left).len=0)) or
  1899. ((right.nodetype=stringconstn) and (tstringconstnode(right).len=0))) then
  1900. begin
  1901. { switch so that the constant is always on the right }
  1902. if left.nodetype = stringconstn then
  1903. begin
  1904. p := left;
  1905. left := right;
  1906. right := p;
  1907. nodetype:=swap_relation[nodetype];
  1908. end;
  1909. if is_shortstring(left.resultdef) or
  1910. (nodetype in [gtn,gten,ltn,lten]) then
  1911. { compare the length with 0 }
  1912. result := caddnode.create(nodetype,
  1913. cinlinenode.create(in_length_x,false,left),
  1914. cordconstnode.create(0,s32inttype,false))
  1915. else
  1916. begin
  1917. (*
  1918. if is_widestring(left.resultdef) and
  1919. (target_info.system in system_windows) then
  1920. begin
  1921. { windows like widestrings requires that we also check the length }
  1922. result:=internalstatements(newstatement);
  1923. tempnode:=ctempcreatenode.create(voidpointertype,voidpointertype.size,tt_persistent,true);
  1924. tempnode2:=ctempcreatenode.create(resultdef,resultdef.size,tt_persistent,true);
  1925. addstatement(newstatement,tempnode);
  1926. addstatement(newstatement,tempnode2);
  1927. { poor man's cse }
  1928. addstatement(newstatement,cassignmentnode.create(ctemprefnode.create(tempnode),
  1929. ctypeconvnode.create_internal(left,voidpointertype))
  1930. );
  1931. addstatement(newstatement,cassignmentnode.create(ctemprefnode.create(tempnode2),
  1932. caddnode.create(orn,
  1933. caddnode.create(nodetype,
  1934. ctemprefnode.create(tempnode),
  1935. cpointerconstnode.create(0,voidpointertype)
  1936. ),
  1937. caddnode.create(nodetype,
  1938. ctypeconvnode.create_internal(cderefnode.create(ctemprefnode.create(tempnode)),s32inttype),
  1939. cordconstnode.create(0,s32inttype,false)
  1940. )
  1941. )
  1942. ));
  1943. addstatement(newstatement,ctempdeletenode.create_normal_temp(tempnode));
  1944. addstatement(newstatement,ctempdeletenode.create_normal_temp(tempnode2));
  1945. addstatement(newstatement,ctemprefnode.create(tempnode2));
  1946. end
  1947. else
  1948. *)
  1949. begin
  1950. { compare the pointer with nil (for ansistrings etc), }
  1951. { faster than getting the length (JM) }
  1952. result:= caddnode.create(nodetype,
  1953. ctypeconvnode.create_internal(left,voidpointertype),
  1954. cpointerconstnode.create(0,voidpointertype));
  1955. end;
  1956. end;
  1957. { left is reused }
  1958. left := nil;
  1959. { right isn't }
  1960. right.free;
  1961. right := nil;
  1962. exit;
  1963. end;
  1964. { no string constant -> call compare routine }
  1965. cmpfuncname := 'fpc_'+tstringdef(left.resultdef).stringtypname+'_compare';
  1966. { for equality checks use optimized version }
  1967. if nodetype in [equaln,unequaln] then
  1968. cmpfuncname := cmpfuncname + '_equal';
  1969. result := ccallnode.createintern(cmpfuncname,
  1970. ccallparanode.create(right,ccallparanode.create(left,nil)));
  1971. { and compare its result with 0 according to the original operator }
  1972. result := caddnode.create(nodetype,result,
  1973. cordconstnode.create(0,s32inttype,false));
  1974. left := nil;
  1975. right := nil;
  1976. end;
  1977. end;
  1978. end;
  1979. function taddnode.first_addset : tnode;
  1980. procedure call_varset_helper(const n : string);
  1981. var
  1982. newstatement : tstatementnode;
  1983. temp : ttempcreatenode;
  1984. begin
  1985. { add two var sets }
  1986. result:=internalstatements(newstatement);
  1987. { create temp for result }
  1988. temp:=ctempcreatenode.create(resultdef,resultdef.size,tt_persistent,true);
  1989. addstatement(newstatement,temp);
  1990. addstatement(newstatement,ccallnode.createintern(n,
  1991. ccallparanode.create(cordconstnode.create(resultdef.size,sinttype,false),
  1992. ccallparanode.create(ctemprefnode.create(temp),
  1993. ccallparanode.create(right,
  1994. ccallparanode.create(left,nil)))))
  1995. );
  1996. { remove reused parts from original node }
  1997. left:=nil;
  1998. right:=nil;
  1999. { the last statement should return the value as
  2000. location and type, this is done be referencing the
  2001. temp and converting it first from a persistent temp to
  2002. normal temp }
  2003. addstatement(newstatement,ctempdeletenode.create_normal_temp(temp));
  2004. addstatement(newstatement,ctemprefnode.create(temp));
  2005. end;
  2006. var
  2007. procname: string[31];
  2008. tempn: tnode;
  2009. newstatement : tstatementnode;
  2010. temp : ttempcreatenode;
  2011. begin
  2012. result:=nil;
  2013. case nodetype of
  2014. equaln,unequaln,lten,gten:
  2015. begin
  2016. case nodetype of
  2017. equaln,unequaln:
  2018. procname := 'fpc_varset_comp_sets';
  2019. lten,gten:
  2020. begin
  2021. procname := 'fpc_varset_contains_sets';
  2022. { (left >= right) = (right <= left) }
  2023. if nodetype = gten then
  2024. begin
  2025. tempn := left;
  2026. left := right;
  2027. right := tempn;
  2028. end;
  2029. end;
  2030. end;
  2031. result := ccallnode.createinternres(procname,
  2032. ccallparanode.create(cordconstnode.create(left.resultdef.size,sinttype,false),
  2033. ccallparanode.create(right,
  2034. ccallparanode.create(left,nil))),resultdef);
  2035. { left and right are reused as parameters }
  2036. left := nil;
  2037. right := nil;
  2038. { for an unequaln, we have to negate the result of comp_sets }
  2039. if nodetype = unequaln then
  2040. result := cnotnode.create(result);
  2041. end;
  2042. addn:
  2043. begin
  2044. { optimize first loading of a set }
  2045. if (right.nodetype=setelementn) and
  2046. not(assigned(tsetelementnode(right).right)) and
  2047. is_emptyset(left) then
  2048. begin
  2049. result:=internalstatements(newstatement);
  2050. { create temp for result }
  2051. temp:=ctempcreatenode.create(resultdef,resultdef.size,tt_persistent,true);
  2052. addstatement(newstatement,temp);
  2053. { adjust for set base }
  2054. tsetelementnode(right).left:=caddnode.create(subn,
  2055. ctypeconvnode.create_internal(tsetelementnode(right).left,sinttype),
  2056. cordconstnode.create(tsetdef(resultdef).setbase,sinttype,false));
  2057. addstatement(newstatement,ccallnode.createintern('fpc_varset_create_element',
  2058. ccallparanode.create(ctemprefnode.create(temp),
  2059. ccallparanode.create(cordconstnode.create(resultdef.size,sinttype,false),
  2060. ccallparanode.create(tsetelementnode(right).left,nil))))
  2061. );
  2062. { the last statement should return the value as
  2063. location and type, this is done be referencing the
  2064. temp and converting it first from a persistent temp to
  2065. normal temp }
  2066. addstatement(newstatement,ctempdeletenode.create_normal_temp(temp));
  2067. addstatement(newstatement,ctemprefnode.create(temp));
  2068. tsetelementnode(right).left := nil;
  2069. end
  2070. else
  2071. begin
  2072. if right.nodetype=setelementn then
  2073. begin
  2074. result:=internalstatements(newstatement);
  2075. { create temp for result }
  2076. temp:=ctempcreatenode.create(resultdef,resultdef.size,tt_persistent,true);
  2077. addstatement(newstatement,temp);
  2078. { adjust for set base }
  2079. tsetelementnode(right).left:=caddnode.create(subn,
  2080. ctypeconvnode.create_internal(tsetelementnode(right).left,sinttype),
  2081. cordconstnode.create(tsetdef(resultdef).setbase,sinttype,false));
  2082. { add a range or a single element? }
  2083. if assigned(tsetelementnode(right).right) then
  2084. begin
  2085. { adjust for set base }
  2086. tsetelementnode(right).right:=caddnode.create(subn,
  2087. ctypeconvnode.create_internal(tsetelementnode(right).right,sinttype),
  2088. cordconstnode.create(tsetdef(resultdef).setbase,sinttype,false));
  2089. addstatement(newstatement,ccallnode.createintern('fpc_varset_set_range',
  2090. ccallparanode.create(cordconstnode.create(resultdef.size,sinttype,false),
  2091. ccallparanode.create(tsetelementnode(right).right,
  2092. ccallparanode.create(tsetelementnode(right).left,
  2093. ccallparanode.create(ctemprefnode.create(temp),
  2094. ccallparanode.create(left,nil))))))
  2095. );
  2096. end
  2097. else
  2098. addstatement(newstatement,ccallnode.createintern('fpc_varset_set',
  2099. ccallparanode.create(cordconstnode.create(resultdef.size,sinttype,false),
  2100. ccallparanode.create(ctypeconvnode.create_internal(tsetelementnode(right).left,sinttype),
  2101. ccallparanode.create(ctemprefnode.create(temp),
  2102. ccallparanode.create(left,nil)))))
  2103. );
  2104. { remove reused parts from original node }
  2105. tsetelementnode(right).right:=nil;
  2106. tsetelementnode(right).left:=nil;
  2107. left:=nil;
  2108. { the last statement should return the value as
  2109. location and type, this is done be referencing the
  2110. temp and converting it first from a persistent temp to
  2111. normal temp }
  2112. addstatement(newstatement,ctempdeletenode.create_normal_temp(temp));
  2113. addstatement(newstatement,ctemprefnode.create(temp));
  2114. end
  2115. else
  2116. call_varset_helper('fpc_varset_add_sets');
  2117. end
  2118. end;
  2119. subn:
  2120. call_varset_helper('fpc_varset_sub_sets');
  2121. symdifn:
  2122. call_varset_helper('fpc_varset_symdif_sets');
  2123. muln:
  2124. call_varset_helper('fpc_varset_mul_sets');
  2125. else
  2126. internalerror(200609241);
  2127. end;
  2128. end;
  2129. function taddnode.use_generic_mul32to64: boolean;
  2130. begin
  2131. result := true;
  2132. end;
  2133. function taddnode.try_make_mul32to64: boolean;
  2134. function canbe32bitint(v: tconstexprint): boolean;
  2135. begin
  2136. result := ((v >= int64(low(longint))) and (v <= int64(high(longint)))) or
  2137. ((v >= qword(low(cardinal))) and (v <= qword(high(cardinal))))
  2138. end;
  2139. var
  2140. temp: tnode;
  2141. begin
  2142. result := false;
  2143. if ((left.nodetype = typeconvn) and
  2144. is_integer(ttypeconvnode(left).left.resultdef) and
  2145. (not(torddef(ttypeconvnode(left).left.resultdef).ordtype in [u64bit,s64bit])) and
  2146. (((right.nodetype = ordconstn) and canbe32bitint(tordconstnode(right).value)) or
  2147. ((right.nodetype = typeconvn) and
  2148. is_integer(ttypeconvnode(right).left.resultdef) and
  2149. not(torddef(ttypeconvnode(right).left.resultdef).ordtype in [u64bit,s64bit])) and
  2150. ((is_signed(ttypeconvnode(left).left.resultdef) =
  2151. is_signed(ttypeconvnode(right).left.resultdef)) or
  2152. (is_signed(ttypeconvnode(left).left.resultdef) and
  2153. (torddef(ttypeconvnode(right).left.resultdef).ordtype in [u8bit,u16bit]))))) then
  2154. begin
  2155. temp := ttypeconvnode(left).left;
  2156. ttypeconvnode(left).left := nil;
  2157. left.free;
  2158. left := temp;
  2159. if (right.nodetype = typeconvn) then
  2160. begin
  2161. temp := ttypeconvnode(right).left;
  2162. ttypeconvnode(right).left := nil;
  2163. right.free;
  2164. right := temp;
  2165. end;
  2166. if (is_signed(left.resultdef)) then
  2167. begin
  2168. inserttypeconv(left,s32inttype);
  2169. inserttypeconv(right,s32inttype);
  2170. end
  2171. else
  2172. begin
  2173. inserttypeconv(left,u32inttype);
  2174. inserttypeconv(right,u32inttype);
  2175. end;
  2176. firstpass(left);
  2177. firstpass(right);
  2178. result := true;
  2179. end;
  2180. end;
  2181. function taddnode.first_add64bitint: tnode;
  2182. var
  2183. procname: string[31];
  2184. temp: tnode;
  2185. power: longint;
  2186. begin
  2187. result := nil;
  2188. { create helper calls mul }
  2189. if nodetype <> muln then
  2190. exit;
  2191. { make sure that if there is a constant, that it's on the right }
  2192. if left.nodetype = ordconstn then
  2193. begin
  2194. temp := right;
  2195. right := left;
  2196. left := temp;
  2197. end;
  2198. { can we use a shift instead of a mul? }
  2199. if not (cs_check_overflow in current_settings.localswitches) and
  2200. (right.nodetype = ordconstn) and
  2201. ispowerof2(tordconstnode(right).value,power) then
  2202. begin
  2203. tordconstnode(right).value := power;
  2204. result := cshlshrnode.create(shln,left,right);
  2205. { left and right are reused }
  2206. left := nil;
  2207. right := nil;
  2208. { return firstpassed new node }
  2209. exit;
  2210. end;
  2211. if not(use_generic_mul32to64) and
  2212. try_make_mul32to64 then
  2213. exit;
  2214. { when currency is used set the result of the
  2215. parameters to s64bit, so they are not converted }
  2216. if is_currency(resultdef) then
  2217. begin
  2218. left.resultdef:=s64inttype;
  2219. right.resultdef:=s64inttype;
  2220. end;
  2221. { otherwise, create the parameters for the helper }
  2222. right := ccallparanode.create(
  2223. cordconstnode.create(ord(cs_check_overflow in current_settings.localswitches),pasbool8type,true),
  2224. ccallparanode.create(right,ccallparanode.create(left,nil)));
  2225. left := nil;
  2226. { only qword needs the unsigned code, the
  2227. signed code is also used for currency }
  2228. if is_signed(resultdef) then
  2229. procname := 'fpc_mul_int64'
  2230. else
  2231. procname := 'fpc_mul_qword';
  2232. result := ccallnode.createintern(procname,right);
  2233. right := nil;
  2234. end;
  2235. function taddnode.first_addfloat : tnode;
  2236. var
  2237. procname: string[31];
  2238. { do we need to reverse the result ? }
  2239. notnode : boolean;
  2240. fdef : tdef;
  2241. begin
  2242. result := nil;
  2243. notnode := false;
  2244. { In non-emulation mode, real opcodes are
  2245. emitted for floating point values.
  2246. }
  2247. if not (cs_fp_emulation in current_settings.moduleswitches) then
  2248. exit;
  2249. if not(target_info.system in systems_wince) then
  2250. begin
  2251. case tfloatdef(left.resultdef).floattype of
  2252. s32real:
  2253. begin
  2254. fdef:=search_system_type('FLOAT32REC').typedef;
  2255. procname:='float32';
  2256. end;
  2257. s64real:
  2258. begin
  2259. fdef:=search_system_type('FLOAT64').typedef;
  2260. procname:='float64';
  2261. end;
  2262. {!!! not yet implemented
  2263. s128real:
  2264. }
  2265. else
  2266. internalerror(2005082601);
  2267. end;
  2268. case nodetype of
  2269. addn:
  2270. procname:=procname+'_add';
  2271. muln:
  2272. procname:=procname+'_mul';
  2273. subn:
  2274. procname:=procname+'_sub';
  2275. slashn:
  2276. procname:=procname+'_div';
  2277. ltn:
  2278. procname:=procname+'_lt';
  2279. lten:
  2280. procname:=procname+'_le';
  2281. gtn:
  2282. begin
  2283. procname:=procname+'_le';
  2284. notnode:=true;
  2285. end;
  2286. gten:
  2287. begin
  2288. procname:=procname+'_lt';
  2289. notnode:=true;
  2290. end;
  2291. equaln:
  2292. procname:=procname+'_eq';
  2293. unequaln:
  2294. begin
  2295. procname:=procname+'_eq';
  2296. notnode:=true;
  2297. end;
  2298. else
  2299. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),left.resultdef.typename,right.resultdef.typename);
  2300. end;
  2301. end
  2302. else
  2303. begin
  2304. case nodetype of
  2305. addn:
  2306. procname:='ADD';
  2307. muln:
  2308. procname:='MUL';
  2309. subn:
  2310. procname:='SUB';
  2311. slashn:
  2312. procname:='DIV';
  2313. ltn:
  2314. procname:='LT';
  2315. lten:
  2316. procname:='LE';
  2317. gtn:
  2318. procname:='GT';
  2319. gten:
  2320. procname:='GE';
  2321. equaln:
  2322. procname:='EQ';
  2323. unequaln:
  2324. procname:='NE';
  2325. else
  2326. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),left.resultdef.typename,right.resultdef.typename);
  2327. end;
  2328. case tfloatdef(left.resultdef).floattype of
  2329. s32real:
  2330. begin
  2331. procname:=procname+'S';
  2332. if nodetype in [addn,muln,subn,slashn] then
  2333. procname:=lower(procname);
  2334. end;
  2335. s64real:
  2336. procname:=procname+'D';
  2337. {!!! not yet implemented
  2338. s128real:
  2339. }
  2340. else
  2341. internalerror(2005082602);
  2342. end;
  2343. end;
  2344. { cast softfpu result? }
  2345. if not(target_info.system in systems_wince) then
  2346. begin
  2347. if nodetype in [ltn,lten,gtn,gten,equaln,unequaln] then
  2348. resultdef:=pasbool8type;
  2349. result:=ctypeconvnode.create_internal(ccallnode.createintern(procname,ccallparanode.create(
  2350. ctypeconvnode.create_internal(right,fdef),
  2351. ccallparanode.create(
  2352. ctypeconvnode.create_internal(left,fdef),nil))),resultdef);
  2353. end
  2354. else
  2355. result:=ccallnode.createintern(procname,ccallparanode.create(right,
  2356. ccallparanode.create(left,nil)));
  2357. left:=nil;
  2358. right:=nil;
  2359. { do we need to reverse the result }
  2360. if notnode then
  2361. result:=cnotnode.create(result);
  2362. end;
  2363. function taddnode.pass_1 : tnode;
  2364. var
  2365. {$ifdef addstringopt}
  2366. hp : tnode;
  2367. {$endif addstringopt}
  2368. rd,ld : tdef;
  2369. i : longint;
  2370. lt,rt : tnodetype;
  2371. {$ifdef cpuneedsmulhelper}
  2372. procname : string[32];
  2373. {$endif cpuneedsmulhelper}
  2374. begin
  2375. result:=nil;
  2376. { Can we optimize multiple string additions into a single call?
  2377. This need to be done on a complete tree to detect the multiple
  2378. add nodes and is therefor done before the subtrees are processed }
  2379. if canbemultistringadd(self) then
  2380. begin
  2381. result := genmultistringadd(self);
  2382. exit;
  2383. end;
  2384. { first do the two subtrees }
  2385. firstpass(left);
  2386. firstpass(right);
  2387. if codegenerror then
  2388. exit;
  2389. { load easier access variables }
  2390. rd:=right.resultdef;
  2391. ld:=left.resultdef;
  2392. rt:=right.nodetype;
  2393. lt:=left.nodetype;
  2394. { int/int gives real/real! }
  2395. if nodetype=slashn then
  2396. begin
  2397. {$ifdef cpufpemu}
  2398. if (current_settings.fputype=fpu_soft) or (cs_fp_emulation in current_settings.moduleswitches) then
  2399. begin
  2400. result:=first_addfloat;
  2401. if assigned(result) then
  2402. exit;
  2403. end;
  2404. {$endif cpufpemu}
  2405. expectloc:=LOC_FPUREGISTER;
  2406. end
  2407. { if both are orddefs then check sub types }
  2408. else if (ld.typ=orddef) and (rd.typ=orddef) then
  2409. begin
  2410. { optimize multiplacation by a power of 2 }
  2411. if not(cs_check_overflow in current_settings.localswitches) and
  2412. (nodetype = muln) and
  2413. (((left.nodetype = ordconstn) and
  2414. ispowerof2(tordconstnode(left).value,i)) or
  2415. ((right.nodetype = ordconstn) and
  2416. ispowerof2(tordconstnode(right).value,i))) then
  2417. begin
  2418. if left.nodetype = ordconstn then
  2419. begin
  2420. tordconstnode(left).value := i;
  2421. result := cshlshrnode.create(shln,right,left);
  2422. end
  2423. else
  2424. begin
  2425. tordconstnode(right).value := i;
  2426. result := cshlshrnode.create(shln,left,right);
  2427. end;
  2428. left := nil;
  2429. right := nil;
  2430. exit;
  2431. end;
  2432. { 2 booleans ? }
  2433. if is_boolean(ld) and is_boolean(rd) then
  2434. begin
  2435. if (not(cs_full_boolean_eval in current_settings.localswitches) or
  2436. (nf_short_bool in flags)) and
  2437. (nodetype in [andn,orn]) then
  2438. expectloc:=LOC_JUMP
  2439. else
  2440. begin
  2441. if nodetype in [ltn,lten,gtn,gten,equaln,unequaln] then
  2442. expectloc:=LOC_FLAGS
  2443. else
  2444. expectloc:=LOC_REGISTER;
  2445. end;
  2446. end
  2447. else
  2448. { Both are chars? only convert to shortstrings for addn }
  2449. if is_char(ld) then
  2450. begin
  2451. if nodetype=addn then
  2452. internalerror(200103291);
  2453. expectloc:=LOC_FLAGS;
  2454. end
  2455. {$ifndef cpu64bitaddr}
  2456. { is there a 64 bit type ? }
  2457. else if (torddef(ld).ordtype in [s64bit,u64bit,scurrency]) then
  2458. begin
  2459. result := first_add64bitint;
  2460. if assigned(result) then
  2461. exit;
  2462. if nodetype in [addn,subn,muln,andn,orn,xorn] then
  2463. expectloc:=LOC_REGISTER
  2464. else
  2465. expectloc:=LOC_JUMP;
  2466. end
  2467. {$endif cpu64bitaddr}
  2468. {$ifndef cpuneedsmulhelper}
  2469. { is there a cardinal? }
  2470. else if (torddef(ld).ordtype=u32bit) then
  2471. begin
  2472. if nodetype in [addn,subn,muln,andn,orn,xorn] then
  2473. expectloc:=LOC_REGISTER
  2474. else
  2475. expectloc:=LOC_FLAGS;
  2476. end
  2477. {$endif cpuneedsmulhelper}
  2478. { generic s32bit conversion }
  2479. else
  2480. begin
  2481. {$ifdef cpuneedsmulhelper}
  2482. if (nodetype=muln) and not(torddef(resultdef).ordtype in [u8bit,s8bit]) then
  2483. begin
  2484. result := nil;
  2485. case torddef(resultdef).ordtype of
  2486. s16bit:
  2487. procname := 'fpc_mul_integer';
  2488. u16bit:
  2489. procname := 'fpc_mul_word';
  2490. s32bit:
  2491. procname := 'fpc_mul_longint';
  2492. u32bit:
  2493. procname := 'fpc_mul_dword';
  2494. else
  2495. internalerror(2011022301);
  2496. end;
  2497. result := ccallnode.createintern(procname,
  2498. ccallparanode.create(cordconstnode.create(0,pasbool8type,false),
  2499. ccallparanode.create(right,
  2500. ccallparanode.create(left,nil))));
  2501. left := nil;
  2502. right := nil;
  2503. firstpass(result);
  2504. exit;
  2505. end;
  2506. {$endif cpuneedsmulhelper}
  2507. if nodetype in [addn,subn,muln,andn,orn,xorn] then
  2508. expectloc:=LOC_REGISTER
  2509. else
  2510. expectloc:=LOC_FLAGS;
  2511. end;
  2512. end
  2513. { left side a setdef, must be before string processing,
  2514. else array constructor can be seen as array of char (PFV) }
  2515. else if (ld.typ=setdef) then
  2516. begin
  2517. { small sets are handled inline by the compiler.
  2518. small set doesn't have support for adding ranges }
  2519. if is_smallset(ld) and
  2520. not(
  2521. (right.nodetype=setelementn) and
  2522. assigned(tsetelementnode(right).right)
  2523. ) then
  2524. begin
  2525. if nodetype in [ltn,lten,gtn,gten,equaln,unequaln] then
  2526. expectloc:=LOC_FLAGS
  2527. else
  2528. expectloc:=LOC_REGISTER;
  2529. end
  2530. else
  2531. begin
  2532. result := first_addset;
  2533. if assigned(result) then
  2534. exit;
  2535. expectloc:=LOC_CREFERENCE;
  2536. end;
  2537. end
  2538. { compare pchar by addresses like BP/Delphi }
  2539. else if is_pchar(ld) then
  2540. begin
  2541. if nodetype in [addn,subn,muln,andn,orn,xorn] then
  2542. expectloc:=LOC_REGISTER
  2543. else
  2544. expectloc:=LOC_FLAGS;
  2545. end
  2546. { is one of the operands a string }
  2547. else if (ld.typ=stringdef) then
  2548. begin
  2549. if is_widestring(ld) then
  2550. begin
  2551. { this is only for add, the comparisaion is handled later }
  2552. expectloc:=LOC_REGISTER;
  2553. end
  2554. else if is_unicodestring(ld) then
  2555. begin
  2556. { this is only for add, the comparisaion is handled later }
  2557. expectloc:=LOC_REGISTER;
  2558. end
  2559. else if is_ansistring(ld) then
  2560. begin
  2561. { this is only for add, the comparisaion is handled later }
  2562. expectloc:=LOC_REGISTER;
  2563. end
  2564. else if is_longstring(ld) then
  2565. begin
  2566. { this is only for add, the comparisaion is handled later }
  2567. expectloc:=LOC_REFERENCE;
  2568. end
  2569. else
  2570. begin
  2571. {$ifdef addstringopt}
  2572. { can create a call which isn't handled by callparatemp }
  2573. if canbeaddsstringcharoptnode(self) then
  2574. begin
  2575. hp := genaddsstringcharoptnode(self);
  2576. pass_1 := hp;
  2577. exit;
  2578. end
  2579. else
  2580. {$endif addstringopt}
  2581. begin
  2582. { Fix right to be shortstring }
  2583. if is_char(right.resultdef) then
  2584. begin
  2585. inserttypeconv(right,cshortstringtype);
  2586. firstpass(right);
  2587. end;
  2588. end;
  2589. {$ifdef addstringopt}
  2590. { can create a call which isn't handled by callparatemp }
  2591. if canbeaddsstringcsstringoptnode(self) then
  2592. begin
  2593. hp := genaddsstringcsstringoptnode(self);
  2594. pass_1 := hp;
  2595. exit;
  2596. end;
  2597. {$endif addstringopt}
  2598. end;
  2599. { otherwise, let addstring convert everything }
  2600. result := first_addstring;
  2601. exit;
  2602. end
  2603. { is one a real float ? }
  2604. else if (rd.typ=floatdef) or (ld.typ=floatdef) then
  2605. begin
  2606. {$ifdef cpufpemu}
  2607. if (current_settings.fputype=fpu_soft) or (cs_fp_emulation in current_settings.moduleswitches) then
  2608. begin
  2609. result:=first_addfloat;
  2610. if assigned(result) then
  2611. exit;
  2612. end;
  2613. {$endif cpufpemu}
  2614. if nodetype in [addn,subn,muln,andn,orn,xorn] then
  2615. expectloc:=LOC_FPUREGISTER
  2616. else
  2617. expectloc:=LOC_FLAGS;
  2618. end
  2619. { pointer comperation and subtraction }
  2620. else if (ld.typ=pointerdef) then
  2621. begin
  2622. if nodetype in [addn,subn,muln,andn,orn,xorn] then
  2623. expectloc:=LOC_REGISTER
  2624. else
  2625. expectloc:=LOC_FLAGS;
  2626. end
  2627. else if is_implicit_pointer_object_type(ld) then
  2628. begin
  2629. expectloc:=LOC_FLAGS;
  2630. end
  2631. else if (ld.typ=classrefdef) then
  2632. begin
  2633. expectloc:=LOC_FLAGS;
  2634. end
  2635. { support procvar=nil,procvar<>nil }
  2636. else if ((ld.typ=procvardef) and (rt=niln)) or
  2637. ((rd.typ=procvardef) and (lt=niln)) then
  2638. begin
  2639. expectloc:=LOC_FLAGS;
  2640. end
  2641. {$ifdef SUPPORT_MMX}
  2642. { mmx support, this must be before the zero based array
  2643. check }
  2644. else if (cs_mmx in current_settings.localswitches) and is_mmx_able_array(ld) and
  2645. is_mmx_able_array(rd) then
  2646. begin
  2647. expectloc:=LOC_MMXREGISTER;
  2648. end
  2649. {$endif SUPPORT_MMX}
  2650. else if (rd.typ=pointerdef) or (ld.typ=pointerdef) then
  2651. begin
  2652. expectloc:=LOC_REGISTER;
  2653. end
  2654. else if (rd.typ=procvardef) and
  2655. (ld.typ=procvardef) and
  2656. equal_defs(rd,ld) then
  2657. begin
  2658. expectloc:=LOC_FLAGS;
  2659. end
  2660. else if (ld.typ=enumdef) then
  2661. begin
  2662. expectloc:=LOC_FLAGS;
  2663. end
  2664. {$ifdef SUPPORT_MMX}
  2665. else if (cs_mmx in current_settings.localswitches) and
  2666. is_mmx_able_array(ld) and
  2667. is_mmx_able_array(rd) then
  2668. begin
  2669. expectloc:=LOC_MMXREGISTER;
  2670. end
  2671. {$endif SUPPORT_MMX}
  2672. { the general solution is to convert to 32 bit int }
  2673. else
  2674. begin
  2675. expectloc:=LOC_REGISTER;
  2676. end;
  2677. end;
  2678. {$ifdef state_tracking}
  2679. function Taddnode.track_state_pass(exec_known:boolean):boolean;
  2680. var factval:Tnode;
  2681. begin
  2682. track_state_pass:=false;
  2683. if left.track_state_pass(exec_known) then
  2684. begin
  2685. track_state_pass:=true;
  2686. left.resultdef:=nil;
  2687. do_typecheckpass(left);
  2688. end;
  2689. factval:=aktstate.find_fact(left);
  2690. if factval<>nil then
  2691. begin
  2692. track_state_pass:=true;
  2693. left.destroy;
  2694. left:=factval.getcopy;
  2695. end;
  2696. if right.track_state_pass(exec_known) then
  2697. begin
  2698. track_state_pass:=true;
  2699. right.resultdef:=nil;
  2700. do_typecheckpass(right);
  2701. end;
  2702. factval:=aktstate.find_fact(right);
  2703. if factval<>nil then
  2704. begin
  2705. track_state_pass:=true;
  2706. right.destroy;
  2707. right:=factval.getcopy;
  2708. end;
  2709. end;
  2710. {$endif}
  2711. end.