narmmat.pas 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. $Id$
  3. Copyright (c) 1998-2002 by Florian Klaempfl
  4. Generate ARM assembler for math 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 narmmat;
  19. {$i fpcdefs.inc}
  20. interface
  21. uses
  22. node,nmat,ncgmat;
  23. type
  24. tarmmoddivnode = class(tmoddivnode)
  25. procedure pass_2;override;
  26. end;
  27. tarmshlshrnode = class(tshlshrnode)
  28. procedure pass_2;override;
  29. end;
  30. implementation
  31. uses
  32. globtype,systems,
  33. cutils,verbose,globals,
  34. symconst,symdef,
  35. aasmbase,aasmcpu,aasmtai,
  36. defutil,
  37. cgbase,cgobj,pass_1,pass_2,
  38. ncon,
  39. cpubase,cpuinfo,cginfo,
  40. ncgutil,cgcpu,cg64f32,rgobj;
  41. {*****************************************************************************
  42. TARMMODDIVNODE
  43. *****************************************************************************}
  44. procedure tarmmoddivnode.pass_2;
  45. begin
  46. end;
  47. {*****************************************************************************
  48. TARMSHLRSHRNODE
  49. *****************************************************************************}
  50. procedure tarmshlshrnode.pass_2;
  51. begin
  52. end;
  53. begin
  54. cmoddivnode:=tarmmoddivnode;
  55. cshlshrnode:=tarmshlshrnode;
  56. end.
  57. {
  58. $Log$
  59. Revision 1.1 2003-08-21 23:23:59 florian
  60. * continued to work on the arm skeleton
  61. }