Comment
[cacao.git] / i386 / methodtable.h
1 /* i386/methodtable.h **********************************************************
2
3     Copyright (c) 1997 A. Krall, R. Grafl, M. Gschwind, M. Probst
4
5     See file COPYRIGHT for information on usage and disclaimer of warranties
6
7     Contains the codegenerator for an i386 processor.
8     This module generates i386 machine code for a sequence of
9     pseudo commands (ICMDs).
10
11     Authors: Christian Thalinger EMAIL: cacao@complang.tuwien.ac.at
12
13     Last Change: $Id: methodtable.h 385 2003-07-10 10:45:57Z twisti $
14
15 *******************************************************************************/
16
17 #ifndef _METHODTABLE_H
18 #define _METHODTABLE_H
19
20 typedef struct _mtentry mtentry;
21
22 struct _mtentry {
23     u1 *start;
24     u1 *end;
25     mtentry *next;
26 };
27
28 void addmethod(u1 *start, u1 *end);
29 u1 *findmethod(u1 *pos);
30
31 #endif