6255a5a52ff874564dcf3e7c0624e86a14a883e9
[cacao.git] / src / vm / jit / powerpc / disass.h
1 /* jit/powerpc/disass.h - disassembler header
2
3    Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
4    Institut f. Computersprachen, TU Wien
5    R. Grafl, A. Krall, C. Kruegel, C. Oates, R. Obermaisser, M. Probst,
6    S. Ring, E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich,
7    J. Wenninger
8
9    This file is part of CACAO.
10
11    This program is free software; you can redistribute it and/or
12    modify it under the terms of the GNU General Public License as
13    published by the Free Software Foundation; either version 2, or (at
14    your option) any later version.
15
16    This program is distributed in the hope that it will be useful, but
17    WITHOUT ANY WARRANTY; without even the implied warranty of
18    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19    General Public License for more details.
20
21    You should have received a copy of the GNU General Public License
22    along with this program; if not, write to the Free Software
23    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
24    02111-1307, USA.
25
26    Contact: cacao@complang.tuwien.ac.at
27
28    Authors: Christian Thalinger
29
30    $Id: disass.h 978 2004-03-25 23:45:51Z twisti $
31
32 */
33
34
35 #ifndef _DISASS_H
36 #define _DISASS_H
37
38 #include "types.h"
39 #include "dis-asm.h"
40
41
42 extern char *regs[];
43
44
45 /* function prototypes */
46 void myprintf(PTR p, const char *fmt, ...);
47 int buffer_read_memory(bfd_vma memaddr, bfd_byte *myaddr, unsigned int length, struct disassemble_info *info);
48 void disassinstr(s4 *code, s4 pos);
49 void disassemble(s4 *code, s4 len);
50
51 #endif /* _DISASS_H */
52
53
54 /*
55  * These are local overrides for various environment variables in Emacs.
56  * Please do not remove this and leave it at the end of the file, where
57  * Emacs will automagically detect them.
58  * ---------------------------------------------------------------------
59  * Local variables:
60  * mode: c
61  * indent-tabs-mode: t
62  * c-basic-offset: 4
63  * tab-width: 4
64  * End:
65  */