nadd.pas 107 KB

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