home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / kaffe-0.5p4-src.tgz / tar.out / contrib / kaffe / kaffevm / jit / codeproto.h < prev    next >
C/C++ Source or Header  |  1996-09-28  |  1KB  |  55 lines

  1. /* codeproto.h
  2.  * Code prototypes.
  3.  *
  4.  * Copyright (c) 1996 Systems Architecture Research Centre,
  5.  *           City University, London, UK.
  6.  *
  7.  * See the file "license.terms" for information on usage and redistribution
  8.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  9.  *
  10.  * Written by Tim Wilkinson <tim@sarc.city.ac.uk>, June 1996.
  11.  */
  12.  
  13. #ifndef __codeproto_h
  14. #define __codeproto_h
  15.  
  16. void _start_basic_block(uintp, uintp);
  17. void _end_basic_block(uintp, uintp);
  18.  
  19. void move_long_const(slots*, jlong);
  20. void move_double_const(slots*, jdouble);
  21.  
  22. void add_int(slots*, slots*, slots*);
  23. void sub_int(slots*, slots*, slots*);
  24. void mul_int(slots*, slots*, slots*);
  25. void div_int(slots*, slots*, slots*);
  26. void rem_int(slots*, slots*, slots*);
  27. void and_int(slots*, slots*, slots*);
  28. void or_int(slots*, slots*, slots*);
  29. void xor_int(slots*, slots*, slots*);
  30.  
  31. void ashr_int(slots*, slots*, slots*);
  32. void lshr_int(slots*, slots*, slots*);
  33. void lshl_int(slots*, slots*, slots*);
  34.  
  35. void cmp_int(slots*, slots*, slots*);
  36.  
  37. void pusharg_int(slots*);
  38. void pusharg_int_const(jint);
  39. void pusharg_long(slots*);
  40. void pusharg_float(slots*);
  41. void pusharg_double(slots*);
  42. void popargs(int);
  43.  
  44. void return_int(slots*);
  45. void return_long(slots*);
  46. void return_float(slots*);
  47. void return_double(slots*);
  48.  
  49. void call_ref(uintp);
  50. void softcall_badarrayindex(void);
  51.  
  52. label* build_code_ref(uint8*, uintp);
  53.  
  54. #endif
  55.