blob: 9c1e7409be8ba4157a0e415124a1b7a125baff5d [file] [log] [blame]
sewardj9e6491a2005-07-02 19:24:10 +00001
2/*--------------------------------------------------------------------*/
sewardj752f9062010-05-03 21:38:49 +00003/*--- begin guest_generic_bb_to_IR.h ---*/
sewardj9e6491a2005-07-02 19:24:10 +00004/*--------------------------------------------------------------------*/
5
6/*
sewardj752f9062010-05-03 21:38:49 +00007 This file is part of Valgrind, a dynamic binary instrumentation
8 framework.
sewardj9e6491a2005-07-02 19:24:10 +00009
sewardje6c53e02011-10-23 07:33:43 +000010 Copyright (C) 2004-2011 OpenWorks LLP
sewardj752f9062010-05-03 21:38:49 +000011 info@open-works.net
sewardj9e6491a2005-07-02 19:24:10 +000012
sewardj752f9062010-05-03 21:38:49 +000013 This program is free software; you can redistribute it and/or
14 modify it under the terms of the GNU General Public License as
15 published by the Free Software Foundation; either version 2 of the
16 License, or (at your option) any later version.
sewardj9e6491a2005-07-02 19:24:10 +000017
sewardj752f9062010-05-03 21:38:49 +000018 This program is distributed in the hope that it will be useful, but
19 WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
sewardj7bd6ffe2005-08-03 16:07:36 +000026 02110-1301, USA.
27
sewardj752f9062010-05-03 21:38:49 +000028 The GNU General Public License is contained in the file COPYING.
sewardj9e6491a2005-07-02 19:24:10 +000029
30 Neither the names of the U.S. Department of Energy nor the
31 University of California nor the names of its contributors may be
32 used to endorse or promote products derived from this software
33 without prior written permission.
sewardj9e6491a2005-07-02 19:24:10 +000034*/
35
sewardjcef7d3e2009-07-02 12:21:59 +000036#ifndef __VEX_GUEST_GENERIC_BB_TO_IR_H
37#define __VEX_GUEST_GENERIC_BB_TO_IR_H
sewardj9e6491a2005-07-02 19:24:10 +000038
39
40/* This defines stuff needed by the guest insn disassemblers.
41 It's a bit circular; is imported by
cerion75949202005-12-24 13:14:11 +000042 - the guest-specific toIR.c files (guest-{x86,amd64,ppc,arm}/toIR.c)
sewardj9e6491a2005-07-02 19:24:10 +000043 - the generic disassembly driver (bb_to_IR.c)
44 - vex_main.c
45*/
46
47
48/* ---------------------------------------------------------------
49 Result of disassembling an instruction
50 --------------------------------------------------------------- */
51
52/* The results of disassembling an instruction. There are three
53 possible outcomes. For Dis_Resteer, the disassembler _must_
54 continue at the specified address. For Dis_StopHere, the
55 disassembler _must_ terminate the BB. For Dis_Continue, we may at
56 our option either disassemble the next insn, or terminate the BB;
57 but in the latter case we must set the bb's ->next field to point
58 to the next instruction. */
59
60typedef
61
62 struct {
63
64 /* The disassembled insn has this length. Must always be
65 set. */
66 Int len;
67
68 /* What happens next?
69 Dis_StopHere: this insn terminates the BB; we must stop.
70 Dis_Continue: we can optionally continue into the next insn
sewardj984d9b12010-01-15 10:53:21 +000071 Dis_ResteerU: followed an unconditional branch; continue at
72 'continueAt'
73 Dis_ResteerC: (speculatively, of course) followed a
74 conditional branch; continue at 'continueAt'
sewardj9e6491a2005-07-02 19:24:10 +000075 */
sewardj984d9b12010-01-15 10:53:21 +000076 enum { Dis_StopHere, Dis_Continue,
77 Dis_ResteerU, Dis_ResteerC } whatNext;
sewardj9e6491a2005-07-02 19:24:10 +000078
sewardjc6f970f2012-04-02 21:54:49 +000079 /* For Dis_StopHere, we need to end the block and create a
80 transfer to whatever the NIA is. That will have presumably
81 been set by the IR generated for this insn. So we need to
82 know the jump kind to use. Should Ijk_INVALID in other Dis_
83 cases. */
84 IRJumpKind jk_StopHere;
85
sewardj9e6491a2005-07-02 19:24:10 +000086 /* For Dis_Resteer, this is the guest address we should continue
87 at. Otherwise ignored (should be zero). */
88 Addr64 continueAt;
89
90 }
91
92 DisResult;
93
94
95/* ---------------------------------------------------------------
96 The type of a function which disassembles one instruction.
97 C's function-type syntax is really astonishing bizarre.
98 --------------------------------------------------------------- */
99
100/* A function of this type (DisOneInstrFn) disassembles an instruction
101 located at host address &guest_code[delta], whose guest IP is
102 guest_IP (this may be entirely unrelated to where the insn is
103 actually located in the host's address space.). The returned
104 DisResult.len field carries its size. If the returned
105 DisResult.whatNext field is Dis_Resteer then DisResult.continueAt
106 should hold the guest IP of the next insn to disassemble.
107
108 disInstr is not permitted to return Dis_Resteer if resteerOkFn,
109 when applied to the address which it wishes to resteer into,
110 returns False.
111
112 The resulting IR is added to the end of irbb.
113*/
114
115typedef
116
117 DisResult (*DisOneInstrFn) (
118
sewardjdd40fdf2006-12-24 02:20:24 +0000119 /* This is the IRSB to which the resulting IR is to be appended. */
120 /*OUT*/ IRSB* irbb,
sewardj9e6491a2005-07-02 19:24:10 +0000121
sewardj984d9b12010-01-15 10:53:21 +0000122 /* Return True iff resteering to the given addr is allowed (for
123 branches/calls to destinations that are known at JIT-time) */
sewardjc716aea2006-01-17 01:48:46 +0000124 /*IN*/ Bool (*resteerOkFn) ( /*opaque*/void*, Addr64 ),
125
sewardj984d9b12010-01-15 10:53:21 +0000126 /* Should we speculatively resteer across conditional branches?
127 (Experimental and not enabled by default). The strategy is
128 to assume that backward branches are taken and forward
129 branches are not taken. */
130 /*IN*/ Bool resteerCisOk,
131
sewardjc716aea2006-01-17 01:48:46 +0000132 /* Vex-opaque data passed to all caller (valgrind) supplied
133 callbacks. */
134 /*IN*/ void* callback_opaque,
sewardj9e6491a2005-07-02 19:24:10 +0000135
136 /* Where is the guest code? */
137 /*IN*/ UChar* guest_code,
138
139 /* Where is the actual insn? Note: it's at &guest_code[delta] */
140 /*IN*/ Long delta,
141
142 /* What is the guest IP of the insn? */
143 /*IN*/ Addr64 guest_IP,
144
145 /* Info about the guest architecture */
sewardja5f55da2006-04-30 23:37:32 +0000146 /*IN*/ VexArch guest_arch,
sewardj9e6491a2005-07-02 19:24:10 +0000147 /*IN*/ VexArchInfo* archinfo,
148
sewardjdd40fdf2006-12-24 02:20:24 +0000149 /* ABI info for both guest and host */
150 /*IN*/ VexAbiInfo* abiinfo,
sewardjaca070a2006-10-17 00:28:22 +0000151
sewardj9e6491a2005-07-02 19:24:10 +0000152 /* Is the host bigendian? */
153 /*IN*/ Bool host_bigendian
154
155 );
156
157
158/* ---------------------------------------------------------------
159 Top-level BB to IR conversion fn.
160 --------------------------------------------------------------- */
161
162/* See detailed comment in bb_to_IR.c. */
163extern
sewardjbc161a42011-06-07 21:28:38 +0000164IRSB* bb_to_IR (
165 /*OUT*/VexGuestExtents* vge,
166 /*OUT*/UInt* n_sc_extents,
167 /*IN*/ void* callback_opaque,
168 /*IN*/ DisOneInstrFn dis_instr_fn,
169 /*IN*/ UChar* guest_code,
170 /*IN*/ Addr64 guest_IP_bbstart,
171 /*IN*/ Bool (*chase_into_ok)(void*,Addr64),
172 /*IN*/ Bool host_bigendian,
173 /*IN*/ VexArch arch_guest,
174 /*IN*/ VexArchInfo* archinfo_guest,
175 /*IN*/ VexAbiInfo* abiinfo_both,
176 /*IN*/ IRType guest_word_type,
177 /*IN*/ UInt (*needs_self_check)(void*,VexGuestExtents*),
178 /*IN*/ Bool (*preamble_function)(void*,IRSB*),
sewardjc6f970f2012-04-02 21:54:49 +0000179 /*IN*/ Int offB_GUEST_TISTART,
180 /*IN*/ Int offB_GUEST_TILEN,
181 /*IN*/ Int offB_GUEST_IP,
182 /*IN*/ Int szB_GUEST_IP
sewardjbc161a42011-06-07 21:28:38 +0000183 );
sewardj9e6491a2005-07-02 19:24:10 +0000184
185
sewardjcef7d3e2009-07-02 12:21:59 +0000186#endif /* ndef __VEX_GUEST_GENERIC_BB_TO_IR_H */
sewardj9e6491a2005-07-02 19:24:10 +0000187
188/*--------------------------------------------------------------------*/
sewardjcef7d3e2009-07-02 12:21:59 +0000189/*--- end guest_generic_bb_to_IR.h ---*/
sewardj9e6491a2005-07-02 19:24:10 +0000190/*--------------------------------------------------------------------*/