ninl.pas 98 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559
  1. {
  2. $Id$
  3. Copyright (c) 1998-2002 by Florian Klaempfl
  4. Type checking and register allocation for inline nodes
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program; if not, write to the Free Software
  15. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  16. ****************************************************************************
  17. }
  18. unit ninl;
  19. {$i fpcdefs.inc}
  20. interface
  21. uses
  22. node,htypechk,cpuinfo,symppu;
  23. {$i compinnr.inc}
  24. type
  25. tinlinenode = class(tunarynode)
  26. inlinenumber : byte;
  27. constructor create(number : byte;is_const:boolean;l : tnode);virtual;
  28. constructor ppuload(t:tnodetype;ppufile:tcompilerppufile);override;
  29. procedure ppuwrite(ppufile:tcompilerppufile);override;
  30. function getcopy : tnode;override;
  31. function pass_1 : tnode;override;
  32. function det_resulttype:tnode;override;
  33. function docompare(p: tnode): boolean; override;
  34. { All the following routines currently
  35. call compilerproc's, unless they are
  36. overriden in which case, the code
  37. generator handles them.
  38. }
  39. function first_pi: tnode ; virtual;
  40. function first_arctan_real: tnode; virtual;
  41. function first_abs_real: tnode; virtual;
  42. function first_sqr_real: tnode; virtual;
  43. function first_sqrt_real: tnode; virtual;
  44. function first_ln_real: tnode; virtual;
  45. function first_cos_real: tnode; virtual;
  46. function first_sin_real: tnode; virtual;
  47. private
  48. function handle_str: tnode;
  49. function handle_reset_rewrite_typed: tnode;
  50. function handle_read_write: tnode;
  51. function handle_val: tnode;
  52. end;
  53. tinlinenodeclass = class of tinlinenode;
  54. var
  55. cinlinenode : tinlinenodeclass;
  56. function geninlinenode(number : byte;is_const:boolean;l : tnode) : tinlinenode;
  57. implementation
  58. uses
  59. verbose,globals,systems,
  60. globtype, cutils,
  61. symbase,symconst,symtype,symdef,symsym,symtable,paramgr,defbase,
  62. pass_1,
  63. ncal,ncon,ncnv,nadd,nld,nbas,nflw,nmem,nmat,
  64. cpubase,tgobj,cgbase
  65. ;
  66. function geninlinenode(number : byte;is_const:boolean;l : tnode) : tinlinenode;
  67. begin
  68. geninlinenode:=cinlinenode.create(number,is_const,l);
  69. end;
  70. {*****************************************************************************
  71. TINLINENODE
  72. *****************************************************************************}
  73. constructor tinlinenode.create(number : byte;is_const:boolean;l : tnode);
  74. begin
  75. inherited create(inlinen,l);
  76. if is_const then
  77. include(flags,nf_inlineconst);
  78. inlinenumber:=number;
  79. end;
  80. constructor tinlinenode.ppuload(t:tnodetype;ppufile:tcompilerppufile);
  81. begin
  82. inherited ppuload(t,ppufile);
  83. inlinenumber:=ppufile.getbyte;
  84. end;
  85. procedure tinlinenode.ppuwrite(ppufile:tcompilerppufile);
  86. begin
  87. inherited ppuwrite(ppufile);
  88. ppufile.putbyte(inlinenumber);
  89. end;
  90. function tinlinenode.getcopy : tnode;
  91. var
  92. n : tinlinenode;
  93. begin
  94. n:=tinlinenode(inherited getcopy);
  95. n.inlinenumber:=inlinenumber;
  96. result:=n;
  97. end;
  98. function tinlinenode.handle_str : tnode;
  99. var
  100. lenpara,
  101. fracpara,
  102. newparas,
  103. dest,
  104. source : tcallparanode;
  105. newnode : tnode;
  106. procname: string;
  107. is_real : boolean;
  108. begin
  109. result := cerrornode.create;
  110. { make sure we got at least two parameters (if we got only one, }
  111. { this parameter may not be encapsulated in a callparan) }
  112. if not assigned(left) or
  113. (left.nodetype <> callparan) then
  114. begin
  115. CGMessage(parser_e_wrong_parameter_size);
  116. exit;
  117. end;
  118. { get destination string }
  119. dest := tcallparanode(left);
  120. { get source para (number) }
  121. source := dest;
  122. while assigned(source.right) do
  123. source := tcallparanode(source.right);
  124. is_real := source.resulttype.def.deftype = floatdef;
  125. if not assigned(dest) or
  126. ((dest.left.resulttype.def.deftype<>stringdef) and
  127. not(is_chararray(dest.left.resulttype.def))) or
  128. not(is_real or
  129. (source.left.resulttype.def.deftype = orddef)) then
  130. begin
  131. { the parser will give this message already because we }
  132. { return an errornode (JM) }
  133. { CGMessagePos(fileinfo,cg_e_illegal_expression); }
  134. exit;
  135. end;
  136. { get len/frac parameters }
  137. lenpara := nil;
  138. fracpara := nil;
  139. if (cpf_is_colon_para in tcallparanode(dest.right).callparaflags) then
  140. begin
  141. lenpara := tcallparanode(dest.right);
  142. { we can let the callnode do the type checking of these parameters too, }
  143. { but then the error messages aren't as nice }
  144. if not is_integer(lenpara.resulttype.def) then
  145. begin
  146. CGMessagePos1(lenpara.fileinfo,
  147. type_e_integer_expr_expected,lenpara.resulttype.def.typename);
  148. exit;
  149. end;
  150. if (cpf_is_colon_para in tcallparanode(lenpara.right).callparaflags) then
  151. begin
  152. { parameters are in reverse order! }
  153. fracpara := lenpara;
  154. lenpara := tcallparanode(lenpara.right);
  155. if not is_real then
  156. begin
  157. CGMessagePos(lenpara.fileinfo,parser_e_illegal_colon_qualifier);
  158. exit
  159. end;
  160. if not is_integer(lenpara.resulttype.def) then
  161. begin
  162. CGMessagePos1(lenpara.fileinfo,
  163. type_e_integer_expr_expected,lenpara.resulttype.def.typename);
  164. exit;
  165. end;
  166. end;
  167. end;
  168. { generate the parameter list for the compilerproc }
  169. newparas := dest;
  170. { if we have a float parameter, insert the realtype, len and fracpara parameters }
  171. if is_real then
  172. begin
  173. { insert realtype parameter }
  174. newparas.right := ccallparanode.create(cordconstnode.create(
  175. ord(tfloatdef(source.left.resulttype.def).typ),s32bittype,true),
  176. newparas.right);
  177. { if necessary, insert a fraction parameter }
  178. if not assigned(fracpara) then
  179. begin
  180. tcallparanode(newparas.right).right := ccallparanode.create(
  181. cordconstnode.create(-1,s32bittype,false),
  182. tcallparanode(newparas.right).right);
  183. fracpara := tcallparanode(tcallparanode(newparas.right).right);
  184. end;
  185. { if necessary, insert a length para }
  186. if not assigned(lenpara) then
  187. fracpara.right := ccallparanode.create(
  188. cordconstnode.create(-32767,s32bittype,false),
  189. fracpara.right);
  190. end
  191. else
  192. { for a normal parameter, insert a only length parameter if one is missing }
  193. if not assigned(lenpara) then
  194. newparas.right := ccallparanode.create(cordconstnode.create(-1,s32bittype,false),
  195. newparas.right);
  196. { remove the parameters from the original node so they won't get disposed, }
  197. { since they're reused }
  198. left := nil;
  199. { create procedure name }
  200. if is_chararray(dest.resulttype.def) then
  201. procname:='fpc_chararray_'
  202. else
  203. procname := 'fpc_' + tstringdef(dest.resulttype.def).stringtypname+'_';
  204. if is_real then
  205. procname := procname + 'float'
  206. else
  207. case torddef(source.resulttype.def).typ of
  208. u32bit:
  209. procname := procname + 'longword';
  210. u64bit:
  211. procname := procname + 'qword';
  212. s64bit:
  213. procname := procname + 'int64';
  214. else
  215. procname := procname + 'longint';
  216. end;
  217. { create the call node, }
  218. newnode := ccallnode.createintern(procname,newparas);
  219. { resulttypepass it }
  220. resulttypepass(newnode);
  221. { and return it (but first free the errornode we generated in the beginning) }
  222. result.free;
  223. result := newnode;
  224. end;
  225. function tinlinenode.handle_reset_rewrite_typed: tnode;
  226. begin
  227. { since this is a "in_xxxx_typedfile" node, we can be sure we have }
  228. { a typed file as argument and we don't have to check it again (JM) }
  229. { add the recsize parameter }
  230. { note: for some reason, the parameter of intern procedures with only one }
  231. { parameter is gets lifted out of its original tcallparanode (see round }
  232. { line 1306 of ncal.pas), so recreate a tcallparanode here (JM) }
  233. left := ccallparanode.create(cordconstnode.create(
  234. tfiledef(left.resulttype.def).typedfiletype.def.size,s32bittype,true),
  235. ccallparanode.create(left,nil));
  236. { create the correct call }
  237. if inlinenumber=in_reset_typedfile then
  238. result := ccallnode.createintern('fpc_reset_typed',left)
  239. else
  240. result := ccallnode.createintern('fpc_rewrite_typed',left);
  241. firstpass(result);
  242. { make sure left doesn't get disposed, since we use it in the new call }
  243. left := nil;
  244. end;
  245. function tinlinenode.handle_read_write: tnode;
  246. const
  247. procnames: array[boolean,boolean] of string[11] =
  248. (('write_text_','read_text_'),('typed_write','typed_read'));
  249. var
  250. filepara,
  251. lenpara,
  252. fracpara,
  253. nextpara,
  254. para : tcallparanode;
  255. newstatement : tstatementnode;
  256. newblock : tblocknode;
  257. p1 : tnode;
  258. filetemp,
  259. temp : ttempcreatenode;
  260. procprefix,
  261. name : string[31];
  262. srsym : tvarsym;
  263. tempowner : tsymtable;
  264. restype : ^ttype;
  265. is_typed,
  266. do_read,
  267. is_real,
  268. error_para,
  269. found_error,
  270. is_ordinal : boolean;
  271. begin
  272. filepara := nil;
  273. is_typed := false;
  274. filetemp := nil;
  275. do_read := inlinenumber in [in_read_x,in_readln_x];
  276. { if we fail, we can quickly exit this way. We must generate something }
  277. { instead of the inline node, because firstpass will bomb with an }
  278. { internalerror if it encounters a read/write }
  279. result := cerrornode.create;
  280. { reverse the parameters (needed to get the colon parameters in the }
  281. { correct order when processing write(ln) }
  282. left := reverseparameters(tcallparanode(left));
  283. if assigned(left) then
  284. begin
  285. { check if we have a file parameter and if yes, what kind it is }
  286. filepara := tcallparanode(left);
  287. if (filepara.resulttype.def.deftype=filedef) then
  288. begin
  289. if (tfiledef(filepara.resulttype.def).filetyp=ft_untyped) then
  290. begin
  291. CGMessagePos(fileinfo,type_e_no_read_write_for_untyped_file);
  292. exit;
  293. end
  294. else
  295. begin
  296. if (tfiledef(filepara.resulttype.def).filetyp=ft_typed) then
  297. begin
  298. if (inlinenumber in [in_readln_x,in_writeln_x]) then
  299. begin
  300. CGMessagePos(fileinfo,type_e_no_readln_writeln_for_typed_file);
  301. exit;
  302. end;
  303. is_typed := true;
  304. end
  305. end;
  306. end
  307. else
  308. filepara := nil;
  309. end;
  310. { create a blocknode in which the successive write/read statements will be }
  311. { put, since they belong together. Also create a dummy statement already to }
  312. { make inserting of additional statements easier }
  313. newblock:=internalstatements(newstatement);
  314. { if we don't have a filepara, create one containing the default }
  315. if not assigned(filepara) then
  316. begin
  317. { retrieve the symbols for standard input/output handle }
  318. if do_read then
  319. name := 'INPUT'
  320. else
  321. name := 'OUTPUT';
  322. if not searchsysvar(name,srsym,tempowner) then
  323. internalerror(200108141);
  324. { since the input/output variables are threadvars loading them into
  325. a temp once is faster. Create a temp which will hold a pointer to the file }
  326. filetemp := ctempcreatenode.create(voidpointertype,voidpointertype.def.size,true);
  327. addstatement(newstatement,filetemp);
  328. { make sure the resulttype of the temp (and as such of the }
  329. { temprefs coming after it) is set (necessary because the }
  330. { temprefs will be part of the filepara, of which we need }
  331. { the resulttype later on and temprefs can only be }
  332. { resulttypepassed if the resulttype of the temp is known) }
  333. resulttypepass(tnode(filetemp));
  334. { assign the address of the file to the temp }
  335. addstatement(newstatement,
  336. cassignmentnode.create(ctemprefnode.create(filetemp),
  337. caddrnode.create(cloadnode.create(srsym,tempowner))));
  338. { create a new fileparameter as follows: file_type(temp^) }
  339. { (so that we pass the value and not the address of the temp }
  340. { to the read/write routine) }
  341. filepara := ccallparanode.create(ctypeconvnode.create_explicit(
  342. cderefnode.create(ctemprefnode.create(filetemp)),srsym.vartype),nil);
  343. end
  344. else
  345. { remove filepara from the parameter chain }
  346. begin
  347. left := filepara.right;
  348. filepara.right := nil;
  349. { the file para is a var parameter, but it must be valid already }
  350. set_varstate(filepara,true);
  351. { check if we should make a temp to store the result of a complex }
  352. { expression (better heuristics, anyone?) (JM) }
  353. if (filepara.left.nodetype <> loadn) then
  354. begin
  355. { create a temp which will hold a pointer to the file }
  356. filetemp := ctempcreatenode.create(voidpointertype,voidpointertype.def.size,true);
  357. { add it to the statements }
  358. addstatement(newstatement,filetemp);
  359. { make sure the resulttype of the temp (and as such of the }
  360. { temprefs coming after it) is set (necessary because the }
  361. { temprefs will be part of the filepara, of which we need }
  362. { the resulttype later on and temprefs can only be }
  363. { resulttypepassed if the resulttype of the temp is known) }
  364. resulttypepass(tnode(filetemp));
  365. { assign the address of the file to the temp }
  366. addstatement(newstatement,
  367. cassignmentnode.create(ctemprefnode.create(filetemp),
  368. caddrnode.create(filepara.left)));
  369. resulttypepass(newstatement.right);
  370. { create a new fileparameter as follows: file_type(temp^) }
  371. { (so that we pass the value and not the address of the temp }
  372. { to the read/write routine) }
  373. nextpara := ccallparanode.create(ctypeconvnode.create_explicit(
  374. cderefnode.create(ctemprefnode.create(filetemp)),filepara.left.resulttype),nil);
  375. { replace the old file para with the new one }
  376. filepara.left := nil;
  377. filepara.free;
  378. filepara := nextpara;
  379. end;
  380. end;
  381. { the resulttype of the filepara must be set since it's }
  382. { used below }
  383. filepara.get_paratype;
  384. { now, filepara is nowhere referenced anymore, so we can safely dispose it }
  385. { if something goes wrong or at the end of the procedure }
  386. { choose the correct procedure prefix }
  387. procprefix := 'fpc_'+procnames[is_typed,do_read];
  388. { we're going to reuse the paranodes, so make sure they don't get freed }
  389. { twice }
  390. para := tcallparanode(left);
  391. left := nil;
  392. { no errors found yet... }
  393. found_error := false;
  394. if is_typed then
  395. begin
  396. { add the typesize to the filepara }
  397. filepara.right := ccallparanode.create(cordconstnode.create(
  398. tfiledef(filepara.resulttype.def).typedfiletype.def.size,s32bittype,true),nil);
  399. { check for "no parameters" (you need at least one extra para for typed files) }
  400. if not assigned(para) then
  401. begin
  402. CGMessage(parser_e_wrong_parameter_size);
  403. found_error := true;
  404. end;
  405. { process all parameters }
  406. while assigned(para) do
  407. begin
  408. { check if valid parameter }
  409. if para.left.nodetype=typen then
  410. begin
  411. CGMessagePos(para.left.fileinfo,type_e_cant_read_write_type);
  412. found_error := true;
  413. end;
  414. { support writeln(procvar) }
  415. if (para.left.resulttype.def.deftype=procvardef) then
  416. begin
  417. p1:=ccallnode.create(nil,nil,nil,nil);
  418. tcallnode(p1).set_procvar(para.left);
  419. resulttypepass(p1);
  420. para.left:=p1;
  421. end;
  422. if not is_equal(para.left.resulttype.def,tfiledef(filepara.resulttype.def).typedfiletype.def) then
  423. begin
  424. CGMessagePos(para.left.fileinfo,type_e_mismatch);
  425. found_error := true;
  426. end;
  427. if assigned(para.right) and
  428. (cpf_is_colon_para in tcallparanode(para.right).callparaflags) then
  429. begin
  430. CGMessagePos(para.right.fileinfo,parser_e_illegal_colon_qualifier);
  431. { skip all colon para's }
  432. nextpara := tcallparanode(tcallparanode(para.right).right);
  433. while assigned(nextpara) and
  434. (cpf_is_colon_para in nextpara.callparaflags) do
  435. nextpara := tcallparanode(nextpara.right);
  436. found_error := true;
  437. end
  438. else
  439. { get next parameter }
  440. nextpara := tcallparanode(para.right);
  441. { When we have a call, we have a problem: you can't pass the }
  442. { result of a call as a formal const parameter. Solution: }
  443. { assign the result to a temp and pass this temp as parameter }
  444. { This is not very efficient, but write(typedfile,x) is }
  445. { already slow by itself anyway (no buffering) (JM) }
  446. if (para.left.nodetype = calln) then
  447. begin
  448. { create temp for result }
  449. temp := ctempcreatenode.create(para.left.resulttype,
  450. para.left.resulttype.def.size,true);
  451. addstatement(newstatement,temp);
  452. { assign result to temp }
  453. addstatement(newstatement,
  454. cassignmentnode.create(ctemprefnode.create(temp),
  455. para.left));
  456. { replace (reused) paranode with temp }
  457. para.left := ctemprefnode.create(temp);
  458. end;
  459. { add fileparameter }
  460. para.right := filepara.getcopy;
  461. { create call statment }
  462. { since the parameters are in the correct order, we have to insert }
  463. { the statements always at the end of the current block }
  464. addstatement(newstatement,ccallnode.createintern(procprefix,para));
  465. { if we used a temp, free it }
  466. if para.left.nodetype = temprefn then
  467. addstatement(newstatement,ctempdeletenode.create(temp));
  468. { process next parameter }
  469. para := nextpara;
  470. end;
  471. { free the file parameter }
  472. filepara.free;
  473. end
  474. else
  475. { text read/write }
  476. begin
  477. while assigned(para) do
  478. begin
  479. { is this parameter faulty? }
  480. error_para := false;
  481. { is this parameter an ordinal? }
  482. is_ordinal := false;
  483. { is this parameter a real? }
  484. is_real:=false;
  485. { can't read/write types }
  486. if para.left.nodetype=typen then
  487. begin
  488. CGMessagePos(para.fileinfo,type_e_cant_read_write_type);
  489. error_para := true;
  490. end;
  491. { support writeln(procvar) }
  492. if (para.left.resulttype.def.deftype=procvardef) then
  493. begin
  494. p1:=ccallnode.create(nil,nil,nil,nil);
  495. tcallnode(p1).set_procvar(para.left);
  496. resulttypepass(p1);
  497. para.left:=p1;
  498. end;
  499. case para.left.resulttype.def.deftype of
  500. stringdef :
  501. begin
  502. name := procprefix+tstringdef(para.left.resulttype.def).stringtypname;
  503. end;
  504. pointerdef :
  505. begin
  506. if not is_pchar(para.left.resulttype.def) then
  507. begin
  508. CGMessagePos(para.fileinfo,type_e_cant_read_write_type);
  509. error_para := true;
  510. end
  511. else
  512. name := procprefix+'pchar_as_pointer';
  513. end;
  514. floatdef :
  515. begin
  516. is_real:=true;
  517. name := procprefix+'float';
  518. end;
  519. orddef :
  520. begin
  521. is_ordinal := true;
  522. case torddef(para.left.resulttype.def).typ of
  523. s8bit,s16bit,s32bit :
  524. name := procprefix+'sint';
  525. u8bit,u16bit,u32bit :
  526. name := procprefix+'uint';
  527. uchar :
  528. name := procprefix+'char';
  529. uwidechar :
  530. name := procprefix+'widechar';
  531. s64bit :
  532. name := procprefix+'int64';
  533. u64bit :
  534. name := procprefix+'qword';
  535. bool8bit,
  536. bool16bit,
  537. bool32bit :
  538. begin
  539. if do_read then
  540. begin
  541. CGMessagePos(para.fileinfo,type_e_cant_read_write_type);
  542. error_para := true;
  543. end
  544. else
  545. name := procprefix+'boolean'
  546. end
  547. else
  548. begin
  549. CGMessagePos(para.fileinfo,type_e_cant_read_write_type);
  550. error_para := true;
  551. end;
  552. end;
  553. end;
  554. variantdef :
  555. name:=procprefix+'variant';
  556. arraydef :
  557. begin
  558. if is_chararray(para.left.resulttype.def) then
  559. name := procprefix+'pchar_as_array'
  560. else
  561. begin
  562. CGMessagePos(para.fileinfo,type_e_cant_read_write_type);
  563. error_para := true;
  564. end
  565. end
  566. else
  567. begin
  568. CGMessagePos(para.fileinfo,type_e_cant_read_write_type);
  569. error_para := true;
  570. end
  571. end;
  572. { check for length/fractional colon para's }
  573. fracpara := nil;
  574. lenpara := nil;
  575. if assigned(para.right) and
  576. (cpf_is_colon_para in tcallparanode(para.right).callparaflags) then
  577. begin
  578. lenpara := tcallparanode(para.right);
  579. if assigned(lenpara.right) and
  580. (cpf_is_colon_para in tcallparanode(lenpara.right).callparaflags) then
  581. fracpara:=tcallparanode(lenpara.right);
  582. end;
  583. { get the next parameter now already, because we're going }
  584. { to muck around with the pointers }
  585. if assigned(fracpara) then
  586. nextpara := tcallparanode(fracpara.right)
  587. else if assigned(lenpara) then
  588. nextpara := tcallparanode(lenpara.right)
  589. else
  590. nextpara := tcallparanode(para.right);
  591. { check if a fracpara is allowed }
  592. if assigned(fracpara) and not is_real then
  593. begin
  594. CGMessagePos(fracpara.fileinfo,parser_e_illegal_colon_qualifier);
  595. error_para := true;
  596. end
  597. else if assigned(lenpara) and do_read then
  598. begin
  599. { I think this is already filtered out by parsing, but I'm not sure (JM) }
  600. CGMessagePos(lenpara.fileinfo,parser_e_illegal_colon_qualifier);
  601. error_para := true;
  602. end;
  603. { adjust found_error }
  604. found_error := found_error or error_para;
  605. if not error_para then
  606. begin
  607. { create dummy frac/len para's if necessary }
  608. if not do_read then
  609. begin
  610. { difference in default value for floats and the rest :( }
  611. if not is_real then
  612. begin
  613. if not assigned(lenpara) then
  614. lenpara := ccallparanode.create(
  615. cordconstnode.create(0,s32bittype,false),nil)
  616. else
  617. { make sure we don't pass the successive }
  618. { parameters too. We also already have a }
  619. { reference to the next parameter in }
  620. { nextpara }
  621. lenpara.right := nil;
  622. end
  623. else
  624. begin
  625. if not assigned(lenpara) then
  626. lenpara := ccallparanode.create(
  627. cordconstnode.create(-32767,s32bittype,false),nil);
  628. { also create a default fracpara if necessary }
  629. if not assigned(fracpara) then
  630. fracpara := ccallparanode.create(
  631. cordconstnode.create(-1,s32bittype,false),nil);
  632. { add it to the lenpara }
  633. lenpara.right := fracpara;
  634. { and add the realtype para (this also removes the link }
  635. { to any parameters coming after it) }
  636. fracpara.right := ccallparanode.create(
  637. cordconstnode.create(ord(tfloatdef(para.left.resulttype.def).typ),
  638. s32bittype,true),nil);
  639. end;
  640. end;
  641. if do_read and
  642. ((is_ordinal and
  643. (torddef(para.left.resulttype.def).typ in [s8bit,s16bit,u8bit,u16bit])
  644. ) or
  645. (is_real and
  646. not is_equal(para.left.resulttype.def,pbestrealtype^.def)
  647. )
  648. ) then
  649. { special handling of reading small numbers, because the helpers }
  650. { expect a longint/card/bestreal var parameter. Use a temp. can't }
  651. { use functions because then the call to FPC_IOCHECK destroys }
  652. { their result before we can store it }
  653. begin
  654. { get the resulttype of the var parameter of the helper }
  655. if is_real then
  656. restype := pbestrealtype
  657. else if is_signed(para.left.resulttype.def) then
  658. restype := @s32bittype
  659. else
  660. restype := @u32bittype;
  661. { create the parameter list: the temp ... }
  662. temp := ctempcreatenode.create(restype^,restype^.def.size,true);
  663. addstatement(newstatement,temp);
  664. { ... and the file }
  665. p1 := ccallparanode.create(ctemprefnode.create(temp),
  666. filepara.getcopy);
  667. { create the call to the helper }
  668. addstatement(newstatement,
  669. ccallnode.createintern(name,tcallparanode(p1)));
  670. { assign the result to the original var (this automatically }
  671. { takes care of range checking) }
  672. addstatement(newstatement,
  673. cassignmentnode.create(para.left,
  674. ctemprefnode.create(temp)));
  675. { release the temp location }
  676. addstatement(newstatement,ctempdeletenode.create(temp));
  677. { statement of para is used }
  678. para.left := nil;
  679. { free the enclosing tcallparanode, but not the }
  680. { parameters coming after it }
  681. para.right := nil;
  682. para.free;
  683. end
  684. else
  685. { read of non s/u-8/16bit, or a write }
  686. begin
  687. { add the filepara to the current parameter }
  688. para.right := filepara.getcopy;
  689. { add the lenpara (fracpara and realtype are already linked }
  690. { with it if necessary) }
  691. tcallparanode(para.right).right := lenpara;
  692. { create the call statement }
  693. addstatement(newstatement,
  694. ccallnode.createintern(name,para));
  695. end
  696. end
  697. else
  698. { error_para = true }
  699. begin
  700. { free the parameter, since it isn't referenced anywhere anymore }
  701. para.right := nil;
  702. para.free;
  703. if assigned(lenpara) then
  704. begin
  705. lenpara.right := nil;
  706. lenpara.free;
  707. end;
  708. if assigned(fracpara) then
  709. begin
  710. fracpara.right := nil;
  711. fracpara.free;
  712. end;
  713. end;
  714. { process next parameter }
  715. para := nextpara;
  716. end;
  717. { if no error, add the write(ln)/read(ln) end calls }
  718. if not found_error then
  719. begin
  720. case inlinenumber of
  721. in_read_x:
  722. name:='fpc_read_end';
  723. in_write_x:
  724. name:='fpc_write_end';
  725. in_readln_x:
  726. name:='fpc_readln_end';
  727. in_writeln_x:
  728. name:='fpc_writeln_end';
  729. end;
  730. addstatement(newstatement,ccallnode.createintern(name,filepara));
  731. end;
  732. end;
  733. { if we found an error, simply delete the generated blocknode }
  734. if found_error then
  735. newblock.free
  736. else
  737. begin
  738. { deallocate the temp for the file para if we used one }
  739. if assigned(filetemp) then
  740. addstatement(newstatement,ctempdeletenode.create(filetemp));
  741. { otherwise return the newly generated block of instructions, }
  742. { but first free the errornode we generated at the beginning }
  743. result.free;
  744. result := newblock
  745. end;
  746. end;
  747. function tinlinenode.handle_val: tnode;
  748. var
  749. procname,
  750. suffix : string[31];
  751. sourcepara,
  752. destpara,
  753. codepara,
  754. sizepara,
  755. newparas : tcallparanode;
  756. orgcode : tnode;
  757. newstatement : tstatementnode;
  758. newblock : tblocknode;
  759. tempcode : ttempcreatenode;
  760. begin
  761. { for easy exiting if something goes wrong }
  762. result := cerrornode.create;
  763. { check the amount of parameters }
  764. if not(assigned(left)) or
  765. not(assigned(tcallparanode(left).right)) then
  766. begin
  767. CGMessage(parser_e_wrong_parameter_size);
  768. exit;
  769. end;
  770. { reverse parameters for easier processing }
  771. left := reverseparameters(tcallparanode(left));
  772. { get the parameters }
  773. tempcode := nil;
  774. orgcode := nil;
  775. sizepara := nil;
  776. sourcepara := tcallparanode(left);
  777. destpara := tcallparanode(sourcepara.right);
  778. codepara := tcallparanode(destpara.right);
  779. { check if codepara is valid }
  780. if assigned(codepara) and
  781. ((codepara.resulttype.def.deftype <> orddef) or
  782. is_64bitint(codepara.resulttype.def)) then
  783. begin
  784. CGMessagePos(codepara.fileinfo,type_e_mismatch);
  785. exit;
  786. end;
  787. { check if dest para is valid }
  788. if not(destpara.resulttype.def.deftype in [orddef,floatdef]) then
  789. begin
  790. CGMessagePos(destpara.fileinfo,type_e_integer_or_real_expr_expected);
  791. exit;
  792. end;
  793. { we're going to reuse the exisiting para's, so make sure they }
  794. { won't be disposed }
  795. left := nil;
  796. { create the blocknode which will hold the generated statements + }
  797. { an initial dummy statement }
  798. newstatement := cstatementnode.create(nil,cnothingnode.create);
  799. newblock := cblocknode.create(newstatement);
  800. { do we need a temp for code? Yes, if no code specified, or if }
  801. { code is not a 32bit parameter (we already checked whether the }
  802. { the code para, if specified, was an orddef) }
  803. if not assigned(codepara) or
  804. (torddef(codepara.resulttype.def).typ in [u8bit,u16bit,s8bit,s16bit]) then
  805. begin
  806. tempcode := ctempcreatenode.create(s32bittype,4,true);
  807. newstatement.left := cstatementnode.create(nil,tempcode);
  808. newstatement := tstatementnode(newstatement.left);
  809. { set the resulttype of the temp (needed to be able to get }
  810. { the resulttype of the tempref used in the new code para) }
  811. resulttypepass(tnode(tempcode));
  812. { create a temp codepara, but save the original code para to }
  813. { assign the result to later on }
  814. if assigned(codepara) then
  815. orgcode := codepara.left
  816. else
  817. codepara := ccallparanode.create(nil,nil);
  818. codepara.left := ctemprefnode.create(tempcode);
  819. { we need its resulttype later on }
  820. codepara.get_paratype;
  821. end
  822. else if (torddef(codepara.resulttype.def).typ = u32bit) then
  823. { because code is a var parameter, it must match types exactly }
  824. { however, since it will return values in [0..255], both longints }
  825. { and cardinals are fine. Since the formal code para type is }
  826. { longint, insert a typecoversion to longint for cardinal para's }
  827. begin
  828. codepara.left := ctypeconvnode.create(codepara.left,s32bittype);
  829. { make it explicit, oterwise you may get a nonsense range }
  830. { check error if the cardinal already contained a value }
  831. { > $7fffffff }
  832. codepara.left.toggleflag(nf_explizit);
  833. codepara.get_paratype;
  834. end;
  835. { create the procedure name }
  836. procname := 'fpc_val_';
  837. case destpara.resulttype.def.deftype of
  838. orddef:
  839. begin
  840. case torddef(destpara.resulttype.def).typ of
  841. s8bit,s16bit,s32bit:
  842. begin
  843. suffix := 'sint_';
  844. { we also need a destsize para in this case }
  845. sizepara := ccallparanode.create(cordconstnode.create
  846. (destpara.resulttype.def.size,s32bittype,true),nil);
  847. end;
  848. u8bit,u16bit,u32bit:
  849. suffix := 'uint_';
  850. s64bit: suffix := 'int64_';
  851. u64bit: suffix := 'qword_';
  852. end;
  853. end;
  854. floatdef:
  855. begin
  856. suffix := 'real_';
  857. end;
  858. end;
  859. procname := procname + suffix;
  860. { play a trick to have tcallnode handle invalid source parameters: }
  861. { the shortstring-longint val routine by default }
  862. if (sourcepara.resulttype.def.deftype = stringdef) then
  863. procname := procname + tstringdef(sourcepara.resulttype.def).stringtypname
  864. else procname := procname + 'shortstr';
  865. { set up the correct parameters for the call: the code para... }
  866. newparas := codepara;
  867. { and the source para }
  868. codepara.right := sourcepara;
  869. { sizepara either contains nil if none is needed (which is ok, since }
  870. { then the next statement severes any possible links with other paras }
  871. { that sourcepara may have) or it contains the necessary size para and }
  872. { its right field is nil }
  873. sourcepara.right := sizepara;
  874. { create the call and assign the result to dest }
  875. { (val helpers are functions) }
  876. { the assignment will take care of rangechecking }
  877. newstatement.left := cstatementnode.create(nil,cassignmentnode.create(
  878. destpara.left,ccallnode.createintern(procname,newparas)));
  879. newstatement := tstatementnode(newstatement.left);
  880. { dispose of the enclosing paranode of the destination }
  881. destpara.left := nil;
  882. destpara.right := nil;
  883. destpara.free;
  884. { check if we used a temp for code and whether we have to store }
  885. { it to the real code parameter }
  886. if assigned(orgcode) then
  887. begin
  888. newstatement.left := cstatementnode.create(nil,cassignmentnode.create(
  889. orgcode,ctemprefnode.create(tempcode)));
  890. newstatement := tstatementnode(newstatement.left);
  891. end;
  892. { release the temp if we allocated one }
  893. if assigned(tempcode) then
  894. begin
  895. newstatement.left := cstatementnode.create(nil,
  896. ctempdeletenode.create(tempcode));
  897. newstatement := tstatementnode(newstatement.left);
  898. end;
  899. { free the errornode }
  900. result.free;
  901. { and return it }
  902. result := newblock;
  903. end;
  904. {$ifdef fpc}
  905. {$maxfpuregisters 0}
  906. {$endif fpc}
  907. function tinlinenode.det_resulttype:tnode;
  908. function do_lowhigh(const t:ttype) : tnode;
  909. var
  910. v : tconstexprint;
  911. enum : tenumsym;
  912. hp : tnode;
  913. begin
  914. case t.def.deftype of
  915. orddef:
  916. begin
  917. if inlinenumber=in_low_x then
  918. v:=torddef(t.def).low
  919. else
  920. v:=torddef(t.def).high;
  921. { low/high of torddef are longints, so we need special }
  922. { handling for cardinal and 64bit types (JM) }
  923. { 1.0.x doesn't support int64($ffffffff) correct, it'll expand
  924. to -1 instead of staying $ffffffff. Therefor we use $ffff with
  925. shl twice (PFV) }
  926. if is_signed(t.def) and
  927. is_64bitint(t.def) then
  928. if (inlinenumber=in_low_x) then
  929. v := int64($80000000) shl 32
  930. else
  931. v := (int64($7fffffff) shl 32) or int64($ffff) shl 16 or int64($ffff)
  932. else
  933. if is_64bitint(t.def) then
  934. { we have to use a dirty trick for high(qword), }
  935. { because it's bigger than high(tconstexprint) (JM) }
  936. v := 0
  937. else
  938. if not is_signed(t.def) then
  939. v := cardinal(v);
  940. hp:=cordconstnode.create(v,t,true);
  941. resulttypepass(hp);
  942. { fix high(qword) }
  943. if not is_signed(t.def) and
  944. is_64bitint(t.def) and
  945. (inlinenumber = in_high_x) then
  946. tordconstnode(hp).value := -1; { is the same as qword($ffffffffffffffff) }
  947. do_lowhigh:=hp;
  948. end;
  949. enumdef:
  950. begin
  951. enum:=tenumsym(tenumdef(t.def).firstenum);
  952. v:=tenumdef(t.def).maxval;
  953. if inlinenumber=in_high_x then
  954. while assigned(enum) and (enum.value <> v) do
  955. enum:=enum.nextenum;
  956. if not assigned(enum) then
  957. internalerror(309993)
  958. else
  959. hp:=genenumnode(enum);
  960. do_lowhigh:=hp;
  961. end;
  962. else
  963. internalerror(87);
  964. end;
  965. end;
  966. function getconstrealvalue : bestreal;
  967. begin
  968. case left.nodetype of
  969. ordconstn:
  970. getconstrealvalue:=tordconstnode(left).value;
  971. realconstn:
  972. getconstrealvalue:=trealconstnode(left).value_real;
  973. else
  974. internalerror(309992);
  975. end;
  976. end;
  977. procedure setconstrealvalue(r : bestreal);
  978. begin
  979. result:=crealconstnode.create(r,pbestrealtype^);
  980. end;
  981. var
  982. vl,vl2 : TConstExprInt;
  983. vr : bestreal;
  984. hp : tnode;
  985. srsym : tsym;
  986. isreal : boolean;
  987. checkrange : boolean;
  988. label
  989. myexit;
  990. begin
  991. result:=nil;
  992. { if we handle writeln; left contains no valid address }
  993. if assigned(left) then
  994. begin
  995. if left.nodetype=callparan then
  996. tcallparanode(left).get_paratype
  997. else
  998. resulttypepass(left);
  999. end;
  1000. inc(parsing_para_level);
  1001. { handle intern constant functions in separate case }
  1002. if nf_inlineconst in flags then
  1003. begin
  1004. { no parameters? }
  1005. if not assigned(left) then
  1006. begin
  1007. case inlinenumber of
  1008. in_const_pi :
  1009. hp:=crealconstnode.create(pi,pbestrealtype^);
  1010. else
  1011. internalerror(89);
  1012. end;
  1013. end
  1014. else
  1015. begin
  1016. vl:=0;
  1017. vl2:=0; { second parameter Ex: ptr(vl,vl2) }
  1018. vr:=0;
  1019. isreal:=false;
  1020. case left.nodetype of
  1021. realconstn :
  1022. begin
  1023. isreal:=true;
  1024. vr:=trealconstnode(left).value_real;
  1025. end;
  1026. ordconstn :
  1027. vl:=tordconstnode(left).value;
  1028. callparan :
  1029. begin
  1030. { both exists, else it was not generated }
  1031. vl:=tordconstnode(tcallparanode(left).left).value;
  1032. vl2:=tordconstnode(tcallparanode(tcallparanode(left).right).left).value;
  1033. end;
  1034. else
  1035. CGMessage(cg_e_illegal_expression);
  1036. end;
  1037. case inlinenumber of
  1038. in_const_trunc :
  1039. begin
  1040. if isreal then
  1041. begin
  1042. if (vr>=2147483648.0) or (vr<=-2147483649.0) then
  1043. begin
  1044. CGMessage(parser_e_range_check_error);
  1045. hp:=cordconstnode.create(1,s32bittype,false)
  1046. end
  1047. else
  1048. hp:=cordconstnode.create(trunc(vr),s32bittype,true)
  1049. end
  1050. else
  1051. hp:=cordconstnode.create(trunc(vl),s32bittype,true);
  1052. end;
  1053. in_const_round :
  1054. begin
  1055. if isreal then
  1056. begin
  1057. if (vr>=2147483647.5) or (vr<=-2147483648.5) then
  1058. begin
  1059. CGMessage(parser_e_range_check_error);
  1060. hp:=cordconstnode.create(1,s32bittype,false)
  1061. end
  1062. else
  1063. hp:=cordconstnode.create(round(vr),s32bittype,true)
  1064. end
  1065. else
  1066. hp:=cordconstnode.create(round(vl),s32bittype,true);
  1067. end;
  1068. in_const_frac :
  1069. begin
  1070. if isreal then
  1071. hp:=crealconstnode.create(frac(vr),pbestrealtype^)
  1072. else
  1073. hp:=crealconstnode.create(frac(vl),pbestrealtype^);
  1074. end;
  1075. in_const_int :
  1076. begin
  1077. if isreal then
  1078. hp:=crealconstnode.create(int(vr),pbestrealtype^)
  1079. else
  1080. hp:=crealconstnode.create(int(vl),pbestrealtype^);
  1081. end;
  1082. in_const_abs :
  1083. begin
  1084. if isreal then
  1085. hp:=crealconstnode.create(abs(vr),pbestrealtype^)
  1086. else
  1087. hp:=cordconstnode.create(abs(vl),left.resulttype,true);
  1088. end;
  1089. in_const_sqr :
  1090. begin
  1091. if isreal then
  1092. hp:=crealconstnode.create(sqr(vr),pbestrealtype^)
  1093. else
  1094. hp:=cordconstnode.create(sqr(vl),left.resulttype,true);
  1095. end;
  1096. in_const_odd :
  1097. begin
  1098. if isreal then
  1099. CGMessage1(type_e_integer_expr_expected,left.resulttype.def.typename)
  1100. else
  1101. hp:=cordconstnode.create(byte(odd(vl)),booltype,true);
  1102. end;
  1103. in_const_swap_word :
  1104. begin
  1105. if isreal then
  1106. CGMessage1(type_e_integer_expr_expected,left.resulttype.def.typename)
  1107. else
  1108. hp:=cordconstnode.create((vl and $ff) shl 8+(vl shr 8),left.resulttype,true);
  1109. end;
  1110. in_const_swap_long :
  1111. begin
  1112. if isreal then
  1113. CGMessage(type_e_mismatch)
  1114. else
  1115. hp:=cordconstnode.create((vl and $ffff) shl 16+(vl shr 16),left.resulttype,true);
  1116. end;
  1117. in_const_swap_qword :
  1118. begin
  1119. if isreal then
  1120. CGMessage(type_e_mismatch)
  1121. else
  1122. hp:=cordconstnode.create((vl and $ffff) shl 32+(vl shr 32),left.resulttype,true);
  1123. end;
  1124. in_const_ptr :
  1125. begin
  1126. if isreal then
  1127. CGMessage(type_e_mismatch)
  1128. else
  1129. hp:=cpointerconstnode.create((vl2 shl 4)+vl,voidfarpointertype);
  1130. end;
  1131. in_const_sqrt :
  1132. begin
  1133. if isreal then
  1134. begin
  1135. if vr<0.0 then
  1136. CGMessage(type_e_wrong_math_argument)
  1137. else
  1138. hp:=crealconstnode.create(sqrt(vr),pbestrealtype^)
  1139. end
  1140. else
  1141. begin
  1142. if vl<0 then
  1143. CGMessage(type_e_wrong_math_argument)
  1144. else
  1145. hp:=crealconstnode.create(sqrt(vl),pbestrealtype^);
  1146. end;
  1147. end;
  1148. in_const_arctan :
  1149. begin
  1150. if isreal then
  1151. hp:=crealconstnode.create(arctan(vr),pbestrealtype^)
  1152. else
  1153. hp:=crealconstnode.create(arctan(vl),pbestrealtype^);
  1154. end;
  1155. in_const_cos :
  1156. begin
  1157. if isreal then
  1158. hp:=crealconstnode.create(cos(vr),pbestrealtype^)
  1159. else
  1160. hp:=crealconstnode.create(cos(vl),pbestrealtype^);
  1161. end;
  1162. in_const_sin :
  1163. begin
  1164. if isreal then
  1165. hp:=crealconstnode.create(sin(vr),pbestrealtype^)
  1166. else
  1167. hp:=crealconstnode.create(sin(vl),pbestrealtype^);
  1168. end;
  1169. in_const_exp :
  1170. begin
  1171. if isreal then
  1172. hp:=crealconstnode.create(exp(vr),pbestrealtype^)
  1173. else
  1174. hp:=crealconstnode.create(exp(vl),pbestrealtype^);
  1175. end;
  1176. in_const_ln :
  1177. begin
  1178. if isreal then
  1179. begin
  1180. if vr<=0.0 then
  1181. CGMessage(type_e_wrong_math_argument)
  1182. else
  1183. hp:=crealconstnode.create(ln(vr),pbestrealtype^)
  1184. end
  1185. else
  1186. begin
  1187. if vl<=0 then
  1188. CGMessage(type_e_wrong_math_argument)
  1189. else
  1190. hp:=crealconstnode.create(ln(vl),pbestrealtype^);
  1191. end;
  1192. end;
  1193. else
  1194. internalerror(88);
  1195. end;
  1196. end;
  1197. if hp=nil then
  1198. hp:=tnode.create(errorn);
  1199. result:=hp;
  1200. goto myexit;
  1201. end
  1202. else
  1203. begin
  1204. case inlinenumber of
  1205. in_lo_long,
  1206. in_hi_long,
  1207. in_lo_qword,
  1208. in_hi_qword,
  1209. in_lo_word,
  1210. in_hi_word :
  1211. begin
  1212. { give warning for incompatibility with tp and delphi }
  1213. if (inlinenumber in [in_lo_long,in_hi_long,in_lo_qword,in_hi_qword]) and
  1214. ((m_tp7 in aktmodeswitches) or
  1215. (m_delphi in aktmodeswitches)) then
  1216. CGMessage(type_w_maybe_wrong_hi_lo);
  1217. { constant folding }
  1218. if left.nodetype=ordconstn then
  1219. begin
  1220. case inlinenumber of
  1221. in_lo_word :
  1222. hp:=cordconstnode.create(tordconstnode(left).value and $ff,left.resulttype,true);
  1223. in_hi_word :
  1224. hp:=cordconstnode.create(tordconstnode(left).value shr 8,left.resulttype,true);
  1225. in_lo_long :
  1226. hp:=cordconstnode.create(tordconstnode(left).value and $ffff,left.resulttype,true);
  1227. in_hi_long :
  1228. hp:=cordconstnode.create(tordconstnode(left).value shr 16,left.resulttype,true);
  1229. in_lo_qword :
  1230. hp:=cordconstnode.create(tordconstnode(left).value and $ffffffff,left.resulttype,true);
  1231. in_hi_qword :
  1232. hp:=cordconstnode.create(tordconstnode(left).value shr 32,left.resulttype,true);
  1233. end;
  1234. result:=hp;
  1235. goto myexit;
  1236. end;
  1237. set_varstate(left,true);
  1238. if not is_integer(left.resulttype.def) then
  1239. CGMessage(type_e_mismatch);
  1240. case inlinenumber of
  1241. in_lo_word,
  1242. in_hi_word :
  1243. resulttype:=u8bittype;
  1244. in_lo_long,
  1245. in_hi_long :
  1246. resulttype:=u16bittype;
  1247. in_lo_qword,
  1248. in_hi_qword :
  1249. resulttype:=u32bittype;
  1250. end;
  1251. end;
  1252. in_sizeof_x:
  1253. begin
  1254. set_varstate(left,false);
  1255. resulttype:=s32bittype;
  1256. end;
  1257. in_typeof_x:
  1258. begin
  1259. set_varstate(left,false);
  1260. resulttype:=voidpointertype;
  1261. end;
  1262. in_ord_x:
  1263. begin
  1264. if (left.nodetype=ordconstn) then
  1265. begin
  1266. hp:=cordconstnode.create(
  1267. tordconstnode(left).value,s32bittype,true);
  1268. result:=hp;
  1269. goto myexit;
  1270. end;
  1271. set_varstate(left,true);
  1272. case left.resulttype.def.deftype of
  1273. orddef :
  1274. begin
  1275. case torddef(left.resulttype.def).typ of
  1276. bool8bit,
  1277. uchar:
  1278. begin
  1279. { change to byte() }
  1280. hp:=ctypeconvnode.create(left,u8bittype);
  1281. left:=nil;
  1282. include(hp.flags,nf_explizit);
  1283. result:=hp;
  1284. end;
  1285. bool16bit,
  1286. uwidechar :
  1287. begin
  1288. { change to word() }
  1289. hp:=ctypeconvnode.create(left,u16bittype);
  1290. left:=nil;
  1291. include(hp.flags,nf_explizit);
  1292. result:=hp;
  1293. end;
  1294. bool32bit :
  1295. begin
  1296. { change to dword() }
  1297. hp:=ctypeconvnode.create(left,u32bittype);
  1298. left:=nil;
  1299. include(hp.flags,nf_explizit);
  1300. result:=hp;
  1301. end;
  1302. uvoid :
  1303. CGMessage(type_e_mismatch)
  1304. else
  1305. begin
  1306. { all other orddef need no transformation }
  1307. hp:=left;
  1308. left:=nil;
  1309. result:=hp;
  1310. end;
  1311. end;
  1312. end;
  1313. enumdef :
  1314. begin
  1315. hp:=ctypeconvnode.create(left,s32bittype);
  1316. left:=nil;
  1317. include(hp.flags,nf_explizit);
  1318. result:=hp;
  1319. end;
  1320. else
  1321. CGMessage(type_e_mismatch);
  1322. end;
  1323. end;
  1324. in_chr_byte:
  1325. begin
  1326. { convert to explicit char() }
  1327. set_varstate(left,true);
  1328. hp:=ctypeconvnode.create(left,cchartype);
  1329. include(hp.flags,nf_explizit);
  1330. left:=nil;
  1331. result:=hp;
  1332. end;
  1333. in_length_x:
  1334. begin
  1335. set_varstate(left,true);
  1336. case left.resulttype.def.deftype of
  1337. stringdef :
  1338. begin
  1339. { we don't need string convertions here }
  1340. if (left.nodetype=typeconvn) and
  1341. (ttypeconvnode(left).left.resulttype.def.deftype=stringdef) then
  1342. begin
  1343. hp:=ttypeconvnode(left).left;
  1344. ttypeconvnode(left).left:=nil;
  1345. left.free;
  1346. left:=hp;
  1347. end;
  1348. { evaluates length of constant strings direct }
  1349. if (left.nodetype=stringconstn) then
  1350. begin
  1351. hp:=cordconstnode.create(
  1352. tstringconstnode(left).len,s32bittype,true);
  1353. result:=hp;
  1354. goto myexit;
  1355. end;
  1356. end;
  1357. orddef :
  1358. begin
  1359. { length of char is one allways }
  1360. if is_char(left.resulttype.def) or
  1361. is_widechar(left.resulttype.def) then
  1362. begin
  1363. hp:=cordconstnode.create(1,s32bittype,false);
  1364. result:=hp;
  1365. goto myexit;
  1366. end
  1367. else
  1368. CGMessage(type_e_mismatch);
  1369. end;
  1370. pointerdef :
  1371. begin
  1372. if is_pchar(left.resulttype.def) then
  1373. begin
  1374. hp := ccallparanode.create(left,nil);
  1375. result := ccallnode.createintern('fpc_pchar_length',hp);
  1376. { make sure the left node doesn't get disposed, since it's }
  1377. { reused in the new node (JM) }
  1378. left:=nil;
  1379. goto myexit;
  1380. end
  1381. else if is_pwidechar(left.resulttype.def) then
  1382. begin
  1383. hp := ccallparanode.create(left,nil);
  1384. result := ccallnode.createintern('fpc_pwidechar_length',hp);
  1385. { make sure the left node doesn't get disposed, since it's }
  1386. { reused in the new node (JM) }
  1387. left:=nil;
  1388. goto myexit;
  1389. end
  1390. else
  1391. CGMessage(type_e_mismatch);
  1392. end;
  1393. arraydef :
  1394. begin
  1395. if is_open_array(left.resulttype.def) or
  1396. is_array_of_const(left.resulttype.def) then
  1397. begin
  1398. srsym:=searchsymonlyin(tloadnode(left).symtable,'high'+tvarsym(tloadnode(left).symtableentry).name);
  1399. if not assigned(srsym) then
  1400. begin
  1401. CGMessage(cg_e_illegal_expression);
  1402. goto myexit;
  1403. end;
  1404. hp:=caddnode.create(addn,cloadnode.create(srsym,tloadnode(left).symtable),
  1405. cordconstnode.create(1,s32bittype,false));
  1406. result:=hp;
  1407. goto myexit;
  1408. end
  1409. else
  1410. if not is_dynamic_array(left.resulttype.def) then
  1411. begin
  1412. hp:=cordconstnode.create(tarraydef(left.resulttype.def).highrange-
  1413. tarraydef(left.resulttype.def).lowrange+1,
  1414. s32bittype,true);
  1415. result:=hp;
  1416. goto myexit;
  1417. end
  1418. else
  1419. begin
  1420. hp := ccallparanode.create(ctypeconvnode.create_explicit(left,voidpointertype),nil);
  1421. result := ccallnode.createintern('fpc_dynarray_length',hp);
  1422. { make sure the left node doesn't get disposed, since it's }
  1423. { reused in the new node (JM) }
  1424. left:=nil;
  1425. goto myexit;
  1426. end;
  1427. end;
  1428. else
  1429. CGMessage(type_e_mismatch);
  1430. end;
  1431. { shortstring return an 8 bit value as the length
  1432. is the first byte of the string }
  1433. if is_shortstring(left.resulttype.def) then
  1434. resulttype:=u8bittype
  1435. else
  1436. resulttype:=s32bittype;
  1437. end;
  1438. in_typeinfo_x:
  1439. begin
  1440. set_varstate(left,true);
  1441. resulttype:=voidpointertype;
  1442. end;
  1443. in_assigned_x:
  1444. begin
  1445. {
  1446. result := caddnode.create(unequaln,
  1447. ctypeconvnode.create_explicit(tcallparanode(left).left,
  1448. voidpointertype),cnilnode.create);
  1449. }
  1450. result := caddnode.create(unequaln,tcallparanode(left).left,
  1451. cnilnode.create);
  1452. tcallparanode(left).left := nil;
  1453. { free left, because otherwise some code at 'myexit' tries }
  1454. { to run get_paratype for it, which crashes since left.left }
  1455. { is now nil }
  1456. left.free;
  1457. left := nil;
  1458. resulttypepass(result);
  1459. goto myexit;
  1460. end;
  1461. in_ofs_x :
  1462. internalerror(2000101001);
  1463. in_seg_x :
  1464. begin
  1465. set_varstate(left,false);
  1466. hp:=cordconstnode.create(0,s32bittype,false);
  1467. result:=hp;
  1468. goto myexit;
  1469. end;
  1470. in_pred_x,
  1471. in_succ_x:
  1472. begin
  1473. set_varstate(left,true);
  1474. resulttype:=left.resulttype;
  1475. if not is_ordinal(resulttype.def) then
  1476. CGMessage(type_e_ordinal_expr_expected)
  1477. else
  1478. begin
  1479. if (resulttype.def.deftype=enumdef) and
  1480. (tenumdef(resulttype.def).has_jumps) then
  1481. CGMessage(type_e_succ_and_pred_enums_with_assign_not_possible);
  1482. end;
  1483. { only if the result is an enum do we do range checking }
  1484. if (resulttype.def.deftype=enumdef) then
  1485. checkrange := true
  1486. else
  1487. checkrange := false;
  1488. { do constant folding after check for jumps }
  1489. if left.nodetype=ordconstn then
  1490. begin
  1491. if inlinenumber=in_succ_x then
  1492. hp:=cordconstnode.create(tordconstnode(left).value+1,left.resulttype,checkrange)
  1493. else
  1494. hp:=cordconstnode.create(tordconstnode(left).value-1,left.resulttype,checkrange);
  1495. result:=hp;
  1496. end;
  1497. end;
  1498. in_finalize_x,
  1499. in_setlength_x:
  1500. begin
  1501. { inlined from pinline }
  1502. internalerror(200204231);
  1503. end;
  1504. in_inc_x,
  1505. in_dec_x:
  1506. begin
  1507. resulttype:=voidtype;
  1508. if assigned(left) then
  1509. begin
  1510. set_varstate(left,true);
  1511. if codegenerror then
  1512. exit;
  1513. { first param must be var }
  1514. valid_for_var(tcallparanode(left).left);
  1515. if (left.resulttype.def.deftype in [enumdef,pointerdef]) or
  1516. is_ordinal(left.resulttype.def) then
  1517. begin
  1518. { value of left gets changed -> must be unique }
  1519. { (bug 1735) (JM) }
  1520. set_unique(tcallparanode(left).left);
  1521. { two paras ? }
  1522. if assigned(tcallparanode(left).right) then
  1523. begin
  1524. if (aktlocalswitches *
  1525. [cs_check_overflow,cs_check_range] = []) then
  1526. begin
  1527. { insert a type conversion }
  1528. { the second param is always longint }
  1529. if is_64bitint(left.resulttype.def) then
  1530. if is_signed(left.resulttype.def) then
  1531. inserttypeconv(tcallparanode(tcallparanode(left).right).left,cs64bittype)
  1532. else
  1533. inserttypeconv(tcallparanode(tcallparanode(left).right).left,cu64bittype)
  1534. else
  1535. if is_signed(left.resulttype.def) then
  1536. inserttypeconv(tcallparanode(tcallparanode(left).right).left,s32bittype)
  1537. else
  1538. inserttypeconv(tcallparanode(tcallparanode(left).right).left,u32bittype);
  1539. end;
  1540. if assigned(tcallparanode(tcallparanode(left).right).right) then
  1541. CGMessage(cg_e_illegal_expression);
  1542. end;
  1543. end
  1544. else
  1545. CGMessage(type_e_ordinal_expr_expected);
  1546. end
  1547. else
  1548. CGMessage(type_e_mismatch);
  1549. end;
  1550. in_read_x,
  1551. in_readln_x,
  1552. in_write_x,
  1553. in_writeln_x :
  1554. begin
  1555. result := handle_read_write;
  1556. end;
  1557. in_settextbuf_file_x :
  1558. begin
  1559. resulttype:=voidtype;
  1560. { now we know the type of buffer }
  1561. srsym:=searchsymonlyin(systemunit,'SETTEXTBUF');
  1562. hp:=ccallparanode.create(cordconstnode.create(
  1563. tcallparanode(left).left.resulttype.def.size,s32bittype,true),left);
  1564. hp:=ccallnode.create(hp,tprocsym(srsym),systemunit,nil);
  1565. left:=nil;
  1566. result:=hp;
  1567. end;
  1568. { the firstpass of the arg has been done in firstcalln ? }
  1569. in_reset_typedfile,
  1570. in_rewrite_typedfile :
  1571. begin
  1572. result := handle_reset_rewrite_typed;
  1573. end;
  1574. in_str_x_string :
  1575. begin
  1576. result := handle_str;
  1577. end;
  1578. in_val_x :
  1579. begin
  1580. result := handle_val;
  1581. end;
  1582. in_include_x_y,
  1583. in_exclude_x_y:
  1584. begin
  1585. resulttype:=voidtype;
  1586. { the parser already checks whether we have two (and exectly two) }
  1587. { parameters (JM) }
  1588. set_varstate(left,true);
  1589. { first param must be var }
  1590. valid_for_var(tcallparanode(left).left);
  1591. { check type }
  1592. if (left.resulttype.def.deftype=setdef) then
  1593. begin
  1594. { insert a type conversion }
  1595. { to the type of the set elements }
  1596. inserttypeconv(tcallparanode(tcallparanode(left).right).left,
  1597. tsetdef(left.resulttype.def).elementtype);
  1598. end
  1599. else
  1600. CGMessage(type_e_mismatch);
  1601. end;
  1602. in_low_x,
  1603. in_high_x:
  1604. begin
  1605. set_varstate(left,false);
  1606. case left.resulttype.def.deftype of
  1607. orddef,
  1608. enumdef:
  1609. begin
  1610. result:=do_lowhigh(left.resulttype);
  1611. end;
  1612. setdef:
  1613. begin
  1614. result:=do_lowhigh(tsetdef(left.resulttype.def).elementtype);
  1615. end;
  1616. arraydef:
  1617. begin
  1618. if inlinenumber=in_low_x then
  1619. begin
  1620. result:=cordconstnode.create(tarraydef(
  1621. left.resulttype.def).lowrange,tarraydef(left.resulttype.def).rangetype,true);
  1622. end
  1623. else
  1624. begin
  1625. if is_open_array(left.resulttype.def) or
  1626. is_array_of_const(left.resulttype.def) then
  1627. begin
  1628. srsym:=searchsymonlyin(tloadnode(left).symtable,'high'+tvarsym(tloadnode(left).symtableentry).name);
  1629. result:=cloadnode.create(srsym,tloadnode(left).symtable);
  1630. end
  1631. else
  1632. if is_dynamic_array(left.resulttype.def) then
  1633. begin
  1634. { can't use inserttypeconv because we need }
  1635. { an explicit type conversion (JM) }
  1636. hp := ctypeconvnode.create(left,voidpointertype);
  1637. hp.toggleflag(nf_explizit);
  1638. hp := ccallparanode.create(hp,nil);
  1639. result := ccallnode.createintern('fpc_dynarray_high',hp);
  1640. { make sure the left node doesn't get disposed, since it's }
  1641. { reused in the new node (JM) }
  1642. left:=nil;
  1643. end
  1644. else
  1645. begin
  1646. result:=cordconstnode.create(tarraydef(
  1647. left.resulttype.def).highrange,tarraydef(left.resulttype.def).rangetype,true);
  1648. end;
  1649. end;
  1650. resulttypepass(result);
  1651. end;
  1652. stringdef:
  1653. begin
  1654. if inlinenumber=in_low_x then
  1655. begin
  1656. hp:=cordconstnode.create(0,u8bittype,false);
  1657. resulttypepass(hp);
  1658. result:=hp;
  1659. end
  1660. else
  1661. begin
  1662. if is_open_string(left.resulttype.def) then
  1663. begin
  1664. srsym:=searchsymonlyin(tloadnode(left).symtable,'high'+tvarsym(tloadnode(left).symtableentry).name);
  1665. hp:=cloadnode.create(srsym,tloadnode(left).symtable);
  1666. resulttypepass(hp);
  1667. result:=hp;
  1668. end
  1669. else
  1670. begin
  1671. hp:=cordconstnode.create(tstringdef(left.resulttype.def).len,u8bittype,true);
  1672. resulttypepass(hp);
  1673. result:=hp;
  1674. end;
  1675. end;
  1676. end;
  1677. else
  1678. CGMessage(type_e_mismatch);
  1679. end;
  1680. end;
  1681. in_pi:
  1682. begin
  1683. if block_type=bt_const then
  1684. setconstrealvalue(pi)
  1685. else
  1686. resulttype:=pbestrealtype^;
  1687. end;
  1688. in_cos_extended :
  1689. begin
  1690. if left.nodetype in [ordconstn,realconstn] then
  1691. setconstrealvalue(cos(getconstrealvalue))
  1692. else
  1693. begin
  1694. set_varstate(left,true);
  1695. inserttypeconv(left,pbestrealtype^);
  1696. resulttype:=pbestrealtype^;
  1697. end;
  1698. end;
  1699. in_sin_extended :
  1700. begin
  1701. if left.nodetype in [ordconstn,realconstn] then
  1702. setconstrealvalue(sin(getconstrealvalue))
  1703. else
  1704. begin
  1705. set_varstate(left,true);
  1706. inserttypeconv(left,pbestrealtype^);
  1707. resulttype:=pbestrealtype^;
  1708. end;
  1709. end;
  1710. in_arctan_extended :
  1711. begin
  1712. if left.nodetype in [ordconstn,realconstn] then
  1713. setconstrealvalue(arctan(getconstrealvalue))
  1714. else
  1715. begin
  1716. set_varstate(left,true);
  1717. inserttypeconv(left,pbestrealtype^);
  1718. resulttype:=pbestrealtype^;
  1719. end;
  1720. end;
  1721. in_abs_extended :
  1722. begin
  1723. if left.nodetype in [ordconstn,realconstn] then
  1724. setconstrealvalue(abs(getconstrealvalue))
  1725. else
  1726. begin
  1727. set_varstate(left,true);
  1728. inserttypeconv(left,pbestrealtype^);
  1729. resulttype:=pbestrealtype^;
  1730. end;
  1731. end;
  1732. in_sqr_extended :
  1733. begin
  1734. if left.nodetype in [ordconstn,realconstn] then
  1735. setconstrealvalue(sqr(getconstrealvalue))
  1736. else
  1737. begin
  1738. set_varstate(left,true);
  1739. inserttypeconv(left,pbestrealtype^);
  1740. resulttype:=pbestrealtype^;
  1741. end;
  1742. end;
  1743. in_sqrt_extended :
  1744. begin
  1745. if left.nodetype in [ordconstn,realconstn] then
  1746. begin
  1747. vr:=getconstrealvalue;
  1748. if vr<0.0 then
  1749. begin
  1750. CGMessage(type_e_wrong_math_argument);
  1751. setconstrealvalue(0);
  1752. end
  1753. else
  1754. setconstrealvalue(sqrt(vr));
  1755. end
  1756. else
  1757. begin
  1758. set_varstate(left,true);
  1759. inserttypeconv(left,pbestrealtype^);
  1760. resulttype:=pbestrealtype^;
  1761. end;
  1762. end;
  1763. in_ln_extended :
  1764. begin
  1765. if left.nodetype in [ordconstn,realconstn] then
  1766. begin
  1767. vr:=getconstrealvalue;
  1768. if vr<=0.0 then
  1769. begin
  1770. CGMessage(type_e_wrong_math_argument);
  1771. setconstrealvalue(0);
  1772. end
  1773. else
  1774. setconstrealvalue(ln(vr));
  1775. end
  1776. else
  1777. begin
  1778. set_varstate(left,true);
  1779. inserttypeconv(left,pbestrealtype^);
  1780. resulttype:=pbestrealtype^;
  1781. end;
  1782. end;
  1783. {$ifdef SUPPORT_MMX}
  1784. in_mmx_pcmpeqb..in_mmx_pcmpgtw:
  1785. begin
  1786. end;
  1787. {$endif SUPPORT_MMX}
  1788. in_assert_x_y :
  1789. begin
  1790. resulttype:=voidtype;
  1791. if assigned(left) then
  1792. begin
  1793. set_varstate(left,true);
  1794. { check type }
  1795. if is_boolean(left.resulttype.def) then
  1796. begin
  1797. { must always be a string }
  1798. inserttypeconv(tcallparanode(tcallparanode(left).right).left,cshortstringtype);
  1799. end
  1800. else
  1801. CGMessage(type_e_mismatch);
  1802. end
  1803. else
  1804. CGMessage(type_e_mismatch);
  1805. end;
  1806. else
  1807. internalerror(8);
  1808. end;
  1809. end;
  1810. myexit:
  1811. { Run get_paratype again to update maybe inserted typeconvs }
  1812. if not codegenerror then
  1813. begin
  1814. if assigned(left) and
  1815. (left.nodetype=callparan) then
  1816. tcallparanode(left).get_paratype;
  1817. end;
  1818. dec(parsing_para_level);
  1819. end;
  1820. function tinlinenode.pass_1 : tnode;
  1821. var
  1822. srsym : tsym;
  1823. hp,hpp : tnode;
  1824. shiftconst: longint;
  1825. begin
  1826. result:=nil;
  1827. { if we handle writeln; left contains no valid address }
  1828. if assigned(left) then
  1829. begin
  1830. if left.nodetype=callparan then
  1831. tcallparanode(left).firstcallparan(nil,false)
  1832. else
  1833. firstpass(left);
  1834. left_max;
  1835. location.loc:=left.location.loc;
  1836. end;
  1837. inc(parsing_para_level);
  1838. { intern const should already be handled }
  1839. if nf_inlineconst in flags then
  1840. internalerror(200104044);
  1841. case inlinenumber of
  1842. in_lo_qword,
  1843. in_hi_qword,
  1844. in_lo_long,
  1845. in_hi_long,
  1846. in_lo_word,
  1847. in_hi_word:
  1848. begin
  1849. shiftconst := 0;
  1850. case inlinenumber of
  1851. in_hi_qword:
  1852. shiftconst := 32;
  1853. in_hi_long:
  1854. shiftconst := 16;
  1855. in_hi_word:
  1856. shiftconst := 8;
  1857. end;
  1858. if shiftconst <> 0 then
  1859. result := ctypeconvnode.create(cshlshrnode.create(shrn,left,
  1860. cordconstnode.create(shiftconst,u32bittype,false)),resulttype)
  1861. else
  1862. result := ctypeconvnode.create(left,resulttype);
  1863. left := nil;
  1864. include(result.flags,nf_explizit);
  1865. firstpass(result);
  1866. end;
  1867. in_sizeof_x:
  1868. begin
  1869. if paramanager.push_high_param(left.resulttype.def,aktprocdef.proccalloption) then
  1870. begin
  1871. srsym:=searchsymonlyin(tloadnode(left).symtable,'high'+tvarsym(tloadnode(left).symtableentry).name);
  1872. hp:=caddnode.create(addn,cloadnode.create(srsym,tloadnode(left).symtable),
  1873. cordconstnode.create(1,s32bittype,false));
  1874. if (left.resulttype.def.deftype=arraydef) and
  1875. (tarraydef(left.resulttype.def).elesize<>1) then
  1876. hp:=caddnode.create(muln,hp,cordconstnode.create(tarraydef(
  1877. left.resulttype.def).elesize,s32bittype,true));
  1878. firstpass(hp);
  1879. result:=hp;
  1880. end
  1881. else
  1882. begin
  1883. if registers32<1 then
  1884. registers32:=1;
  1885. location.loc:=LOC_REGISTER;
  1886. end;
  1887. end;
  1888. in_typeof_x:
  1889. begin
  1890. if registers32<1 then
  1891. registers32:=1;
  1892. location.loc:=LOC_REGISTER;
  1893. end;
  1894. in_ord_x,
  1895. in_chr_byte:
  1896. begin
  1897. { should not happend as it's converted to typeconv }
  1898. internalerror(200104045);
  1899. end;
  1900. in_length_x:
  1901. begin
  1902. if is_shortstring(left.resulttype.def) then
  1903. location.loc:=LOC_REFERENCE
  1904. else
  1905. begin
  1906. { ansi/wide string }
  1907. if registers32<1 then
  1908. registers32:=1;
  1909. location.loc:=LOC_REGISTER;
  1910. end;
  1911. end;
  1912. in_typeinfo_x:
  1913. begin
  1914. location.loc:=LOC_REGISTER;
  1915. registers32:=1;
  1916. end;
  1917. in_assigned_x:
  1918. begin
  1919. { should be removed in resulttype pass }
  1920. internalerror(2002080201);
  1921. end;
  1922. in_ofs_x :
  1923. internalerror(2000101001);
  1924. in_seg_x :
  1925. internalerror(200104046);
  1926. in_pred_x,
  1927. in_succ_x:
  1928. begin
  1929. if is_64bitint(resulttype.def) then
  1930. begin
  1931. if (registers32<2) then
  1932. registers32:=2
  1933. end
  1934. else
  1935. begin
  1936. if (registers32<1) then
  1937. registers32:=1;
  1938. end;
  1939. location.loc:=LOC_REGISTER;
  1940. end;
  1941. in_setlength_x:
  1942. begin
  1943. end;
  1944. in_finalize_x:
  1945. begin
  1946. end;
  1947. in_inc_x,
  1948. in_dec_x:
  1949. begin
  1950. { check type }
  1951. if is_64bitint(left.resulttype.def) or
  1952. { range/overflow checking doesn't work properly }
  1953. { with the inc/dec code that's generated (JM) }
  1954. ((left.resulttype.def.deftype = orddef) and
  1955. not(is_char(left.resulttype.def)) and
  1956. not(is_boolean(left.resulttype.def)) and
  1957. (aktlocalswitches *
  1958. [cs_check_overflow,cs_check_range] <> [])) then
  1959. { convert to simple add (JM) }
  1960. begin
  1961. { extra parameter? }
  1962. if assigned(tcallparanode(left).right) then
  1963. begin
  1964. { Yes, use for add node }
  1965. hpp := tcallparanode(tcallparanode(left).right).left;
  1966. tcallparanode(tcallparanode(left).right).left := nil;
  1967. if assigned(tcallparanode(tcallparanode(left).right).right) then
  1968. CGMessage(cg_e_illegal_expression);
  1969. end
  1970. else
  1971. { no, create constant 1 }
  1972. hpp := cordconstnode.create(1,s32bittype,false);
  1973. { addition/substraction depending on inc/dec }
  1974. if inlinenumber = in_inc_x then
  1975. hp := caddnode.create(addn,tcallparanode(left).left.getcopy,hpp)
  1976. else
  1977. hp := caddnode.create(subn,tcallparanode(left).left.getcopy,hpp);
  1978. { assign result of addition }
  1979. hpp := cassignmentnode.create(tcallparanode(left).left,hp);
  1980. tcallparanode(left).left := nil;
  1981. { firstpass it }
  1982. firstpass(hpp);
  1983. { return new node }
  1984. result := hpp;
  1985. end
  1986. else if (left.resulttype.def.deftype in [enumdef,pointerdef]) or
  1987. is_ordinal(left.resulttype.def) then
  1988. begin
  1989. { two paras ? }
  1990. if assigned(tcallparanode(left).right) then
  1991. begin
  1992. { need we an additional register ? }
  1993. if not(is_constintnode(tcallparanode(tcallparanode(left).right).left)) and
  1994. (tcallparanode(tcallparanode(left).right).left.location.loc in [LOC_CREFERENCE,LOC_REFERENCE]) and
  1995. (tcallparanode(tcallparanode(left).right).left.registers32<=1) then
  1996. inc(registers32);
  1997. { do we need an additional register to restore the first parameter? }
  1998. if tcallparanode(tcallparanode(left).right).left.registers32>=registers32 then
  1999. inc(registers32);
  2000. end;
  2001. end;
  2002. end;
  2003. in_read_x,
  2004. in_readln_x,
  2005. in_write_x,
  2006. in_writeln_x :
  2007. begin
  2008. { should be handled by det_resulttype }
  2009. internalerror(200108234);
  2010. end;
  2011. in_settextbuf_file_x :
  2012. internalerror(200104262);
  2013. in_reset_typedfile,
  2014. in_rewrite_typedfile :
  2015. begin
  2016. { should already be removed in det_resulttype (JM) }
  2017. internalerror(200108236);
  2018. end;
  2019. in_str_x_string :
  2020. begin
  2021. { should already be removed in det_resulttype (JM) }
  2022. internalerror(200108235);
  2023. end;
  2024. in_val_x :
  2025. begin
  2026. { should already be removed in det_resulttype (JM) }
  2027. internalerror(200108242);
  2028. end;
  2029. in_include_x_y,
  2030. in_exclude_x_y:
  2031. begin
  2032. registers32:=left.registers32;
  2033. registersfpu:=left.registersfpu;
  2034. {$ifdef SUPPORT_MMX}
  2035. registersmmx:=left.registersmmx;
  2036. {$endif SUPPORT_MMX}
  2037. end;
  2038. in_low_x,
  2039. in_high_x:
  2040. internalerror(200104047);
  2041. in_cos_extended:
  2042. begin
  2043. result:= first_cos_real;
  2044. end;
  2045. in_sin_extended:
  2046. begin
  2047. result := first_sin_real;
  2048. end;
  2049. in_arctan_extended:
  2050. begin
  2051. result := first_arctan_real;
  2052. end;
  2053. in_pi:
  2054. begin
  2055. result := first_pi;
  2056. end;
  2057. in_abs_extended:
  2058. begin
  2059. result := first_abs_real;
  2060. end;
  2061. in_sqr_extended:
  2062. begin
  2063. result := first_sqr_real;
  2064. end;
  2065. in_sqrt_extended:
  2066. begin
  2067. result := first_sqrt_real;
  2068. end;
  2069. in_ln_extended:
  2070. begin
  2071. result := first_ln_real;
  2072. end;
  2073. {$ifdef SUPPORT_MMX}
  2074. in_mmx_pcmpeqb..in_mmx_pcmpgtw:
  2075. begin
  2076. end;
  2077. {$endif SUPPORT_MMX}
  2078. in_assert_x_y :
  2079. begin
  2080. { We've checked the whole statement for correctness, now we
  2081. can remove it if assertions are off }
  2082. if not(cs_do_assertion in aktlocalswitches) then
  2083. begin
  2084. { we need a valid node, so insert a nothingn }
  2085. result:=cnothingnode.create;
  2086. firstpass(result);
  2087. end
  2088. else
  2089. begin
  2090. registers32:=left.registers32;
  2091. registersfpu:=left.registersfpu;
  2092. {$ifdef SUPPORT_MMX}
  2093. registersmmx:=left.registersmmx;
  2094. {$endif SUPPORT_MMX}
  2095. end;
  2096. end;
  2097. else
  2098. internalerror(8);
  2099. end;
  2100. dec(parsing_para_level);
  2101. end;
  2102. {$ifdef fpc}
  2103. {$maxfpuregisters default}
  2104. {$endif fpc}
  2105. function tinlinenode.docompare(p: tnode): boolean;
  2106. begin
  2107. docompare :=
  2108. inherited docompare(p) and
  2109. (inlinenumber = tinlinenode(p).inlinenumber);
  2110. end;
  2111. function tinlinenode.first_pi : tnode;
  2112. begin
  2113. result := crealconstnode.create(pi,pbestrealtype^);
  2114. firstpass(result);
  2115. end;
  2116. function tinlinenode.first_arctan_real : tnode;
  2117. begin
  2118. { create the call to the helper }
  2119. { on entry left node contains the parameter }
  2120. first_arctan_real := ccallnode.createintern('fpc_arctan_real',
  2121. ccallparanode.create(left,nil));
  2122. { now left is nil, nothing left, so no second pass
  2123. required.
  2124. }
  2125. firstpass(result);
  2126. left := nil;
  2127. end;
  2128. function tinlinenode.first_abs_real : tnode;
  2129. begin
  2130. { create the call to the helper }
  2131. { on entry left node contains the parameter }
  2132. first_abs_real := ccallnode.createintern('fpc_abs_real',
  2133. ccallparanode.create(left,nil));
  2134. { now left is nil, nothing left, so no second pass
  2135. required.
  2136. }
  2137. firstpass(result);
  2138. left := nil;
  2139. end;
  2140. function tinlinenode.first_sqr_real : tnode;
  2141. begin
  2142. { create the call to the helper }
  2143. { on entry left node contains the parameter }
  2144. first_sqr_real := ccallnode.createintern('fpc_sqr_real',
  2145. ccallparanode.create(left,nil));
  2146. { now left is nil, nothing left, so no second pass
  2147. required.
  2148. }
  2149. firstpass(result);
  2150. left := nil;
  2151. end;
  2152. function tinlinenode.first_sqrt_real : tnode;
  2153. begin
  2154. { create the call to the helper }
  2155. { on entry left node contains the parameter }
  2156. first_sqrt_real := ccallnode.createintern('fpc_sqrt_real',
  2157. ccallparanode.create(left,nil));
  2158. { now left is nil, nothing left, so no second pass
  2159. required.
  2160. }
  2161. firstpass(result);
  2162. left := nil;
  2163. end;
  2164. function tinlinenode.first_ln_real : tnode;
  2165. begin
  2166. { create the call to the helper }
  2167. { on entry left node contains the parameter }
  2168. first_ln_real := ccallnode.createintern('fpc_ln_real',
  2169. ccallparanode.create(left,nil));
  2170. { now left is nil, nothing left, so no second pass
  2171. required.
  2172. }
  2173. firstpass(result);
  2174. left := nil;
  2175. end;
  2176. function tinlinenode.first_cos_real : tnode;
  2177. begin
  2178. { create the call to the helper }
  2179. { on entry left node contains the parameter }
  2180. first_cos_real := ccallnode.createintern('fpc_cos_real',
  2181. ccallparanode.create(left,nil));
  2182. { now left is nil, nothing left, so no second pass
  2183. required.
  2184. }
  2185. firstpass(result);
  2186. left := nil;
  2187. end;
  2188. function tinlinenode.first_sin_real : tnode;
  2189. begin
  2190. { create the call to the helper }
  2191. { on entry left node contains the parameter }
  2192. first_sin_real := ccallnode.createintern('fpc_sin_real',
  2193. ccallparanode.create(left,nil));
  2194. { now left is nil, nothing left, so no second pass
  2195. required.
  2196. }
  2197. firstpass(result);
  2198. left := nil;
  2199. end;
  2200. begin
  2201. cinlinenode:=tinlinenode;
  2202. end.
  2203. {
  2204. $Log$
  2205. Revision 1.97 2002-11-18 18:35:01 peter
  2206. * Swap(QWord) constant support
  2207. Revision 1.96 2002/11/18 17:31:57 peter
  2208. * pass proccalloption to ret_in_xxx and push_xxx functions
  2209. Revision 1.95 2002/11/16 17:59:31 peter
  2210. * load threadvar input/output variable in temp
  2211. Revision 1.94 2002/11/15 01:58:52 peter
  2212. * merged changes from 1.0.7 up to 04-11
  2213. - -V option for generating bug report tracing
  2214. - more tracing for option parsing
  2215. - errors for cdecl and high()
  2216. - win32 import stabs
  2217. - win32 records<=8 are returned in eax:edx (turned off by default)
  2218. - heaptrc update
  2219. - more info for temp management in .s file with EXTDEBUG
  2220. Revision 1.93 2002/10/10 19:24:58 florian
  2221. + write(ln) support for variants added
  2222. Revision 1.92 2002/10/10 16:07:57 florian
  2223. + several widestring/pwidechar related stuff added
  2224. Revision 1.91 2002/10/05 14:21:08 peter
  2225. * Length(PChar) supported
  2226. Revision 1.90 2002/09/13 19:12:09 carl
  2227. * only enumerations have range checking for succ/pred in const section
  2228. Revision 1.89 2002/09/09 19:41:01 peter
  2229. * check ranges for pred() and succ()
  2230. Revision 1.88 2002/09/08 13:01:25 jonas
  2231. * first_pi now just generates a constant, added missing calls to firstpass()
  2232. Revision 1.87 2002/09/07 20:42:16 carl
  2233. * cardinal -> longword
  2234. Revision 1.86 2002/09/07 12:16:04 carl
  2235. * second part bug report 1996 fix, testrange in cordconstnode
  2236. only called if option is set (also make parsing a tiny faster)
  2237. Revision 1.85 2002/09/02 19:24:42 peter
  2238. * array of char support for Str()
  2239. Revision 1.84 2002/08/19 19:36:43 peter
  2240. * More fixes for cross unit inlining, all tnodes are now implemented
  2241. * Moved pocall_internconst to po_internconst because it is not a
  2242. calling type at all and it conflicted when inlining of these small
  2243. functions was requested
  2244. Revision 1.83 2002/08/02 07:44:31 jonas
  2245. * made assigned() handling generic
  2246. * add nodes now can also evaluate constant expressions at compile time
  2247. that contain nil nodes
  2248. Revision 1.82 2002/07/29 21:23:43 florian
  2249. * more fixes for the ppc
  2250. + wrappers for the tcnvnode.first_* stuff introduced
  2251. Revision 1.81 2002/07/26 12:28:50 jonas
  2252. * don't always convert the second argument of inc/dec to a longint, but
  2253. to a type based on the first argument
  2254. Revision 1.80 2002/07/25 18:00:19 carl
  2255. + Resulttype for floats is now CPU independent (bestrealytype)
  2256. + Generic version of some routines (call to RTL routines)
  2257. : still untested.
  2258. Revision 1.79 2002/07/20 11:57:54 florian
  2259. * types.pas renamed to defbase.pas because D6 contains a types
  2260. unit so this would conflicts if D6 programms are compiled
  2261. + Willamette/SSE2 instructions to assembler added
  2262. Revision 1.78 2002/07/11 14:41:28 florian
  2263. * start of the new generic parameter handling
  2264. Revision 1.77 2002/06/06 18:53:53 jonas
  2265. * fixed fpu stack overflow in compiler when compiled with -Or
  2266. Revision 1.76 2002/05/18 13:34:10 peter
  2267. * readded missing revisions
  2268. Revision 1.75 2002/05/16 19:46:38 carl
  2269. + defines.inc -> fpcdefs.inc to avoid conflicts if compiling by hand
  2270. + try to fix temp allocation (still in ifdef)
  2271. + generic constructor calls
  2272. + start of tassembler / tmodulebase class cleanup
  2273. Revision 1.73 2002/05/12 16:53:07 peter
  2274. * moved entry and exitcode to ncgutil and cgobj
  2275. * foreach gets extra argument for passing local data to the
  2276. iterator function
  2277. * -CR checks also class typecasts at runtime by changing them
  2278. into as
  2279. * fixed compiler to cycle with the -CR option
  2280. * fixed stabs with elf writer, finally the global variables can
  2281. be watched
  2282. * removed a lot of routines from cga unit and replaced them by
  2283. calls to cgobj
  2284. * u32bit-s32bit updates for and,or,xor nodes. When one element is
  2285. u32bit then the other is typecasted also to u32bit without giving
  2286. a rangecheck warning/error.
  2287. * fixed pascal calling method with reversing also the high tree in
  2288. the parast, detected by tcalcst3 test
  2289. Revision 1.72 2002/04/23 19:16:34 peter
  2290. * add pinline unit that inserts compiler supported functions using
  2291. one or more statements
  2292. * moved finalize and setlength from ninl to pinline
  2293. Revision 1.71 2002/04/02 17:11:29 peter
  2294. * tlocation,treference update
  2295. * LOC_CONSTANT added for better constant handling
  2296. * secondadd splitted in multiple routines
  2297. * location_force_reg added for loading a location to a register
  2298. of a specified size
  2299. * secondassignment parses now first the right and then the left node
  2300. (this is compatible with Kylix). This saves a lot of push/pop especially
  2301. with string operations
  2302. * adapted some routines to use the new cg methods
  2303. Revision 1.70 2002/03/31 20:26:34 jonas
  2304. + a_loadfpu_* and a_loadmm_* methods in tcg
  2305. * register allocation is now handled by a class and is mostly processor
  2306. independent (+rgobj.pas and i386/rgcpu.pas)
  2307. * temp allocation is now handled by a class (+tgobj.pas, -i386\tgcpu.pas)
  2308. * some small improvements and fixes to the optimizer
  2309. * some register allocation fixes
  2310. * some fpuvaroffset fixes in the unary minus node
  2311. * push/popusedregisters is now called rg.save/restoreusedregisters and
  2312. (for i386) uses temps instead of push/pop's when using -Op3 (that code is
  2313. also better optimizable)
  2314. * fixed and optimized register saving/restoring for new/dispose nodes
  2315. * LOC_FPU locations now also require their "register" field to be set to
  2316. R_ST, not R_ST0 (the latter is used for LOC_CFPUREGISTER locations only)
  2317. - list field removed of the tnode class because it's not used currently
  2318. and can cause hard-to-find bugs
  2319. Revision 1.69 2002/01/24 18:25:48 peter
  2320. * implicit result variable generation for assembler routines
  2321. * removed m_tp modeswitch, use m_tp7 or not(m_fpc) instead
  2322. Revision 1.68 2002/01/19 11:53:56 peter
  2323. * constant evaluation for assinged added
  2324. }