n386obj.pas 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  1. {
  2. $Id$
  3. Copyright (c) 1998-2002 by Kovacs Attila Zoltan
  4. Generate i386 assembly wrapper code interface implementor objects
  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 n386obj;
  19. {$i fpcdefs.inc}
  20. interface
  21. implementation
  22. uses
  23. systems,
  24. verbose,globals,globtype,
  25. aasmbase,aasmtai,
  26. symconst,symtype,symdef,symsym,
  27. fmodule,
  28. nobj,
  29. cpubase,cginfo,
  30. cga,tgobj,rgobj,cgobj;
  31. type
  32. ti386classheader=class(tclassheader)
  33. protected
  34. procedure cgintfwrapper(asmlist: TAAsmoutput; procdef: tprocdef; const labelname: string; ioffset: longint);override;
  35. end;
  36. {
  37. possible calling conventions:
  38. default stdcall cdecl pascal popstack register saveregisters
  39. default(0): OK OK OK(1) OK OK(1) OK OK
  40. virtual(2): OK OK OK(3) OK OK(3) OK OK(4)
  41. (0):
  42. set self parameter to correct value
  43. jmp mangledname
  44. (1): The code is the following
  45. set self parameter to correct value
  46. call mangledname
  47. set self parameter to interface value
  48. (2): The wrapper code use %eax to reach the virtual method address
  49. set self to correct value
  50. move self,%eax
  51. mov 0(%eax),%eax ; load vmt
  52. jmp vmtoffs(%eax) ; method offs
  53. (3): The wrapper code use %eax to reach the virtual method address
  54. set self to correct value
  55. move self,%eax
  56. mov 0(%eax),%eax ; load vmt
  57. jmp vmtoffs(%eax) ; method offs
  58. set self parameter to interface value
  59. (4): Virtual use eax to reach the method address so the following code be generated:
  60. set self to correct value
  61. push %ebx ; allocate space for function address
  62. push %eax
  63. mov self,%eax
  64. mov 0(%eax),%eax ; load vmt
  65. mov vmtoffs(%eax),eax ; method offs
  66. mov %eax,4(%esp)
  67. pop %eax
  68. ret 0; jmp the address
  69. }
  70. function getselfoffsetfromsp(procdef: tprocdef): longint;
  71. begin
  72. if not assigned(procdef.parast.symindex.first) then
  73. getselfoffsetfromsp:=4
  74. else
  75. if tsym(procdef.parast.symindex.first).typ=varsym then
  76. getselfoffsetfromsp:=tvarsym(procdef.parast.symindex.first).address+4
  77. else
  78. Internalerror(2000061310);
  79. end;
  80. procedure ti386classheader.cgintfwrapper(asmlist: TAAsmoutput; procdef: tprocdef; const labelname: string; ioffset: longint);
  81. procedure checkvirtual;
  82. begin
  83. if (procdef.extnumber=-1) then
  84. Internalerror(200006139);
  85. end;
  86. procedure getselftoeax(offs: longint);
  87. var
  88. href : treference;
  89. begin
  90. { mov offset(%esp),%eax }
  91. reference_reset_base(href,NR_ESP,getselfoffsetfromsp(procdef));
  92. cg.a_load_ref_reg(exprasmlist,OS_ADDR,OS_ADDR,href,NR_EAX);
  93. end;
  94. procedure loadvmttoeax;
  95. var
  96. href : treference;
  97. begin
  98. checkvirtual;
  99. { mov 0(%eax),%eax ; load vmt}
  100. reference_reset_base(href,NR_EAX,0);
  101. emit_ref_reg(A_MOV,S_L,href,NR_EAX);
  102. end;
  103. procedure op_oneaxmethodaddr(op: TAsmOp);
  104. var
  105. href : treference;
  106. begin
  107. { call/jmp vmtoffs(%eax) ; method offs }
  108. reference_reset_base(href,NR_EAX,procdef._class.vmtmethodoffset(procdef.extnumber));
  109. emit_ref(op,S_L,href);
  110. end;
  111. procedure loadmethodoffstoeax;
  112. var
  113. href : treference;
  114. begin
  115. { mov vmtoffs(%eax),%eax ; method offs }
  116. reference_reset_base(href,NR_EAX,procdef._class.vmtmethodoffset(procdef.extnumber));
  117. emit_ref_reg(A_MOV,S_L,href,NR_EAX);
  118. end;
  119. var
  120. oldexprasmlist: TAAsmoutput;
  121. lab : tasmsymbol;
  122. make_global : boolean;
  123. href : treference;
  124. begin
  125. if procdef.proctypeoption<>potype_none then
  126. Internalerror(200006137);
  127. if not assigned(procdef._class) or
  128. (procdef.procoptions*[po_classmethod, po_staticmethod,
  129. po_methodpointer, po_interrupt, po_iocheck]<>[]) then
  130. Internalerror(200006138);
  131. if procdef.owner.symtabletype<>objectsymtable then
  132. Internalerror(200109191);
  133. oldexprasmlist:=exprasmlist;
  134. exprasmlist:=asmlist;
  135. make_global:=false;
  136. if (not current_module.is_unit) or
  137. (cs_create_smart in aktmoduleswitches) or
  138. (procdef.owner.defowner.owner.symtabletype=globalsymtable) then
  139. make_global:=true;
  140. if make_global then
  141. exprasmList.concat(Tai_symbol.Createname_global(labelname,0))
  142. else
  143. exprasmList.concat(Tai_symbol.Createname(labelname,0));
  144. { set param1 interface to self }
  145. adjustselfvalue(procdef,ioffset);
  146. { case 1 or 2 }
  147. if (po_clearstack in procdef.procoptions) then
  148. begin
  149. if po_virtualmethod in procdef.procoptions then
  150. begin { case 2 }
  151. getselftoeax(0);
  152. loadvmttoeax;
  153. op_oneaxmethodaddr(A_CALL);
  154. end
  155. else { case 1 }
  156. cg.a_call_name(exprasmlist,procdef.mangledname);
  157. { restore param1 value self to interface }
  158. adjustselfvalue(procdef,-ioffset);
  159. end
  160. { case 3 }
  161. else if [po_virtualmethod,po_saveregisters]*procdef.procoptions=[po_virtualmethod,po_saveregisters] then
  162. begin
  163. emit_reg(A_PUSH,S_L,NR_EBX); { allocate space for address}
  164. emit_reg(A_PUSH,S_L,NR_EAX);
  165. getselftoeax(8);
  166. loadvmttoeax;
  167. loadmethodoffstoeax;
  168. { mov %eax,4(%esp) }
  169. reference_reset_base(href,NR_ESP,4);
  170. emit_reg_ref(A_MOV,S_L,NR_EAX,href);
  171. { pop %eax }
  172. emit_reg(A_POP,S_L,NR_EAX);
  173. { ret ; jump to the address }
  174. emit_none(A_RET,S_L);
  175. end
  176. { case 4 }
  177. else if po_virtualmethod in procdef.procoptions then
  178. begin
  179. getselftoeax(0);
  180. loadvmttoeax;
  181. op_oneaxmethodaddr(A_JMP);
  182. end
  183. { case 0 }
  184. else
  185. begin
  186. lab:=objectlibrary.newasmsymbol(procdef.mangledname);
  187. emit_sym(A_JMP,S_NO,lab);
  188. end;
  189. exprasmlist:=oldexprasmlist;
  190. end;
  191. initialization
  192. cclassheader:=ti386classheader;
  193. end.
  194. {
  195. $Log$
  196. Revision 1.21 2003-09-03 15:55:01 peter
  197. * NEWRA branch merged
  198. Revision 1.20.2.1 2003/08/29 17:29:00 peter
  199. * next batch of updates
  200. Revision 1.20 2003/06/03 21:11:09 peter
  201. * cg.a_load_* get a from and to size specifier
  202. * makeregsize only accepts newregister
  203. * i386 uses generic tcgnotnode,tcgunaryminus
  204. Revision 1.19 2003/05/15 18:58:54 peter
  205. * removed selfpointer_offset, vmtpointer_offset
  206. * tvarsym.adjusted_address
  207. * address in localsymtable is now in the real direction
  208. * removed some obsolete globals
  209. Revision 1.18 2003/04/22 14:33:38 peter
  210. * removed some notes/hints
  211. Revision 1.17 2003/01/13 14:54:34 daniel
  212. * Further work to convert codegenerator register convention;
  213. internalerror bug fixed.
  214. Revision 1.16 2003/01/08 18:43:57 daniel
  215. * Tregister changed into a record
  216. Revision 1.15 2002/08/11 14:32:30 peter
  217. * renamed current_library to objectlibrary
  218. Revision 1.14 2002/08/11 13:24:17 peter
  219. * saving of asmsymbols in ppu supported
  220. * asmsymbollist global is removed and moved into a new class
  221. tasmlibrarydata that will hold the info of a .a file which
  222. corresponds with a single module. Added librarydata to tmodule
  223. to keep the library info stored for the module. In the future the
  224. objectfiles will also be stored to the tasmlibrarydata class
  225. * all getlabel/newasmsymbol and friends are moved to the new class
  226. Revision 1.13 2002/08/09 07:33:04 florian
  227. * a couple of interface related fixes
  228. Revision 1.12 2002/07/16 15:34:21 florian
  229. * exit is now a syssym instead of a keyword
  230. Revision 1.11 2002/07/01 18:46:33 peter
  231. * internal linker
  232. * reorganized aasm layer
  233. Revision 1.10 2002/05/18 13:34:25 peter
  234. * readded missing revisions
  235. Revision 1.9 2002/05/16 19:46:52 carl
  236. + defines.inc -> fpcdefs.inc to avoid conflicts if compiling by hand
  237. + try to fix temp allocation (still in ifdef)
  238. + generic constructor calls
  239. + start of tassembler / tmodulebase class cleanup
  240. Revision 1.7 2002/05/12 16:53:17 peter
  241. * moved entry and exitcode to ncgutil and cgobj
  242. * foreach gets extra argument for passing local data to the
  243. iterator function
  244. * -CR checks also class typecasts at runtime by changing them
  245. into as
  246. * fixed compiler to cycle with the -CR option
  247. * fixed stabs with elf writer, finally the global variables can
  248. be watched
  249. * removed a lot of routines from cga unit and replaced them by
  250. calls to cgobj
  251. * u32bit-s32bit updates for and,or,xor nodes. When one element is
  252. u32bit then the other is typecasted also to u32bit without giving
  253. a rangecheck warning/error.
  254. * fixed pascal calling method with reversing also the high tree in
  255. the parast, detected by tcalcst3 test
  256. Revision 1.6 2002/04/02 17:11:36 peter
  257. * tlocation,treference update
  258. * LOC_CONSTANT added for better constant handling
  259. * secondadd splitted in multiple routines
  260. * location_force_reg added for loading a location to a register
  261. of a specified size
  262. * secondassignment parses now first the right and then the left node
  263. (this is compatible with Kylix). This saves a lot of push/pop especially
  264. with string operations
  265. * adapted some routines to use the new cg methods
  266. Revision 1.5 2002/03/31 20:26:39 jonas
  267. + a_loadfpu_* and a_loadmm_* methods in tcg
  268. * register allocation is now handled by a class and is mostly processor
  269. independent (+rgobj.pas and i386/rgcpu.pas)
  270. * temp allocation is now handled by a class (+tgobj.pas, -i386\tgcpu.pas)
  271. * some small improvements and fixes to the optimizer
  272. * some register allocation fixes
  273. * some fpuvaroffset fixes in the unary minus node
  274. * push/popusedregisters is now called rg.save/restoreusedregisters and
  275. (for i386) uses temps instead of push/pop's when using -Op3 (that code is
  276. also better optimizable)
  277. * fixed and optimized register saving/restoring for new/dispose nodes
  278. * LOC_FPU locations now also require their "register" field to be set to
  279. R_ST, not R_ST0 (the latter is used for LOC_CFPUREGISTER locations only)
  280. - list field removed of the tnode class because it's not used currently
  281. and can cause hard-to-find bugs
  282. }