ncpucall.pas 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. {
  2. $Id$
  3. Copyright (c) 1998-2002 by Florian Klaempfl
  4. Generate sparc assembler for in call 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 ncpucall;
  19. {$i fpcdefs.inc}
  20. interface
  21. uses
  22. ncgcal;
  23. type
  24. tsparccallnode = class(tcgcallnode)
  25. end;
  26. implementation
  27. uses
  28. ncal;
  29. begin
  30. ccallnode:=TSparcCallNode;
  31. end.
  32. {
  33. $Log$
  34. Revision 1.13 2003-07-06 17:58:22 peter
  35. * framepointer fixes for sparc
  36. * parent framepointer code more generic
  37. Revision 1.12 2003/06/13 21:19:32 peter
  38. * current_procdef removed, use current_procinfo.procdef instead
  39. Revision 1.11 2003/04/28 09:49:58 mazen
  40. - InternalError removed from TSparcCallNode.push_framepointer as it is called by common coplier code.
  41. Revision 1.10 2003/04/27 11:21:36 peter
  42. * aktprocdef renamed to current_procinfo.procdef
  43. * procinfo renamed to current_procinfo
  44. * procinfo will now be stored in current_module so it can be
  45. cleaned up properly
  46. * gen_main_procsym changed to create_main_proc and release_main_proc
  47. to also generate a tprocinfo structure
  48. * fixed unit implicit initfinal
  49. Revision 1.9 2003/04/04 15:38:56 peter
  50. * moved generic code from n386cal to ncgcal, i386 now also
  51. uses the generic ncgcal
  52. Revision 1.8 2003/02/05 22:44:55 mazen
  53. * making UNIT lower case.
  54. Revision 1.7 2003/02/04 21:50:54 mazen
  55. * fixing internal errors related to notn when compiling RTL
  56. Revision 1.6 2003/01/22 22:30:03 mazen
  57. - internal errors rmoved from a_loar_reg_reg when reg sizes differs from 32
  58. Revision 1.5 2002/11/14 21:42:08 mazen
  59. * fixing return value variable address
  60. Revision 1.4 2002/10/10 19:57:52 mazen
  61. * Just to update repsitory
  62. Revision 1.3 2002/09/30 19:12:14 mazen
  63. * function prologue fixed
  64. Revision 1.2 2002/08/30 13:16:23 mazen
  65. *call parameter handling is now based on the new param manager
  66. Revision 1.2 2002/08/17 09:23:49 florian
  67. * first part of procinfo rewrite
  68. Revision 1.1 2002/08/13 21:40:59 florian
  69. * more fixes for ppc calling conventions
  70. }