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
/
codeinfo.h
< prev
next >
Wrap
C/C++ Source or Header
|
1996-09-28
|
617b
|
30 lines
/* codeinfo.h
* Defines the info we hold on code while translating it.
*
* Copyright (c) 1996 Systems Architecture Research Centre,
* City University, London, UK.
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
* Written by Tim Wilkinson <tim@sarc.city.ac.uk>, June 1996.
*/
#ifndef __codeinfo_h
#define __codeinfo_h
#define INORM 0
#define IBBSTART 1
#define IEBSTART 2
#define BLOCKPOINT(pc) code[pc].block
typedef struct {
uint8 block;
int16 stackdepth;
uintp pc;
} codes;
extern codes* code;
#endif