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 / code.h < prev    next >
C/C++ Source or Header  |  1996-09-28  |  755b  |  37 lines

  1. /* code.h
  2.  * Define a code module.
  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>, February 1996.
  11.  */
  12.  
  13. #ifndef __code_h
  14. #define __code_h
  15.  
  16.  
  17. union _attribute_info;
  18. struct _jexception;
  19.  
  20. typedef struct _Code {
  21.     u2            max_stack;
  22.     u2            max_locals;
  23.     u4            code_length;
  24.     u1*            code;
  25.     u2            exception_table_length;
  26.     struct _jexception*    exception_table;
  27.     u2            attribute_count;
  28.     union _attribute_info*    attributes;
  29. } Code;
  30.  
  31. struct _methods;
  32. struct _classFile;
  33.  
  34. void    addCode(struct _methods*, uint32, struct _classFile*);
  35.  
  36. #endif
  37.