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 / funcs.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  726b  |  35 lines

  1. /* funcs.c
  2.  * ....
  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>, July 1996.
  11.  */
  12.  
  13. #include "config.h"
  14. #include <assert.h>
  15. #include "gtypes.h"
  16. #include "seq.h"
  17. #include "slots.h"
  18. #include "registers.h"
  19. #include "labels.h"
  20. #include "basecode.h"
  21. #include "md.h"
  22.  
  23. extern int maxArgs;
  24. extern int maxLocal;
  25. extern int maxTemp;
  26. extern int maxStack;
  27. extern int isStatic;
  28. extern nativecode* CODEPC;
  29.  
  30. #define    define_insn(n, i) void i##(sequence* s)
  31.  
  32. #define    OUT    (*CODEPC++)
  33.  
  34. #include "jit.def"
  35.