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 >
Wrap
C/C++ Source or Header
|
1996-09-28
|
726b
|
35 lines
/* funcs.c
* ....
*
* 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>, July 1996.
*/
#include "config.h"
#include <assert.h>
#include "gtypes.h"
#include "seq.h"
#include "slots.h"
#include "registers.h"
#include "labels.h"
#include "basecode.h"
#include "md.h"
extern int maxArgs;
extern int maxLocal;
extern int maxTemp;
extern int maxStack;
extern int isStatic;
extern nativecode* CODEPC;
#define define_insn(n, i) void i##(sequence* s)
#define OUT (*CODEPC++)
#include "jit.def"