nadd.pas 107 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667
  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 or the operation is subn then perform
  943. the operation in 64bit, can't use rd/ld here because there
  944. could be already typeconvs inserted.
  945. This is compatible with the code below for other unsigned types (PFV) }
  946. if is_signed(left.resultdef) or
  947. is_signed(right.resultdef) or
  948. (nodetype=subn) then
  949. begin
  950. if nodetype<>subn then
  951. CGMessage(type_w_mixed_signed_unsigned);
  952. inserttypeconv(left,s64inttype);
  953. inserttypeconv(right,s64inttype);
  954. end
  955. else
  956. begin
  957. if (torddef(left.resultdef).ordtype<>u32bit) then
  958. inserttypeconv(left,u32inttype);
  959. if (torddef(right.resultdef).ordtype<>u32bit) then
  960. inserttypeconv(right,u32inttype);
  961. end;
  962. end
  963. {$endif cpu64bit}
  964. { generic ord conversion is sinttype }
  965. else
  966. begin
  967. { if the left or right value is smaller than the normal
  968. type sinttype and is unsigned, and the other value
  969. is a constant < 0, the result will always be false/true
  970. for equal / unequal nodes.
  971. }
  972. if (
  973. { left : unsigned ordinal var, right : < 0 constant }
  974. (
  975. ((is_signed(ld)=false) and (is_constintnode(left) =false)) and
  976. ((is_constintnode(right)) and (tordconstnode(right).value < 0))
  977. ) or
  978. { right : unsigned ordinal var, left : < 0 constant }
  979. (
  980. ((is_signed(rd)=false) and (is_constintnode(right) =false)) and
  981. ((is_constintnode(left)) and (tordconstnode(left).value < 0))
  982. )
  983. ) then
  984. begin
  985. if nodetype = equaln then
  986. CGMessage(type_w_signed_unsigned_always_false)
  987. else
  988. if nodetype = unequaln then
  989. CGMessage(type_w_signed_unsigned_always_true)
  990. else
  991. if (is_constintnode(left) and (nodetype in [ltn,lten])) or
  992. (is_constintnode(right) and (nodetype in [gtn,gten])) then
  993. CGMessage(type_w_signed_unsigned_always_true)
  994. else
  995. if (is_constintnode(right) and (nodetype in [ltn,lten])) or
  996. (is_constintnode(left) and (nodetype in [gtn,gten])) then
  997. CGMessage(type_w_signed_unsigned_always_false);
  998. end;
  999. { When there is a signed type or there is a minus operation
  1000. we convert to signed int. Otherwise (both are unsigned) we keep
  1001. the result also unsigned. This is compatible with Delphi (PFV) }
  1002. if is_signed(ld) or
  1003. is_signed(rd) or
  1004. (nodetype=subn) then
  1005. begin
  1006. inserttypeconv(right,sinttype);
  1007. inserttypeconv(left,sinttype);
  1008. end
  1009. else
  1010. begin
  1011. inserttypeconv(right,uinttype);
  1012. inserttypeconv(left,uinttype);
  1013. end;
  1014. end;
  1015. end
  1016. { if both are floatdefs, conversion is already done before constant folding }
  1017. else if (ld.typ=floatdef) then
  1018. begin
  1019. if not(nodetype in [addn,subn,muln,slashn,equaln,unequaln,ltn,lten,gtn,gten]) then
  1020. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1021. end
  1022. { left side a setdef, must be before string processing,
  1023. else array constructor can be seen as array of char (PFV) }
  1024. else if (ld.typ=setdef) then
  1025. begin
  1026. { trying to add a set element? }
  1027. if (nodetype=addn) and (rd.typ<>setdef) then
  1028. begin
  1029. if (rt=setelementn) then
  1030. begin
  1031. if not(equal_defs(tsetdef(ld).elementdef,rd)) then
  1032. CGMessage(type_e_set_element_are_not_comp);
  1033. end
  1034. else
  1035. CGMessage(type_e_mismatch)
  1036. end
  1037. else
  1038. begin
  1039. if not(nodetype in [addn,subn,symdifn,muln,equaln,unequaln,lten,gten]) then
  1040. CGMessage(type_e_set_operation_unknown);
  1041. { right def must be a also be set }
  1042. if (rd.typ<>setdef) or not(equal_defs(rd,ld)) then
  1043. CGMessage(type_e_set_element_are_not_comp);
  1044. end;
  1045. { ranges require normsets }
  1046. if (tsetdef(ld).settype=smallset) and
  1047. (rt=setelementn) and
  1048. assigned(tsetelementnode(right).right) then
  1049. begin
  1050. { generate a temporary normset def, it'll be destroyed
  1051. when the symtable is unloaded }
  1052. inserttypeconv(left,tsetdef.create(tsetdef(ld).elementdef,255));
  1053. end;
  1054. { if the right side is also a setdef then the settype must
  1055. be the same as the left setdef }
  1056. if (rd.typ=setdef) and
  1057. (tsetdef(ld).settype<>tsetdef(rd).settype) then
  1058. begin
  1059. { when right is a normset we need to typecast both
  1060. to normsets }
  1061. if (tsetdef(rd).settype=normset) then
  1062. inserttypeconv(left,right.resultdef)
  1063. else
  1064. inserttypeconv(right,left.resultdef);
  1065. end;
  1066. end
  1067. { pointer comparision and subtraction }
  1068. else if (
  1069. (rd.typ=pointerdef) and (ld.typ=pointerdef)
  1070. ) or
  1071. { compare/add pchar to variable (not stringconst) char arrays
  1072. by addresses like BP/Delphi }
  1073. (
  1074. (nodetype in [equaln,unequaln,subn,addn]) and
  1075. (
  1076. ((is_pchar(ld) or (lt=niln)) and is_chararray(rd) and (rt<>stringconstn)) or
  1077. ((is_pchar(rd) or (rt=niln)) and is_chararray(ld) and (lt<>stringconstn))
  1078. )
  1079. ) then
  1080. begin
  1081. { convert char array to pointer }
  1082. if is_chararray(rd) then
  1083. begin
  1084. inserttypeconv(right,charpointertype);
  1085. rd:=right.resultdef;
  1086. end
  1087. else if is_chararray(ld) then
  1088. begin
  1089. inserttypeconv(left,charpointertype);
  1090. ld:=left.resultdef;
  1091. end;
  1092. case nodetype of
  1093. equaln,unequaln :
  1094. begin
  1095. if is_voidpointer(right.resultdef) then
  1096. inserttypeconv(right,left.resultdef)
  1097. else if is_voidpointer(left.resultdef) then
  1098. inserttypeconv(left,right.resultdef)
  1099. else if not(equal_defs(ld,rd)) then
  1100. IncompatibleTypes(ld,rd);
  1101. { now that the type checking is done, convert both to charpointer, }
  1102. { because methodpointers are 8 bytes even though only the first 4 }
  1103. { bytes must be compared. This can happen here if we are in }
  1104. { TP/Delphi mode, because there @methodpointer = voidpointer (but }
  1105. { a voidpointer of 8 bytes). A conversion to voidpointer would be }
  1106. { optimized away, since the result already was a voidpointer, so }
  1107. { use a charpointer instead (JM) }
  1108. inserttypeconv_internal(left,charpointertype);
  1109. inserttypeconv_internal(right,charpointertype);
  1110. end;
  1111. ltn,lten,gtn,gten:
  1112. begin
  1113. if (cs_extsyntax in current_settings.moduleswitches) then
  1114. begin
  1115. if is_voidpointer(right.resultdef) then
  1116. inserttypeconv(right,left.resultdef)
  1117. else if is_voidpointer(left.resultdef) then
  1118. inserttypeconv(left,right.resultdef)
  1119. else if not(equal_defs(ld,rd)) then
  1120. IncompatibleTypes(ld,rd);
  1121. end
  1122. else
  1123. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1124. end;
  1125. subn:
  1126. begin
  1127. if (cs_extsyntax in current_settings.moduleswitches) then
  1128. begin
  1129. if is_voidpointer(right.resultdef) then
  1130. begin
  1131. if is_big_untyped_addrnode(right) then
  1132. CGMessage1(type_w_untyped_arithmetic_unportable,node2opstr(nodetype));
  1133. inserttypeconv(right,left.resultdef)
  1134. end
  1135. else if is_voidpointer(left.resultdef) then
  1136. inserttypeconv(left,right.resultdef)
  1137. else if not(equal_defs(ld,rd)) then
  1138. IncompatibleTypes(ld,rd);
  1139. end
  1140. else
  1141. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1142. if not(nf_has_pointerdiv in flags) and
  1143. (tpointerdef(rd).pointeddef.size>1) then
  1144. begin
  1145. hp:=getcopy;
  1146. include(hp.flags,nf_has_pointerdiv);
  1147. result:=cmoddivnode.create(divn,hp,cordconstnode.create(tpointerdef(rd).pointeddef.size,sinttype,false));
  1148. end;
  1149. resultdef:=sinttype;
  1150. exit;
  1151. end;
  1152. else
  1153. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1154. end;
  1155. end
  1156. { is one of the operands a string?,
  1157. chararrays are also handled as strings (after conversion), also take
  1158. care of chararray+chararray and chararray+char.
  1159. Note: Must be done after pointerdef+pointerdef has been checked, else
  1160. pchar is converted to string }
  1161. else if (rd.typ=stringdef) or
  1162. (ld.typ=stringdef) or
  1163. ((is_pchar(rd) or is_chararray(rd) or is_char(rd) or is_open_chararray(rd) or
  1164. is_pwidechar(rd) or is_widechararray(rd) or is_widechar(rd) or is_open_widechararray(rd)) and
  1165. (is_pchar(ld) or is_chararray(ld) or is_char(ld) or is_open_chararray(ld) or
  1166. is_pwidechar(ld) or is_widechararray(ld) or is_widechar(ld) or is_open_widechararray(ld))) then
  1167. begin
  1168. if (nodetype in [addn,equaln,unequaln,lten,gten,ltn,gtn]) then
  1169. begin
  1170. { Is there a widestring? }
  1171. if is_widestring(rd) or is_widestring(ld) or
  1172. is_pwidechar(rd) or is_widechararray(rd) or is_widechar(rd) or is_open_widechararray(rd) or
  1173. is_pwidechar(ld) or is_widechararray(ld) or is_widechar(ld) or is_open_widechararray(ld) then
  1174. strtype:= st_widestring
  1175. else
  1176. if is_ansistring(rd) or is_ansistring(ld) or
  1177. ((cs_ansistrings in current_settings.localswitches) and
  1178. //todo: Move some of this to longstring's then they are implemented?
  1179. (
  1180. is_pchar(rd) or (is_chararray(rd) and (rd.size > 255)) or is_open_chararray(rd) or
  1181. is_pchar(ld) or (is_chararray(ld) and (ld.size > 255)) or is_open_chararray(ld)
  1182. )
  1183. ) then
  1184. strtype:= st_ansistring
  1185. else
  1186. if is_longstring(rd) or is_longstring(ld) then
  1187. strtype:= st_longstring
  1188. else
  1189. begin
  1190. {$warning todo: add a warning/hint here if one converting a too large array}
  1191. { nodes is PChar, array [with size > 255] or OpenArrayOfChar.
  1192. Note: Delphi halts with error if "array [0..xx] of char"
  1193. is assigned to ShortString and string length is less
  1194. then array size }
  1195. strtype:= st_shortstring;
  1196. end;
  1197. // Now convert nodes to common string type
  1198. case strtype of
  1199. st_widestring :
  1200. begin
  1201. if not(is_widestring(rd)) then
  1202. inserttypeconv(right,cwidestringtype);
  1203. if not(is_widestring(ld)) then
  1204. inserttypeconv(left,cwidestringtype);
  1205. end;
  1206. st_ansistring :
  1207. begin
  1208. if not(is_ansistring(rd)) then
  1209. inserttypeconv(right,cansistringtype);
  1210. if not(is_ansistring(ld)) then
  1211. inserttypeconv(left,cansistringtype);
  1212. end;
  1213. st_longstring :
  1214. begin
  1215. if not(is_longstring(rd)) then
  1216. inserttypeconv(right,clongstringtype);
  1217. if not(is_longstring(ld)) then
  1218. inserttypeconv(left,clongstringtype);
  1219. end;
  1220. st_shortstring :
  1221. begin
  1222. if not(is_shortstring(ld)) then
  1223. inserttypeconv(left,cshortstringtype);
  1224. { don't convert char, that can be handled by the optimized node }
  1225. if not(is_shortstring(rd) or is_char(rd)) then
  1226. inserttypeconv(right,cshortstringtype);
  1227. end;
  1228. else
  1229. internalerror(2005101);
  1230. end;
  1231. end
  1232. else
  1233. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1234. end
  1235. { class or interface equation }
  1236. else if is_class_or_interface(rd) or is_class_or_interface(ld) then
  1237. begin
  1238. if (nodetype in [equaln,unequaln]) then
  1239. begin
  1240. if is_class_or_interface(rd) and is_class_or_interface(ld) then
  1241. begin
  1242. if tobjectdef(rd).is_related(tobjectdef(ld)) then
  1243. inserttypeconv(right,left.resultdef)
  1244. else
  1245. inserttypeconv(left,right.resultdef);
  1246. end
  1247. else if is_class_or_interface(rd) then
  1248. inserttypeconv(left,right.resultdef)
  1249. else
  1250. inserttypeconv(right,left.resultdef);
  1251. end
  1252. else
  1253. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1254. end
  1255. else if (rd.typ=classrefdef) and (ld.typ=classrefdef) then
  1256. begin
  1257. if (nodetype in [equaln,unequaln]) then
  1258. begin
  1259. if tobjectdef(tclassrefdef(rd).pointeddef).is_related(
  1260. tobjectdef(tclassrefdef(ld).pointeddef)) then
  1261. inserttypeconv(right,left.resultdef)
  1262. else
  1263. inserttypeconv(left,right.resultdef);
  1264. end
  1265. else
  1266. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1267. end
  1268. { allows comperasion with nil pointer }
  1269. else if is_class_or_interface(rd) or (rd.typ=classrefdef) then
  1270. begin
  1271. if (nodetype in [equaln,unequaln]) then
  1272. inserttypeconv(left,right.resultdef)
  1273. else
  1274. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1275. end
  1276. else if is_class_or_interface(ld) or (ld.typ=classrefdef) then
  1277. begin
  1278. if (nodetype in [equaln,unequaln]) then
  1279. inserttypeconv(right,left.resultdef)
  1280. else
  1281. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1282. end
  1283. { support procvar=nil,procvar<>nil }
  1284. else if ((ld.typ=procvardef) and (rt=niln)) or
  1285. ((rd.typ=procvardef) and (lt=niln)) then
  1286. begin
  1287. if not(nodetype in [equaln,unequaln]) then
  1288. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1289. { find proc field in methodpointer record }
  1290. hsym:=tfieldvarsym(trecorddef(methodpointertype).symtable.Find('proc'));
  1291. if not assigned(hsym) then
  1292. internalerror(200412043);
  1293. { For methodpointers compare only tmethodpointer.proc }
  1294. if (rd.typ=procvardef) and
  1295. (not tprocvardef(rd).is_addressonly) then
  1296. begin
  1297. right:=csubscriptnode.create(
  1298. hsym,
  1299. ctypeconvnode.create_internal(right,methodpointertype));
  1300. typecheckpass(right);
  1301. end;
  1302. if (ld.typ=procvardef) and
  1303. (not tprocvardef(ld).is_addressonly) then
  1304. begin
  1305. left:=csubscriptnode.create(
  1306. hsym,
  1307. ctypeconvnode.create_internal(left,methodpointertype));
  1308. typecheckpass(left);
  1309. end;
  1310. end
  1311. { support dynamicarray=nil,dynamicarray<>nil }
  1312. else if (is_dynamic_array(ld) and (rt=niln)) or
  1313. (is_dynamic_array(rd) and (lt=niln)) or
  1314. (is_dynamic_array(ld) and is_dynamic_array(rd)) then
  1315. begin
  1316. if not(nodetype in [equaln,unequaln]) then
  1317. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1318. end
  1319. {$ifdef SUPPORT_MMX}
  1320. { mmx support, this must be before the zero based array
  1321. check }
  1322. else if (cs_mmx in current_settings.localswitches) and
  1323. is_mmx_able_array(ld) and
  1324. is_mmx_able_array(rd) and
  1325. equal_defs(ld,rd) then
  1326. begin
  1327. case nodetype of
  1328. addn,subn,xorn,orn,andn:
  1329. ;
  1330. { mul is a little bit restricted }
  1331. muln:
  1332. if not(mmx_type(ld) in [mmxu16bit,mmxs16bit,mmxfixed16]) then
  1333. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1334. else
  1335. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1336. end;
  1337. end
  1338. {$endif SUPPORT_MMX}
  1339. { vector support, this must be before the zero based array
  1340. check }
  1341. else if (cs_support_vectors in current_settings.globalswitches) and
  1342. is_vector(ld) and
  1343. is_vector(rd) and
  1344. equal_defs(ld,rd) then
  1345. begin
  1346. if not(nodetype in [addn,subn,xorn,orn,andn,muln,slashn]) then
  1347. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1348. { both defs must be equal, so taking left or right as resultdef doesn't matter }
  1349. resultdef:=left.resultdef;
  1350. end
  1351. { this is a little bit dangerous, also the left type }
  1352. { pointer to should be checked! This broke the mmx support }
  1353. else if (rd.typ=pointerdef) or
  1354. (is_zero_based_array(rd) and (rt<>stringconstn)) then
  1355. begin
  1356. if is_zero_based_array(rd) then
  1357. begin
  1358. resultdef:=tpointerdef.create(tarraydef(rd).elementdef);
  1359. inserttypeconv(right,resultdef);
  1360. end
  1361. else
  1362. resultdef:=right.resultdef;
  1363. inserttypeconv(left,sinttype);
  1364. if nodetype=addn then
  1365. begin
  1366. if not(cs_extsyntax in current_settings.moduleswitches) or
  1367. (not(is_pchar(ld)) and not(m_add_pointer in current_settings.modeswitches)) then
  1368. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1369. if (rd.typ=pointerdef) and
  1370. (tpointerdef(rd).pointeddef.size>1) then
  1371. begin
  1372. left:=caddnode.create(muln,left,
  1373. cordconstnode.create(tpointerdef(rd).pointeddef.size,sinttype,true));
  1374. typecheckpass(left);
  1375. end;
  1376. end
  1377. else
  1378. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1379. end
  1380. else if (ld.typ=pointerdef) or
  1381. (is_zero_based_array(ld) and (lt<>stringconstn)) then
  1382. begin
  1383. if is_zero_based_array(ld) then
  1384. begin
  1385. resultdef:=tpointerdef.create(tarraydef(ld).elementdef);
  1386. inserttypeconv(left,resultdef);
  1387. end
  1388. else
  1389. resultdef:=left.resultdef;
  1390. inserttypeconv(right,sinttype);
  1391. if nodetype in [addn,subn] then
  1392. begin
  1393. if not(cs_extsyntax in current_settings.moduleswitches) or
  1394. (not(is_pchar(ld)) and not(m_add_pointer in current_settings.modeswitches)) then
  1395. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1396. if (ld.typ=pointerdef) then
  1397. begin
  1398. if is_big_untyped_addrnode(left) then
  1399. CGMessage1(type_w_untyped_arithmetic_unportable,node2opstr(nodetype));
  1400. if (tpointerdef(ld).pointeddef.size>1) then
  1401. begin
  1402. right:=caddnode.create(muln,right,
  1403. cordconstnode.create(tpointerdef(ld).pointeddef.size,sinttype,true));
  1404. typecheckpass(right);
  1405. end
  1406. end else
  1407. if is_zero_based_array(ld) and
  1408. (tarraydef(ld).elementdef.size>1) then
  1409. begin
  1410. right:=caddnode.create(muln,right,
  1411. cordconstnode.create(tarraydef(ld).elementdef.size,sinttype,true));
  1412. typecheckpass(right);
  1413. end;
  1414. end
  1415. else
  1416. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1417. end
  1418. else if (rd.typ=procvardef) and
  1419. (ld.typ=procvardef) and
  1420. equal_defs(rd,ld) then
  1421. begin
  1422. if (nodetype in [equaln,unequaln]) then
  1423. begin
  1424. if tprocvardef(rd).is_addressonly then
  1425. begin
  1426. inserttypeconv_internal(right,voidpointertype);
  1427. inserttypeconv_internal(left,voidpointertype);
  1428. end
  1429. else
  1430. begin
  1431. { find proc field in methodpointer record }
  1432. hsym:=tfieldvarsym(trecorddef(methodpointertype).symtable.Find('proc'));
  1433. if not assigned(hsym) then
  1434. internalerror(200412043);
  1435. { Compare tmehodpointer(left).proc }
  1436. right:=csubscriptnode.create(
  1437. hsym,
  1438. ctypeconvnode.create_internal(right,methodpointertype));
  1439. typecheckpass(right);
  1440. left:=csubscriptnode.create(
  1441. hsym,
  1442. ctypeconvnode.create_internal(left,methodpointertype));
  1443. typecheckpass(left);
  1444. end;
  1445. end
  1446. else
  1447. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1448. end
  1449. { enums }
  1450. else if (ld.typ=enumdef) and (rd.typ=enumdef) then
  1451. begin
  1452. if allowenumop(nodetype) then
  1453. inserttypeconv(right,left.resultdef)
  1454. else
  1455. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  1456. end
  1457. { generic conversion, this is for error recovery }
  1458. else
  1459. begin
  1460. inserttypeconv(left,sinttype);
  1461. inserttypeconv(right,sinttype);
  1462. end;
  1463. { set resultdef if not already done }
  1464. if not assigned(resultdef) then
  1465. begin
  1466. case nodetype of
  1467. ltn,lten,gtn,gten,equaln,unequaln :
  1468. resultdef:=booltype;
  1469. slashn :
  1470. resultdef:=resultrealdef;
  1471. addn:
  1472. begin
  1473. { for strings, return is always a 255 char string }
  1474. if is_shortstring(left.resultdef) then
  1475. resultdef:=cshortstringtype
  1476. else
  1477. resultdef:=left.resultdef;
  1478. end;
  1479. else
  1480. resultdef:=left.resultdef;
  1481. end;
  1482. end;
  1483. { when the result is currency we need some extra code for
  1484. multiplication and division. this should not be done when
  1485. the muln or slashn node is created internally }
  1486. if not(nf_is_currency in flags) and
  1487. is_currency(resultdef) then
  1488. begin
  1489. case nodetype of
  1490. slashn :
  1491. begin
  1492. { slashn will only work with floats }
  1493. hp:=caddnode.create(muln,getcopy,crealconstnode.create(10000.0,s64currencytype));
  1494. include(hp.flags,nf_is_currency);
  1495. result:=hp;
  1496. end;
  1497. muln :
  1498. begin
  1499. if s64currencytype.typ=floatdef then
  1500. hp:=caddnode.create(slashn,getcopy,crealconstnode.create(10000.0,s64currencytype))
  1501. else
  1502. hp:=cmoddivnode.create(divn,getcopy,cordconstnode.create(10000,s64currencytype,false));
  1503. include(hp.flags,nf_is_currency);
  1504. result:=hp
  1505. end;
  1506. end;
  1507. end;
  1508. end;
  1509. function taddnode.first_addstring: tnode;
  1510. const
  1511. swap_relation: array [ltn..unequaln] of Tnodetype=(gtn, gten, ltn, lten, equaln, unequaln);
  1512. var
  1513. p: tnode;
  1514. newstatement : tstatementnode;
  1515. tempnode,tempnode2 : ttempcreatenode;
  1516. cmpfuncname: string;
  1517. begin
  1518. { when we get here, we are sure that both the left and the right }
  1519. { node are both strings of the same stringtype (JM) }
  1520. case nodetype of
  1521. addn:
  1522. begin
  1523. if (left.nodetype=stringconstn) and (tstringconstnode(left).len=0) then
  1524. begin
  1525. result:=right;
  1526. left.free;
  1527. left:=nil;
  1528. right:=nil;
  1529. exit;
  1530. end;
  1531. if (right.nodetype=stringconstn) and (tstringconstnode(right).len=0) then
  1532. begin
  1533. result:=left;
  1534. left:=nil;
  1535. right.free;
  1536. right:=nil;
  1537. exit;
  1538. end;
  1539. { create the call to the concat routine both strings as arguments }
  1540. if assigned(aktassignmentnode) and
  1541. (aktassignmentnode.right=self) and
  1542. (aktassignmentnode.left.resultdef=resultdef) and
  1543. valid_for_var(aktassignmentnode.left,false) then
  1544. begin
  1545. result:=ccallnode.createintern('fpc_'+
  1546. tstringdef(resultdef).stringtypname+'_concat',
  1547. ccallparanode.create(right,
  1548. ccallparanode.create(left,
  1549. ccallparanode.create(aktassignmentnode.left.getcopy,nil))));
  1550. include(aktassignmentnode.flags,nf_assign_done_in_right);
  1551. firstpass(result);
  1552. end
  1553. else
  1554. begin
  1555. result:=internalstatements(newstatement);
  1556. tempnode:=ctempcreatenode.create(resultdef,resultdef.size,tt_persistent,true);
  1557. addstatement(newstatement,tempnode);
  1558. addstatement(newstatement,ccallnode.createintern('fpc_'+
  1559. tstringdef(resultdef).stringtypname+'_concat',
  1560. ccallparanode.create(right,
  1561. ccallparanode.create(left,
  1562. ccallparanode.create(ctemprefnode.create(tempnode),nil)))));
  1563. addstatement(newstatement,ctempdeletenode.create_normal_temp(tempnode));
  1564. addstatement(newstatement,ctemprefnode.create(tempnode));
  1565. end;
  1566. { we reused the arguments }
  1567. left := nil;
  1568. right := nil;
  1569. end;
  1570. ltn,lten,gtn,gten,equaln,unequaln :
  1571. begin
  1572. { generate better code for comparison with empty string, we
  1573. only need to compare the length with 0 }
  1574. if (nodetype in [equaln,unequaln,gtn,gten,ltn,lten]) and
  1575. { windows widestrings are too complicated to be handled optimized }
  1576. not(is_widestring(left.resultdef) and (target_info.system in system_windows)) and
  1577. (((left.nodetype=stringconstn) and (tstringconstnode(left).len=0)) or
  1578. ((right.nodetype=stringconstn) and (tstringconstnode(right).len=0))) then
  1579. begin
  1580. { switch so that the constant is always on the right }
  1581. if left.nodetype = stringconstn then
  1582. begin
  1583. p := left;
  1584. left := right;
  1585. right := p;
  1586. nodetype:=swap_relation[nodetype];
  1587. end;
  1588. if is_shortstring(left.resultdef) or
  1589. (nodetype in [gtn,gten,ltn,lten]) then
  1590. { compare the length with 0 }
  1591. result := caddnode.create(nodetype,
  1592. cinlinenode.create(in_length_x,false,left),
  1593. cordconstnode.create(0,s32inttype,false))
  1594. else
  1595. begin
  1596. (*
  1597. if is_widestring(left.resultdef) and
  1598. (target_info.system in system_windows) then
  1599. begin
  1600. { windows like widestrings requires that we also check the length }
  1601. result:=internalstatements(newstatement);
  1602. tempnode:=ctempcreatenode.create(voidpointertype,voidpointertype.size,tt_persistent,true);
  1603. tempnode2:=ctempcreatenode.create(resultdef,resultdef.size,tt_persistent,true);
  1604. addstatement(newstatement,tempnode);
  1605. addstatement(newstatement,tempnode2);
  1606. { poor man's cse }
  1607. addstatement(newstatement,cassignmentnode.create(ctemprefnode.create(tempnode),
  1608. ctypeconvnode.create_internal(left,voidpointertype))
  1609. );
  1610. addstatement(newstatement,cassignmentnode.create(ctemprefnode.create(tempnode2),
  1611. caddnode.create(orn,
  1612. caddnode.create(nodetype,
  1613. ctemprefnode.create(tempnode),
  1614. cpointerconstnode.create(0,voidpointertype)
  1615. ),
  1616. caddnode.create(nodetype,
  1617. ctypeconvnode.create_internal(cderefnode.create(ctemprefnode.create(tempnode)),s32inttype),
  1618. cordconstnode.create(0,s32inttype,false)
  1619. )
  1620. )
  1621. ));
  1622. addstatement(newstatement,ctempdeletenode.create_normal_temp(tempnode));
  1623. addstatement(newstatement,ctempdeletenode.create_normal_temp(tempnode2));
  1624. addstatement(newstatement,ctemprefnode.create(tempnode2));
  1625. end
  1626. else
  1627. *)
  1628. begin
  1629. { compare the pointer with nil (for ansistrings etc), }
  1630. { faster than getting the length (JM) }
  1631. result:= caddnode.create(nodetype,
  1632. ctypeconvnode.create_internal(left,voidpointertype),
  1633. cpointerconstnode.create(0,voidpointertype));
  1634. end;
  1635. end;
  1636. { left is reused }
  1637. left := nil;
  1638. { right isn't }
  1639. right.free;
  1640. right := nil;
  1641. exit;
  1642. end;
  1643. { no string constant -> call compare routine }
  1644. cmpfuncname := 'fpc_'+tstringdef(left.resultdef).stringtypname+'_compare';
  1645. { for equality checks use optimized version }
  1646. if nodetype in [equaln,unequaln] then
  1647. cmpfuncname := cmpfuncname + '_equal';
  1648. result := ccallnode.createintern(cmpfuncname,
  1649. ccallparanode.create(right,ccallparanode.create(left,nil)));
  1650. { and compare its result with 0 according to the original operator }
  1651. result := caddnode.create(nodetype,result,
  1652. cordconstnode.create(0,s32inttype,false));
  1653. left := nil;
  1654. right := nil;
  1655. end;
  1656. end;
  1657. end;
  1658. function taddnode.first_addset : tnode;
  1659. procedure call_varset_helper(const n : string);
  1660. var
  1661. newstatement : tstatementnode;
  1662. temp : ttempcreatenode;
  1663. begin
  1664. { add two var sets }
  1665. result:=internalstatements(newstatement);
  1666. { create temp for result }
  1667. temp:=ctempcreatenode.create(resultdef,resultdef.size,tt_persistent,true);
  1668. addstatement(newstatement,temp);
  1669. addstatement(newstatement,ccallnode.createintern(n,
  1670. ccallparanode.create(cordconstnode.create(resultdef.size,sinttype,false),
  1671. ccallparanode.create(ctemprefnode.create(temp),
  1672. ccallparanode.create(right,
  1673. ccallparanode.create(left,nil)))))
  1674. );
  1675. { remove reused parts from original node }
  1676. left:=nil;
  1677. right:=nil;
  1678. { the last statement should return the value as
  1679. location and type, this is done be referencing the
  1680. temp and converting it first from a persistent temp to
  1681. normal temp }
  1682. addstatement(newstatement,ctempdeletenode.create_normal_temp(temp));
  1683. addstatement(newstatement,ctemprefnode.create(temp));
  1684. end;
  1685. var
  1686. procname: string[31];
  1687. tempn: tnode;
  1688. paras: tcallparanode;
  1689. srsym: ttypesym;
  1690. newstatement : tstatementnode;
  1691. temp : ttempcreatenode;
  1692. begin
  1693. if is_varset(left.resultdef) or is_varset(right.resultdef) then
  1694. begin
  1695. case nodetype of
  1696. equaln,unequaln,lten,gten:
  1697. begin
  1698. case nodetype of
  1699. equaln,unequaln:
  1700. procname := 'fpc_varset_comp_sets';
  1701. lten,gten:
  1702. begin
  1703. procname := 'fpc_varset_contains_sets';
  1704. { (left >= right) = (right <= left) }
  1705. if nodetype = gten then
  1706. begin
  1707. tempn := left;
  1708. left := right;
  1709. right := tempn;
  1710. end;
  1711. end;
  1712. end;
  1713. result := ccallnode.createinternres(procname,
  1714. ccallparanode.create(cordconstnode.create(left.resultdef.size,sinttype,false),
  1715. ccallparanode.create(right,
  1716. ccallparanode.create(left,nil))),resultdef);
  1717. { left and right are reused as parameters }
  1718. left := nil;
  1719. right := nil;
  1720. { for an unequaln, we have to negate the result of comp_sets }
  1721. if nodetype = unequaln then
  1722. result := cnotnode.create(result);
  1723. end;
  1724. addn:
  1725. begin
  1726. { optimize first loading of a set }
  1727. if (right.nodetype=setelementn) and
  1728. not(assigned(tsetelementnode(right).right)) and
  1729. is_emptyset(left) then
  1730. begin
  1731. result:=internalstatements(newstatement);
  1732. { create temp for result }
  1733. temp:=ctempcreatenode.create(resultdef,resultdef.size,tt_persistent,true);
  1734. addstatement(newstatement,temp);
  1735. addstatement(newstatement,ccallnode.createintern('fpc_varset_create_element',
  1736. ccallparanode.create(ctemprefnode.create(temp),
  1737. ccallparanode.create(cordconstnode.create(resultdef.size,sinttype,false),
  1738. ccallparanode.create(ctypeconvnode.create_internal(tsetelementnode(right).left,sinttype),nil))))
  1739. );
  1740. { the last statement should return the value as
  1741. location and type, this is done be referencing the
  1742. temp and converting it first from a persistent temp to
  1743. normal temp }
  1744. addstatement(newstatement,ctempdeletenode.create_normal_temp(temp));
  1745. addstatement(newstatement,ctemprefnode.create(temp));
  1746. tsetelementnode(right).left := nil;
  1747. end
  1748. else
  1749. begin
  1750. if right.nodetype=setelementn then
  1751. begin
  1752. result:=internalstatements(newstatement);
  1753. { create temp for result }
  1754. temp:=ctempcreatenode.create(resultdef,resultdef.size,tt_persistent,true);
  1755. addstatement(newstatement,temp);
  1756. { add a range or a single element? }
  1757. if assigned(tsetelementnode(right).right) then
  1758. addstatement(newstatement,ccallnode.createintern('fpc_varset_set_range',
  1759. ccallparanode.create(cordconstnode.create(resultdef.size,sinttype,false),
  1760. ccallparanode.create(ctypeconvnode.create_internal(tsetelementnode(right).right,sinttype),
  1761. ccallparanode.create(ctypeconvnode.create_internal(tsetelementnode(right).left,sinttype),
  1762. ccallparanode.create(ctemprefnode.create(temp),
  1763. ccallparanode.create(left,nil))))))
  1764. )
  1765. else
  1766. addstatement(newstatement,ccallnode.createintern('fpc_varset_set',
  1767. ccallparanode.create(cordconstnode.create(resultdef.size,sinttype,false),
  1768. ccallparanode.create(ctypeconvnode.create_internal(tsetelementnode(right).left,sinttype),
  1769. ccallparanode.create(ctemprefnode.create(temp),
  1770. ccallparanode.create(left,nil)))))
  1771. );
  1772. { remove reused parts from original node }
  1773. tsetelementnode(right).right:=nil;
  1774. tsetelementnode(right).left:=nil;
  1775. left:=nil;
  1776. { the last statement should return the value as
  1777. location and type, this is done be referencing the
  1778. temp and converting it first from a persistent temp to
  1779. normal temp }
  1780. addstatement(newstatement,ctempdeletenode.create_normal_temp(temp));
  1781. addstatement(newstatement,ctemprefnode.create(temp));
  1782. end
  1783. else
  1784. call_varset_helper('fpc_varset_add_sets');
  1785. end
  1786. end;
  1787. subn:
  1788. call_varset_helper('fpc_varset_sub_sets');
  1789. symdifn:
  1790. call_varset_helper('fpc_varset_symdif_sets');
  1791. muln:
  1792. call_varset_helper('fpc_varset_mul_sets');
  1793. else
  1794. internalerror(200609241);
  1795. end;
  1796. end
  1797. else
  1798. begin
  1799. { get the sym that represents the fpc_normal_set type }
  1800. srsym:=search_system_type('FPC_NORMAL_SET');
  1801. case nodetype of
  1802. equaln,unequaln,lten,gten:
  1803. begin
  1804. case nodetype of
  1805. equaln,unequaln:
  1806. procname := 'fpc_set_comp_sets';
  1807. lten,gten:
  1808. begin
  1809. procname := 'fpc_set_contains_sets';
  1810. { (left >= right) = (right <= left) }
  1811. if nodetype = gten then
  1812. begin
  1813. tempn := left;
  1814. left := right;
  1815. right := tempn;
  1816. end;
  1817. end;
  1818. end;
  1819. { convert the arguments (explicitely) to fpc_normal_set's }
  1820. left := ctypeconvnode.create_internal(left,srsym.typedef);
  1821. right := ctypeconvnode.create_internal(right,srsym.typedef);
  1822. result := ccallnode.createintern(procname,ccallparanode.create(right,
  1823. ccallparanode.create(left,nil)));
  1824. { left and right are reused as parameters }
  1825. left := nil;
  1826. right := nil;
  1827. { for an unequaln, we have to negate the result of comp_sets }
  1828. if nodetype = unequaln then
  1829. result := cnotnode.create(result);
  1830. end;
  1831. addn:
  1832. begin
  1833. { optimize first loading of a set }
  1834. if (right.nodetype=setelementn) and
  1835. not(assigned(tsetelementnode(right).right)) and
  1836. is_emptyset(left) then
  1837. begin
  1838. { type cast the value to pass as argument to a byte, }
  1839. { since that's what the helper expects }
  1840. tsetelementnode(right).left :=
  1841. ctypeconvnode.create_internal(tsetelementnode(right).left,u8inttype);
  1842. { set the resultdef to the actual one (otherwise it's }
  1843. { "fpc_normal_set") }
  1844. result := ccallnode.createinternres('fpc_set_create_element',
  1845. ccallparanode.create(tsetelementnode(right).left,nil),
  1846. resultdef);
  1847. { reused }
  1848. tsetelementnode(right).left := nil;
  1849. end
  1850. else
  1851. begin
  1852. if right.nodetype=setelementn then
  1853. begin
  1854. { convert the arguments to bytes, since that's what }
  1855. { the helper expects }
  1856. tsetelementnode(right).left :=
  1857. ctypeconvnode.create_internal(tsetelementnode(right).left,
  1858. u8inttype);
  1859. { convert the original set (explicitely) to an }
  1860. { fpc_normal_set so we can pass it to the helper }
  1861. left := ctypeconvnode.create_internal(left,srsym.typedef);
  1862. { add a range or a single element? }
  1863. if assigned(tsetelementnode(right).right) then
  1864. begin
  1865. tsetelementnode(right).right :=
  1866. ctypeconvnode.create_internal(tsetelementnode(right).right,
  1867. u8inttype);
  1868. { create the call }
  1869. result := ccallnode.createinternres('fpc_set_set_range',
  1870. ccallparanode.create(tsetelementnode(right).right,
  1871. ccallparanode.create(tsetelementnode(right).left,
  1872. ccallparanode.create(left,nil))),resultdef);
  1873. end
  1874. else
  1875. begin
  1876. result := ccallnode.createinternres('fpc_set_set_byte',
  1877. ccallparanode.create(tsetelementnode(right).left,
  1878. ccallparanode.create(left,nil)),resultdef);
  1879. end;
  1880. { remove reused parts from original node }
  1881. tsetelementnode(right).right := nil;
  1882. tsetelementnode(right).left := nil;
  1883. left := nil;
  1884. end
  1885. else
  1886. begin
  1887. { add two sets }
  1888. { convert the sets to fpc_normal_set's }
  1889. result := ccallnode.createinternres('fpc_set_add_sets',
  1890. ccallparanode.create(
  1891. ctypeconvnode.create_explicit(right,srsym.typedef),
  1892. ccallparanode.create(
  1893. ctypeconvnode.create_internal(left,srsym.typedef),nil)),resultdef);
  1894. { remove reused parts from original node }
  1895. left := nil;
  1896. right := nil;
  1897. end;
  1898. end
  1899. end;
  1900. subn,symdifn,muln:
  1901. begin
  1902. { convert the sets to fpc_normal_set's }
  1903. paras := ccallparanode.create(ctypeconvnode.create_internal(right,srsym.typedef),
  1904. ccallparanode.create(ctypeconvnode.create_internal(left,srsym.typedef),nil));
  1905. case nodetype of
  1906. subn:
  1907. result := ccallnode.createinternres('fpc_set_sub_sets',
  1908. paras,resultdef);
  1909. symdifn:
  1910. result := ccallnode.createinternres('fpc_set_symdif_sets',
  1911. paras,resultdef);
  1912. muln:
  1913. result := ccallnode.createinternres('fpc_set_mul_sets',
  1914. paras,resultdef);
  1915. end;
  1916. { remove reused parts from original node }
  1917. left := nil;
  1918. right := nil;
  1919. end;
  1920. else
  1921. internalerror(200108311);
  1922. end;
  1923. end;
  1924. end;
  1925. function taddnode.use_generic_mul32to64: boolean;
  1926. begin
  1927. result := true;
  1928. end;
  1929. function taddnode.try_make_mul32to64: boolean;
  1930. function canbe32bitint(v: tconstexprint; fromdef: torddef; todefsigned: boolean): boolean;
  1931. begin
  1932. if (fromdef.ordtype <> u64bit) then
  1933. result :=
  1934. ((v >= 0) or
  1935. todefsigned) and
  1936. (v >= low(longint)) and
  1937. (v <= high(longint))
  1938. else
  1939. result :=
  1940. (qword(v) >= low(cardinal)) and
  1941. (qword(v) <= high(cardinal))
  1942. end;
  1943. var
  1944. temp: tnode;
  1945. begin
  1946. result := false;
  1947. if ((left.nodetype = typeconvn) and
  1948. is_integer(ttypeconvnode(left).left.resultdef) and
  1949. (not(torddef(ttypeconvnode(left).left.resultdef).ordtype in [u64bit,s64bit])) and
  1950. (((right.nodetype = ordconstn) and
  1951. canbe32bitint(tordconstnode(right).value,torddef(right.resultdef),is_signed(left.resultdef))) or
  1952. ((right.nodetype = typeconvn) and
  1953. is_integer(ttypeconvnode(right).left.resultdef) and
  1954. not(torddef(ttypeconvnode(right).left.resultdef).ordtype in [u64bit,s64bit])) and
  1955. (is_signed(ttypeconvnode(left).left.resultdef) =
  1956. is_signed(ttypeconvnode(right).left.resultdef)))) then
  1957. begin
  1958. temp := ttypeconvnode(left).left;
  1959. ttypeconvnode(left).left := nil;
  1960. left.free;
  1961. left := temp;
  1962. if (right.nodetype = typeconvn) then
  1963. begin
  1964. temp := ttypeconvnode(right).left;
  1965. ttypeconvnode(right).left := nil;
  1966. right.free;
  1967. right := temp;
  1968. end;
  1969. if (is_signed(left.resultdef)) then
  1970. begin
  1971. inserttypeconv(left,s32inttype);
  1972. inserttypeconv(right,s32inttype);
  1973. end
  1974. else
  1975. begin
  1976. inserttypeconv(left,u32inttype);
  1977. inserttypeconv(right,u32inttype);
  1978. end;
  1979. firstpass(left);
  1980. firstpass(right);
  1981. result := true;
  1982. end;
  1983. end;
  1984. function taddnode.first_add64bitint: tnode;
  1985. var
  1986. procname: string[31];
  1987. temp: tnode;
  1988. power: longint;
  1989. begin
  1990. result := nil;
  1991. { create helper calls mul }
  1992. if nodetype <> muln then
  1993. exit;
  1994. { make sure that if there is a constant, that it's on the right }
  1995. if left.nodetype = ordconstn then
  1996. begin
  1997. temp := right;
  1998. right := left;
  1999. left := temp;
  2000. end;
  2001. { can we use a shift instead of a mul? }
  2002. if not (cs_check_overflow in current_settings.localswitches) and
  2003. (right.nodetype = ordconstn) and
  2004. ispowerof2(tordconstnode(right).value,power) then
  2005. begin
  2006. tordconstnode(right).value := power;
  2007. result := cshlshrnode.create(shln,left,right);
  2008. { left and right are reused }
  2009. left := nil;
  2010. right := nil;
  2011. { return firstpassed new node }
  2012. exit;
  2013. end;
  2014. if not(use_generic_mul32to64) and
  2015. try_make_mul32to64 then
  2016. exit;
  2017. { when currency is used set the result of the
  2018. parameters to s64bit, so they are not converted }
  2019. if is_currency(resultdef) then
  2020. begin
  2021. left.resultdef:=s64inttype;
  2022. right.resultdef:=s64inttype;
  2023. end;
  2024. { otherwise, create the parameters for the helper }
  2025. right := ccallparanode.create(
  2026. cordconstnode.create(ord(cs_check_overflow in current_settings.localswitches),booltype,true),
  2027. ccallparanode.create(right,ccallparanode.create(left,nil)));
  2028. left := nil;
  2029. { only qword needs the unsigned code, the
  2030. signed code is also used for currency }
  2031. if is_signed(resultdef) then
  2032. procname := 'fpc_mul_int64'
  2033. else
  2034. procname := 'fpc_mul_qword';
  2035. result := ccallnode.createintern(procname,right);
  2036. right := nil;
  2037. end;
  2038. function taddnode.first_addfloat : tnode;
  2039. var
  2040. procname: string[31];
  2041. { do we need to reverse the result ? }
  2042. notnode : boolean;
  2043. fdef : tdef;
  2044. begin
  2045. result := nil;
  2046. notnode := false;
  2047. { In non-emulation mode, real opcodes are
  2048. emitted for floating point values.
  2049. }
  2050. if not (cs_fp_emulation in current_settings.moduleswitches) then
  2051. exit;
  2052. if not(target_info.system in system_wince) then
  2053. begin
  2054. case tfloatdef(left.resultdef).floattype of
  2055. s32real:
  2056. begin
  2057. fdef:=search_system_type('FLOAT32REC').typedef;
  2058. procname:='float32';
  2059. end;
  2060. s64real:
  2061. begin
  2062. fdef:=search_system_type('FLOAT64').typedef;
  2063. procname:='float64';
  2064. end;
  2065. {!!! not yet implemented
  2066. s128real:
  2067. }
  2068. else
  2069. internalerror(2005082601);
  2070. end;
  2071. case nodetype of
  2072. addn:
  2073. procname:=procname+'_add';
  2074. muln:
  2075. procname:=procname+'_mul';
  2076. subn:
  2077. procname:=procname+'_sub';
  2078. slashn:
  2079. procname:=procname+'_div';
  2080. ltn:
  2081. procname:=procname+'_lt';
  2082. lten:
  2083. procname:=procname+'_le';
  2084. gtn:
  2085. begin
  2086. procname:=procname+'_le';
  2087. notnode:=true;
  2088. end;
  2089. gten:
  2090. begin
  2091. procname:=procname+'_lt';
  2092. notnode:=true;
  2093. end;
  2094. equaln:
  2095. procname:=procname+'_eq';
  2096. unequaln:
  2097. begin
  2098. procname:=procname+'_eq';
  2099. notnode:=true;
  2100. end;
  2101. else
  2102. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),left.resultdef.typename,right.resultdef.typename);
  2103. end;
  2104. end
  2105. else
  2106. begin
  2107. case nodetype of
  2108. addn:
  2109. procname:='ADD';
  2110. muln:
  2111. procname:='MUL';
  2112. subn:
  2113. procname:='SUB';
  2114. slashn:
  2115. procname:='DIV';
  2116. ltn:
  2117. procname:='LT';
  2118. lten:
  2119. procname:='LE';
  2120. gtn:
  2121. procname:='GT';
  2122. gten:
  2123. procname:='GE';
  2124. equaln:
  2125. procname:='EQ';
  2126. unequaln:
  2127. procname:='NE';
  2128. else
  2129. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),left.resultdef.typename,right.resultdef.typename);
  2130. end;
  2131. case tfloatdef(left.resultdef).floattype of
  2132. s32real:
  2133. begin
  2134. procname:=procname+'S';
  2135. if nodetype in [addn,muln,subn,slashn] then
  2136. procname:=lower(procname);
  2137. end;
  2138. s64real:
  2139. procname:=procname+'D';
  2140. {!!! not yet implemented
  2141. s128real:
  2142. }
  2143. else
  2144. internalerror(2005082602);
  2145. end;
  2146. end;
  2147. { cast softfpu result? }
  2148. if not(target_info.system in system_wince) then
  2149. begin
  2150. if nodetype in [ltn,lten,gtn,gten,equaln,unequaln] then
  2151. resultdef:=booltype;
  2152. result:=ctypeconvnode.create_internal(ccallnode.createintern(procname,ccallparanode.create(
  2153. ctypeconvnode.create_internal(right,fdef),
  2154. ccallparanode.create(
  2155. ctypeconvnode.create_internal(left,fdef),nil))),resultdef);
  2156. end
  2157. else
  2158. result:=ccallnode.createintern(procname,ccallparanode.create(right,
  2159. ccallparanode.create(left,nil)));
  2160. left:=nil;
  2161. right:=nil;
  2162. { do we need to reverse the result }
  2163. if notnode then
  2164. result:=cnotnode.create(result);
  2165. end;
  2166. function taddnode.pass_1 : tnode;
  2167. var
  2168. {$ifdef addstringopt}
  2169. hp : tnode;
  2170. {$endif addstringopt}
  2171. lt,rt : tnodetype;
  2172. rd,ld : tdef;
  2173. begin
  2174. result:=nil;
  2175. { Can we optimize multiple string additions into a single call?
  2176. This need to be done on a complete tree to detect the multiple
  2177. add nodes and is therefor done before the subtrees are processed }
  2178. if canbemultistringadd(self) then
  2179. begin
  2180. result := genmultistringadd(self);
  2181. exit;
  2182. end;
  2183. { first do the two subtrees }
  2184. firstpass(left);
  2185. firstpass(right);
  2186. if codegenerror then
  2187. exit;
  2188. { load easier access variables }
  2189. rd:=right.resultdef;
  2190. ld:=left.resultdef;
  2191. rt:=right.nodetype;
  2192. lt:=left.nodetype;
  2193. { int/int gives real/real! }
  2194. if nodetype=slashn then
  2195. begin
  2196. {$ifdef cpufpemu}
  2197. if (current_settings.fputype=fpu_soft) or (cs_fp_emulation in current_settings.moduleswitches) then
  2198. begin
  2199. result:=first_addfloat;
  2200. if assigned(result) then
  2201. exit;
  2202. end;
  2203. {$endif cpufpemu}
  2204. expectloc:=LOC_FPUREGISTER;
  2205. { maybe we need an integer register to save }
  2206. { a reference }
  2207. if ((left.expectloc<>LOC_FPUREGISTER) or
  2208. (right.expectloc<>LOC_FPUREGISTER)) and
  2209. (left.registersint=right.registersint) then
  2210. calcregisters(self,1,1,0)
  2211. else
  2212. calcregisters(self,0,1,0);
  2213. { an add node always first loads both the left and the }
  2214. { right in the fpu before doing the calculation. However, }
  2215. { calcregisters(0,2,0) will overestimate the number of }
  2216. { necessary registers (it will make it 3 in case one of }
  2217. { the operands is already in the fpu) (JM) }
  2218. if ((left.expectloc<>LOC_FPUREGISTER) or
  2219. (right.expectloc<>LOC_FPUREGISTER)) and
  2220. (registersfpu < 2) then
  2221. inc(registersfpu);
  2222. end
  2223. { if both are orddefs then check sub types }
  2224. else if (ld.typ=orddef) and (rd.typ=orddef) then
  2225. begin
  2226. { 2 booleans ? }
  2227. if is_boolean(ld) and is_boolean(rd) then
  2228. begin
  2229. if (not(cs_full_boolean_eval in current_settings.localswitches) or
  2230. (nf_short_bool in flags)) and
  2231. (nodetype in [andn,orn]) then
  2232. begin
  2233. expectloc:=LOC_JUMP;
  2234. calcregisters(self,0,0,0);
  2235. end
  2236. else
  2237. begin
  2238. if nodetype in [ltn,lten,gtn,gten,equaln,unequaln] then
  2239. begin
  2240. expectloc:=LOC_FLAGS;
  2241. if (left.expectloc in [LOC_JUMP,LOC_FLAGS]) and
  2242. (left.expectloc in [LOC_JUMP,LOC_FLAGS]) then
  2243. calcregisters(self,2,0,0)
  2244. else
  2245. calcregisters(self,1,0,0);
  2246. end
  2247. else
  2248. begin
  2249. expectloc:=LOC_REGISTER;
  2250. calcregisters(self,0,0,0);
  2251. end;
  2252. end;
  2253. end
  2254. else
  2255. { Both are chars? only convert to shortstrings for addn }
  2256. if is_char(ld) then
  2257. begin
  2258. if nodetype=addn then
  2259. internalerror(200103291);
  2260. expectloc:=LOC_FLAGS;
  2261. calcregisters(self,1,0,0);
  2262. end
  2263. {$ifndef cpu64bit}
  2264. { is there a 64 bit type ? }
  2265. else if (torddef(ld).ordtype in [s64bit,u64bit,scurrency]) then
  2266. begin
  2267. result := first_add64bitint;
  2268. if assigned(result) then
  2269. exit;
  2270. if nodetype in [addn,subn,muln,andn,orn,xorn] then
  2271. expectloc:=LOC_REGISTER
  2272. else
  2273. expectloc:=LOC_JUMP;
  2274. calcregisters(self,2,0,0)
  2275. end
  2276. {$endif cpu64bit}
  2277. { is there a cardinal? }
  2278. else if (torddef(ld).ordtype=u32bit) then
  2279. begin
  2280. if nodetype in [addn,subn,muln,andn,orn,xorn] then
  2281. expectloc:=LOC_REGISTER
  2282. else
  2283. expectloc:=LOC_FLAGS;
  2284. calcregisters(self,1,0,0);
  2285. { for unsigned mul we need an extra register }
  2286. if nodetype=muln then
  2287. inc(registersint);
  2288. end
  2289. { generic s32bit conversion }
  2290. else
  2291. begin
  2292. if nodetype in [addn,subn,muln,andn,orn,xorn] then
  2293. expectloc:=LOC_REGISTER
  2294. else
  2295. expectloc:=LOC_FLAGS;
  2296. calcregisters(self,1,0,0);
  2297. end;
  2298. end
  2299. { left side a setdef, must be before string processing,
  2300. else array constructor can be seen as array of char (PFV) }
  2301. else if (ld.typ=setdef) then
  2302. begin
  2303. if tsetdef(ld).settype=smallset then
  2304. begin
  2305. if nodetype in [ltn,lten,gtn,gten,equaln,unequaln] then
  2306. expectloc:=LOC_FLAGS
  2307. else
  2308. expectloc:=LOC_REGISTER;
  2309. { are we adding set elements ? }
  2310. if right.nodetype=setelementn then
  2311. calcregisters(self,2,0,0)
  2312. else
  2313. calcregisters(self,1,0,0);
  2314. end
  2315. else
  2316. {$ifdef MMXSET}
  2317. {$ifdef i386}
  2318. if cs_mmx in current_settings.localswitches then
  2319. begin
  2320. expectloc:=LOC_MMXREGISTER;
  2321. calcregisters(self,0,0,4);
  2322. end
  2323. else
  2324. {$endif}
  2325. {$endif MMXSET}
  2326. begin
  2327. result := first_addset;
  2328. if assigned(result) then
  2329. exit;
  2330. expectloc:=LOC_CREFERENCE;
  2331. calcregisters(self,0,0,0);
  2332. { here we call SET... }
  2333. include(current_procinfo.flags,pi_do_call);
  2334. end;
  2335. end
  2336. { compare pchar by addresses like BP/Delphi }
  2337. else if is_pchar(ld) then
  2338. begin
  2339. if nodetype in [addn,subn,muln,andn,orn,xorn] then
  2340. expectloc:=LOC_REGISTER
  2341. else
  2342. expectloc:=LOC_FLAGS;
  2343. calcregisters(self,1,0,0);
  2344. end
  2345. { is one of the operands a string }
  2346. else if (ld.typ=stringdef) then
  2347. begin
  2348. if is_widestring(ld) then
  2349. begin
  2350. { this is only for add, the comparisaion is handled later }
  2351. expectloc:=LOC_REGISTER;
  2352. end
  2353. else if is_ansistring(ld) then
  2354. begin
  2355. { this is only for add, the comparisaion is handled later }
  2356. expectloc:=LOC_REGISTER;
  2357. end
  2358. else if is_longstring(ld) then
  2359. begin
  2360. { this is only for add, the comparisaion is handled later }
  2361. expectloc:=LOC_REFERENCE;
  2362. end
  2363. else
  2364. begin
  2365. {$ifdef addstringopt}
  2366. { can create a call which isn't handled by callparatemp }
  2367. if canbeaddsstringcharoptnode(self) then
  2368. begin
  2369. hp := genaddsstringcharoptnode(self);
  2370. pass_1 := hp;
  2371. exit;
  2372. end
  2373. else
  2374. {$endif addstringopt}
  2375. begin
  2376. { Fix right to be shortstring }
  2377. if is_char(right.resultdef) then
  2378. begin
  2379. inserttypeconv(right,cshortstringtype);
  2380. firstpass(right);
  2381. end;
  2382. end;
  2383. {$ifdef addstringopt}
  2384. { can create a call which isn't handled by callparatemp }
  2385. if canbeaddsstringcsstringoptnode(self) then
  2386. begin
  2387. hp := genaddsstringcsstringoptnode(self);
  2388. pass_1 := hp;
  2389. exit;
  2390. end;
  2391. {$endif addstringopt}
  2392. end;
  2393. { otherwise, let addstring convert everything }
  2394. result := first_addstring;
  2395. exit;
  2396. end
  2397. { is one a real float ? }
  2398. else if (rd.typ=floatdef) or (ld.typ=floatdef) then
  2399. begin
  2400. {$ifdef cpufpemu}
  2401. if (current_settings.fputype=fpu_soft) or (cs_fp_emulation in current_settings.moduleswitches) then
  2402. begin
  2403. result:=first_addfloat;
  2404. if assigned(result) then
  2405. exit;
  2406. end;
  2407. {$endif cpufpemu}
  2408. if nodetype in [addn,subn,muln,andn,orn,xorn] then
  2409. expectloc:=LOC_FPUREGISTER
  2410. else
  2411. expectloc:=LOC_FLAGS;
  2412. calcregisters(self,0,1,0);
  2413. { an add node always first loads both the left and the }
  2414. { right in the fpu before doing the calculation. However, }
  2415. { calcregisters(0,2,0) will overestimate the number of }
  2416. { necessary registers (it will make it 3 in case one of }
  2417. { the operands is already in the fpu) (JM) }
  2418. if ((left.expectloc<>LOC_FPUREGISTER) or
  2419. (right.expectloc<>LOC_FPUREGISTER)) and
  2420. (registersfpu < 2) then
  2421. inc(registersfpu);
  2422. end
  2423. { pointer comperation and subtraction }
  2424. else if (ld.typ=pointerdef) then
  2425. begin
  2426. if nodetype in [addn,subn,muln,andn,orn,xorn] then
  2427. expectloc:=LOC_REGISTER
  2428. else
  2429. expectloc:=LOC_FLAGS;
  2430. calcregisters(self,1,0,0);
  2431. end
  2432. else if is_class_or_interface(ld) then
  2433. begin
  2434. expectloc:=LOC_FLAGS;
  2435. calcregisters(self,1,0,0);
  2436. end
  2437. else if (ld.typ=classrefdef) then
  2438. begin
  2439. expectloc:=LOC_FLAGS;
  2440. calcregisters(self,1,0,0);
  2441. end
  2442. { support procvar=nil,procvar<>nil }
  2443. else if ((ld.typ=procvardef) and (rt=niln)) or
  2444. ((rd.typ=procvardef) and (lt=niln)) then
  2445. begin
  2446. expectloc:=LOC_FLAGS;
  2447. calcregisters(self,1,0,0);
  2448. end
  2449. {$ifdef SUPPORT_MMX}
  2450. { mmx support, this must be before the zero based array
  2451. check }
  2452. else if (cs_mmx in current_settings.localswitches) and is_mmx_able_array(ld) and
  2453. is_mmx_able_array(rd) then
  2454. begin
  2455. expectloc:=LOC_MMXREGISTER;
  2456. calcregisters(self,0,0,1);
  2457. end
  2458. {$endif SUPPORT_MMX}
  2459. else if (rd.typ=pointerdef) or (ld.typ=pointerdef) then
  2460. begin
  2461. expectloc:=LOC_REGISTER;
  2462. calcregisters(self,1,0,0);
  2463. end
  2464. else if (rd.typ=procvardef) and
  2465. (ld.typ=procvardef) and
  2466. equal_defs(rd,ld) then
  2467. begin
  2468. expectloc:=LOC_FLAGS;
  2469. calcregisters(self,1,0,0);
  2470. end
  2471. else if (ld.typ=enumdef) then
  2472. begin
  2473. expectloc:=LOC_FLAGS;
  2474. calcregisters(self,1,0,0);
  2475. end
  2476. {$ifdef SUPPORT_MMX}
  2477. else if (cs_mmx in current_settings.localswitches) and
  2478. is_mmx_able_array(ld) and
  2479. is_mmx_able_array(rd) then
  2480. begin
  2481. expectloc:=LOC_MMXREGISTER;
  2482. calcregisters(self,0,0,1);
  2483. end
  2484. {$endif SUPPORT_MMX}
  2485. { the general solution is to convert to 32 bit int }
  2486. else
  2487. begin
  2488. expectloc:=LOC_REGISTER;
  2489. calcregisters(self,1,0,0);
  2490. end;
  2491. end;
  2492. {$ifdef state_tracking}
  2493. function Taddnode.track_state_pass(exec_known:boolean):boolean;
  2494. var factval:Tnode;
  2495. begin
  2496. track_state_pass:=false;
  2497. if left.track_state_pass(exec_known) then
  2498. begin
  2499. track_state_pass:=true;
  2500. left.resultdef:=nil;
  2501. do_typecheckpass(left);
  2502. end;
  2503. factval:=aktstate.find_fact(left);
  2504. if factval<>nil then
  2505. begin
  2506. track_state_pass:=true;
  2507. left.destroy;
  2508. left:=factval.getcopy;
  2509. end;
  2510. if right.track_state_pass(exec_known) then
  2511. begin
  2512. track_state_pass:=true;
  2513. right.resultdef:=nil;
  2514. do_typecheckpass(right);
  2515. end;
  2516. factval:=aktstate.find_fact(right);
  2517. if factval<>nil then
  2518. begin
  2519. track_state_pass:=true;
  2520. right.destroy;
  2521. right:=factval.getcopy;
  2522. end;
  2523. end;
  2524. {$endif}
  2525. begin
  2526. caddnode:=taddnode;
  2527. end.