paramgr.pas 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568
  1. {
  2. $Id$
  3. Copyright (c) 2002 by Florian Klaempfl
  4. Generic calling convention handling
  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. {# Parameter passing manager. Used to manage how
  19. parameters are passed to routines.
  20. }
  21. unit paramgr;
  22. {$i fpcdefs.inc}
  23. interface
  24. uses
  25. cpubase,
  26. globtype,
  27. symconst,symtype,symdef;
  28. type
  29. {# This class defines some methods to take care of routine
  30. parameters. It should be overriden for each new processor
  31. }
  32. tparamanager = class
  33. {# Returns true if the return value is actually a parameter
  34. pointer.
  35. }
  36. function ret_in_param(def : tdef;calloption : tproccalloption) : boolean;virtual;
  37. function push_high_param(def : tdef;calloption : tproccalloption) : boolean;virtual;
  38. { Returns true if a parameter is too large to copy and only
  39. the address is pushed
  40. }
  41. function push_addr_param(def : tdef;calloption : tproccalloption) : boolean;virtual;
  42. { return the size of a push }
  43. function push_size(varspez:tvarspez;def : tdef;calloption : tproccalloption) : longint;
  44. { Returns true if a parameter needs to be copied on the stack, this
  45. is required for cdecl procedures
  46. }
  47. function copy_value_on_stack(def : tdef;calloption : tproccalloption) : boolean;
  48. {# Returns a structure giving the information on
  49. the storage of the parameter (which must be
  50. an integer parameter). This is only used when calling
  51. internal routines directly, where all parameters must
  52. be 4-byte values.
  53. @param(nr Parameter number of routine, starting from 1)
  54. }
  55. function getintparaloc(nr : longint) : tparalocation;virtual;abstract;
  56. {# This is used to populate the location information on all parameters
  57. for the routine. This is used for normal call resolution.
  58. }
  59. procedure create_param_loc_info(p : tabstractprocdef);virtual;abstract;
  60. {
  61. Returns the location where the invisible parameter for structured
  62. function results will be passed.
  63. }
  64. function getfuncretparaloc(p : tabstractprocdef) : tparalocation;virtual;
  65. {
  66. Returns the location where the invisible parameter for nested
  67. subroutines is passed.
  68. }
  69. function getframepointerloc(p : tabstractprocdef) : tparalocation;virtual;
  70. { Returns the self pointer location for the given tabstractprocdef,
  71. when the stack frame is already created. This is used by the code
  72. generating the wrappers for implemented interfaces.
  73. }
  74. function getselflocation(p : tabstractprocdef) : tparalocation;virtual;abstract;
  75. {
  76. Returns the location of the result if the result is in
  77. a register, the register(s) return depend on the type of
  78. the result.
  79. @param(def The definition of the result type of the function)
  80. }
  81. function getfuncresultloc(def : tdef;calloption:tproccalloption): tparalocation; virtual;
  82. end;
  83. procedure setparalocs(p : tprocdef);
  84. function getfuncretusedregisters(def : tdef;calloption:tproccalloption): tregisterset;
  85. var
  86. paralocdummy : tparalocation;
  87. paramanager : tparamanager;
  88. implementation
  89. uses
  90. cpuinfo,globals,systems,
  91. symbase,symsym,
  92. rgobj,
  93. defutil,cgbase,cginfo,verbose;
  94. { true if uses a parameter as return value }
  95. function tparamanager.ret_in_param(def : tdef;calloption : tproccalloption) : boolean;
  96. begin
  97. ret_in_param:=(def.deftype in [arraydef,recorddef]) or
  98. ((def.deftype=stringdef) and (tstringdef(def).string_typ in [st_shortstring,st_longstring])) or
  99. ((def.deftype=procvardef) and (po_methodpointer in tprocvardef(def).procoptions)) or
  100. ((def.deftype=objectdef) and is_object(def)) or
  101. (def.deftype=variantdef) or
  102. ((def.deftype=setdef) and (tsetdef(def).settype<>smallset));
  103. end;
  104. function tparamanager.push_high_param(def : tdef;calloption : tproccalloption) : boolean;
  105. begin
  106. push_high_param:=not(calloption in [pocall_cdecl,pocall_cppdecl]) and
  107. (
  108. is_open_array(def) or
  109. is_open_string(def) or
  110. is_array_of_const(def)
  111. );
  112. end;
  113. { true if a parameter is too large to copy and only the address is pushed }
  114. function tparamanager.push_addr_param(def : tdef;calloption : tproccalloption) : boolean;
  115. begin
  116. push_addr_param:=false;
  117. case def.deftype of
  118. variantdef,
  119. formaldef :
  120. push_addr_param:=true;
  121. recorddef :
  122. push_addr_param:=not(calloption in [pocall_cdecl,pocall_cppdecl]) and (def.size>pointer_size);
  123. arraydef :
  124. begin
  125. if (calloption in [pocall_cdecl,pocall_cppdecl]) then
  126. begin
  127. { array of const values are pushed on the stack }
  128. push_addr_param:=not is_array_of_const(def);
  129. end
  130. else
  131. begin
  132. push_addr_param:=(
  133. (tarraydef(def).highrange>=tarraydef(def).lowrange) and
  134. (def.size>pointer_size)
  135. ) or
  136. is_open_array(def) or
  137. is_array_of_const(def) or
  138. is_array_constructor(def);
  139. end;
  140. end;
  141. objectdef :
  142. push_addr_param:=is_object(def);
  143. stringdef :
  144. push_addr_param:=not(calloption in [pocall_cdecl,pocall_cppdecl]) and (tstringdef(def).string_typ in [st_shortstring,st_longstring]);
  145. procvardef :
  146. push_addr_param:=not(calloption in [pocall_cdecl,pocall_cppdecl]) and (po_methodpointer in tprocvardef(def).procoptions);
  147. setdef :
  148. push_addr_param:=not(calloption in [pocall_cdecl,pocall_cppdecl]) and (tsetdef(def).settype<>smallset);
  149. end;
  150. end;
  151. { true if a parameter is too large to push and needs a concatcopy to get the value on the stack }
  152. function tparamanager.copy_value_on_stack(def : tdef;calloption : tproccalloption) : boolean;
  153. begin
  154. copy_value_on_stack:=false;
  155. { this is only for cdecl procedures }
  156. if not(calloption in [pocall_cdecl,pocall_cppdecl]) then
  157. exit;
  158. case def.deftype of
  159. variantdef,
  160. formaldef :
  161. copy_value_on_stack:=true;
  162. recorddef :
  163. copy_value_on_stack:=(def.size>pointer_size);
  164. arraydef :
  165. copy_value_on_stack:=(tarraydef(def).highrange>=tarraydef(def).lowrange) and
  166. (def.size>pointer_size);
  167. objectdef :
  168. copy_value_on_stack:=is_object(def);
  169. stringdef :
  170. copy_value_on_stack:=tstringdef(def).string_typ in [st_shortstring,st_longstring];
  171. procvardef :
  172. copy_value_on_stack:=(po_methodpointer in tprocvardef(def).procoptions);
  173. setdef :
  174. copy_value_on_stack:=(tsetdef(def).settype<>smallset);
  175. end;
  176. end;
  177. { return the size of a push }
  178. function tparamanager.push_size(varspez:tvarspez;def : tdef;calloption : tproccalloption) : longint;
  179. begin
  180. push_size:=-1;
  181. case varspez of
  182. vs_out,
  183. vs_var :
  184. push_size:=pointer_size;
  185. vs_value,
  186. vs_const :
  187. begin
  188. if push_addr_param(def,calloption) then
  189. push_size:=pointer_size
  190. else
  191. begin
  192. { special array are normally pushed by addr, only for
  193. cdecl array of const it comes here and the pushsize
  194. is unknown }
  195. if is_array_of_const(def) then
  196. push_size:=0
  197. else
  198. push_size:=def.size;
  199. end;
  200. end;
  201. end;
  202. end;
  203. function tparamanager.getfuncretparaloc(p : tabstractprocdef) : tparalocation;
  204. begin
  205. result.loc:=LOC_REFERENCE;
  206. result.size:=OS_ADDR;
  207. result.sp_fixup:=pointer_size;
  208. result.reference.index.enum:=R_INTREGISTER;
  209. result.reference.index.number:=NR_STACK_POINTER_REG;
  210. result.reference.offset:=0;
  211. end;
  212. function tparamanager.getframepointerloc(p : tabstractprocdef) : tparalocation;
  213. begin
  214. result.loc:=LOC_REFERENCE;
  215. result.size:=OS_ADDR;
  216. result.sp_fixup:=pointer_size;
  217. result.reference.index.enum:=R_INTREGISTER;
  218. result.reference.index.number:=NR_STACK_POINTER_REG;
  219. result.reference.offset:=0;
  220. end;
  221. function tparamanager.getfuncresultloc(def : tdef;calloption:tproccalloption): tparalocation;
  222. begin
  223. fillchar(result,sizeof(tparalocation),0);
  224. if is_void(def) then exit;
  225. result.size := def_cgsize(def);
  226. case def.deftype of
  227. orddef,
  228. enumdef :
  229. begin
  230. result.loc := LOC_REGISTER;
  231. {$ifndef cpu64bit}
  232. if result.size in [OS_64,OS_S64] then
  233. begin
  234. result.register64.reglo.enum:=R_INTREGISTER;
  235. result.register64.reglo.number:=NR_FUNCTION_RETURN64_LOW_REG;
  236. result.register64.reghi.enum:=R_INTREGISTER;
  237. result.register64.reghi.number:=NR_FUNCTION_RETURN64_HIGH_REG;
  238. end
  239. else
  240. {$endif cpu64bit}
  241. begin
  242. result.register.enum:=R_INTREGISTER;
  243. result.register.number:=NR_FUNCTION_RETURN_REG;
  244. end;
  245. end;
  246. floatdef :
  247. begin
  248. result.loc := LOC_FPUREGISTER;
  249. {$ifdef cpufpemu}
  250. if cs_fp_emulation in aktmoduleswitches then
  251. begin
  252. result.register.enum:=R_INTREGISTER;
  253. result.register.number:=FUNCTION_RETURN_REG;
  254. end
  255. else
  256. {$endif cpufpemu}
  257. result.register.enum := FPU_RESULT_REG;
  258. end;
  259. else
  260. begin
  261. if not ret_in_param(def,calloption) then
  262. begin
  263. result.loc := LOC_REGISTER;
  264. result.register.enum:=R_INTREGISTER;
  265. result.register.number:=NR_FUNCTION_RETURN_REG;
  266. end
  267. else
  268. begin
  269. result.loc := LOC_REFERENCE;
  270. internalerror(2002081602);
  271. (*
  272. {$ifdef EXTDEBUG}
  273. { it is impossible to have the
  274. return value with an index register
  275. and a symbol!
  276. }
  277. if (ref.index <> R_NO) or (assigned(ref.symbol)) then
  278. internalerror(2002081602);
  279. {$endif}
  280. result.reference.index := ref.base;
  281. result.reference.offset := ref.offset;
  282. *)
  283. end;
  284. end;
  285. end;
  286. end;
  287. function getfuncretusedregisters(def : tdef;calloption:tproccalloption): tregisterset;
  288. var
  289. paramloc : tparalocation;
  290. regset : tregisterset;
  291. begin
  292. regset:=[];
  293. getfuncretusedregisters:=[];
  294. { if nothing is returned in registers,
  295. its useless to continue on in this
  296. routine
  297. }
  298. if paramanager.ret_in_param(def,calloption) then
  299. exit;
  300. paramloc := paramanager.getfuncresultloc(def,calloption);
  301. case paramloc.loc of
  302. LOC_FPUREGISTER,
  303. LOC_CFPUREGISTER,
  304. LOC_MMREGISTER,
  305. LOC_CMMREGISTER,
  306. LOC_REGISTER,LOC_CREGISTER :
  307. begin
  308. regset := regset + [paramloc.register.enum];
  309. if ((paramloc.size in [OS_S64,OS_64]) and
  310. (sizeof(aword) < 8))
  311. then
  312. begin
  313. regset := regset + [paramloc.registerhigh.enum];
  314. end;
  315. end;
  316. else
  317. internalerror(20020816);
  318. end;
  319. getfuncretusedregisters:=regset;
  320. end;
  321. procedure setparalocs(p : tprocdef);
  322. var
  323. hp : tparaitem;
  324. begin
  325. hp:=tparaitem(p.para.first);
  326. while assigned(hp) do
  327. begin
  328. if (hp.paraloc.loc in [LOC_REGISTER,LOC_FPUREGISTER,
  329. LOC_MMREGISTER]) and
  330. (
  331. (vo_regable in tvarsym(hp.parasym).varoptions) or
  332. (vo_fpuregable in tvarsym(hp.parasym).varoptions) or
  333. paramanager.push_addr_param(hp.paratype.def,p.proccalloption) or
  334. (hp.paratyp in [vs_var,vs_out])
  335. ) then
  336. begin
  337. case hp.paraloc.loc of
  338. LOC_REGISTER:
  339. hp.paraloc.loc := LOC_CREGISTER;
  340. LOC_FPUREGISTER:
  341. hp.paraloc.loc := LOC_CFPUREGISTER;
  342. {$ifdef SUPPORT_MMX}
  343. LOC_MMREGISTER:
  344. hp.paraloc.loc := LOC_CMMREGISTER;
  345. {$endif}
  346. end;
  347. tvarsym(hp.parasym).paraitem:=hp;
  348. end;
  349. hp:=tparaitem(hp.next);
  350. end;
  351. end;
  352. initialization
  353. ;
  354. finalization
  355. paramanager.free;
  356. end.
  357. {
  358. $Log$
  359. Revision 1.40 2003-05-31 15:05:28 peter
  360. * FUNCTION_RESULT64_LOW/HIGH_REG added for int64 results
  361. Revision 1.39 2003/05/30 23:57:08 peter
  362. * more sparc cleanup
  363. * accumulator removed, splitted in function_return_reg (called) and
  364. function_result_reg (caller)
  365. Revision 1.38 2003/05/13 15:16:13 peter
  366. * removed ret_in_acc, it's the reverse of ret_in_param
  367. * fixed ret_in_param for win32 cdecl array
  368. Revision 1.37 2003/04/30 22:15:59 florian
  369. * some 64 bit adaptions in ncgadd
  370. * x86-64 now uses ncgadd
  371. * tparamanager.ret_in_acc doesn't return true anymore for a void-def
  372. Revision 1.36 2003/04/27 11:21:33 peter
  373. * aktprocdef renamed to current_procdef
  374. * procinfo renamed to current_procinfo
  375. * procinfo will now be stored in current_module so it can be
  376. cleaned up properly
  377. * gen_main_procsym changed to create_main_proc and release_main_proc
  378. to also generate a tprocinfo structure
  379. * fixed unit implicit initfinal
  380. Revision 1.35 2003/04/27 07:29:50 peter
  381. * current_procdef cleanup, current_procdef is now always nil when parsing
  382. a new procdef declaration
  383. * aktprocsym removed
  384. * lexlevel removed, use symtable.symtablelevel instead
  385. * implicit init/final code uses the normal genentry/genexit
  386. * funcret state checking updated for new funcret handling
  387. Revision 1.34 2003/04/23 13:15:04 peter
  388. * fix push_high_param for cdecl
  389. Revision 1.33 2003/04/23 10:14:30 peter
  390. * cdecl array of const has no addr push
  391. Revision 1.32 2003/04/22 13:47:08 peter
  392. * fixed C style array of const
  393. * fixed C array passing
  394. * fixed left to right with high parameters
  395. Revision 1.31 2003/02/02 19:25:54 carl
  396. * Several bugfixes for m68k target (register alloc., opcode emission)
  397. + VIS target
  398. + Generic add more complete (still not verified)
  399. Revision 1.30 2003/01/08 18:43:56 daniel
  400. * Tregister changed into a record
  401. Revision 1.29 2002/12/23 20:58:03 peter
  402. * remove unused global var
  403. Revision 1.28 2002/12/17 22:19:33 peter
  404. * fixed pushing of records>8 bytes with stdcall
  405. * simplified hightree loading
  406. Revision 1.27 2002/12/06 16:56:58 peter
  407. * only compile cs_fp_emulation support when cpufpuemu is defined
  408. * define cpufpuemu for m68k only
  409. Revision 1.26 2002/11/27 20:04:09 peter
  410. * tvarsym.get_push_size replaced by paramanager.push_size
  411. Revision 1.25 2002/11/27 02:33:19 peter
  412. * copy_value_on_stack method added for cdecl record passing
  413. Revision 1.24 2002/11/25 17:43:21 peter
  414. * splitted defbase in defutil,symutil,defcmp
  415. * merged isconvertable and is_equal into compare_defs(_ext)
  416. * made operator search faster by walking the list only once
  417. Revision 1.23 2002/11/18 17:31:58 peter
  418. * pass proccalloption to ret_in_xxx and push_xxx functions
  419. Revision 1.22 2002/11/16 18:00:04 peter
  420. * only push small arrays on the stack for win32
  421. Revision 1.21 2002/10/05 12:43:25 carl
  422. * fixes for Delphi 6 compilation
  423. (warning : Some features do not work under Delphi)
  424. Revision 1.20 2002/09/30 07:07:25 florian
  425. * fixes to common code to get the alpha compiler compiled applied
  426. Revision 1.19 2002/09/30 07:00:47 florian
  427. * fixes to common code to get the alpha compiler compiled applied
  428. Revision 1.18 2002/09/09 09:10:51 florian
  429. + added generic tparamanager.getframepointerloc
  430. Revision 1.17 2002/09/07 19:40:39 florian
  431. * tvarsym.paraitem is set now
  432. Revision 1.16 2002/09/01 21:04:48 florian
  433. * several powerpc related stuff fixed
  434. Revision 1.15 2002/08/25 19:25:19 peter
  435. * sym.insert_in_data removed
  436. * symtable.insertvardata/insertconstdata added
  437. * removed insert_in_data call from symtable.insert, it needs to be
  438. called separatly. This allows to deref the address calculation
  439. * procedures now calculate the parast addresses after the procedure
  440. directives are parsed. This fixes the cdecl parast problem
  441. * push_addr_param has an extra argument that specifies if cdecl is used
  442. or not
  443. Revision 1.14 2002/08/17 22:09:47 florian
  444. * result type handling in tcgcal.pass_2 overhauled
  445. * better tnode.dowrite
  446. * some ppc stuff fixed
  447. Revision 1.13 2002/08/17 09:23:38 florian
  448. * first part of procinfo rewrite
  449. Revision 1.12 2002/08/16 14:24:58 carl
  450. * issameref() to test if two references are the same (then emit no opcodes)
  451. + ret_in_reg to replace ret_in_acc
  452. (fix some register allocation bugs at the same time)
  453. + save_std_register now has an extra parameter which is the
  454. usedinproc registers
  455. Revision 1.11 2002/08/12 15:08:40 carl
  456. + stab register indexes for powerpc (moved from gdb to cpubase)
  457. + tprocessor enumeration moved to cpuinfo
  458. + linker in target_info is now a class
  459. * many many updates for m68k (will soon start to compile)
  460. - removed some ifdef or correct them for correct cpu
  461. Revision 1.10 2002/08/10 17:15:20 jonas
  462. * register parameters are now LOC_CREGISTER instead of LOC_REGISTER
  463. Revision 1.9 2002/08/09 07:33:02 florian
  464. * a couple of interface related fixes
  465. Revision 1.8 2002/08/06 20:55:21 florian
  466. * first part of ppc calling conventions fix
  467. Revision 1.7 2002/08/05 18:27:48 carl
  468. + more more more documentation
  469. + first version include/exclude (can't test though, not enough scratch for i386 :()...
  470. Revision 1.6 2002/07/30 20:50:43 florian
  471. * the code generator knows now if parameters are in registers
  472. Revision 1.5 2002/07/26 21:15:39 florian
  473. * rewrote the system handling
  474. Revision 1.4 2002/07/20 11:57:55 florian
  475. * types.pas renamed to defbase.pas because D6 contains a types
  476. unit so this would conflicts if D6 programms are compiled
  477. + Willamette/SSE2 instructions to assembler added
  478. Revision 1.3 2002/07/13 19:38:43 florian
  479. * some more generic calling stuff fixed
  480. Revision 1.2 2002/07/13 07:17:15 jonas
  481. * fixed memory leak reported by Sergey Korshunoff
  482. Revision 1.1 2002/07/11 14:41:28 florian
  483. * start of the new generic parameter handling
  484. }