blob: ac87510a24b8743ae5898ec61c5c5bc182ed512c [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
Elliott Hughesed398002017-06-21 14:41:24 -070010 Copyright (C) 2004-2017 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
florian58a637b2012-09-30 20:30:17 +000039#include "libvex_basictypes.h"
40#include "libvex_ir.h" // IRJumpKind
41#include "libvex.h" // VexArch
sewardj9e6491a2005-07-02 19:24:10 +000042
43/* This defines stuff needed by the guest insn disassemblers.
44 It's a bit circular; is imported by
cerion75949202005-12-24 13:14:11 +000045 - the guest-specific toIR.c files (guest-{x86,amd64,ppc,arm}/toIR.c)
sewardj9e6491a2005-07-02 19:24:10 +000046 - the generic disassembly driver (bb_to_IR.c)
47 - vex_main.c
48*/
49
50
51/* ---------------------------------------------------------------
52 Result of disassembling an instruction
53 --------------------------------------------------------------- */
54
55/* The results of disassembling an instruction. There are three
56 possible outcomes. For Dis_Resteer, the disassembler _must_
57 continue at the specified address. For Dis_StopHere, the
58 disassembler _must_ terminate the BB. For Dis_Continue, we may at
59 our option either disassemble the next insn, or terminate the BB;
60 but in the latter case we must set the bb's ->next field to point
61 to the next instruction. */
62
63typedef
64
65 struct {
66
67 /* The disassembled insn has this length. Must always be
68 set. */
florian8e2d9712015-01-02 14:40:59 +000069 UInt len;
sewardj9e6491a2005-07-02 19:24:10 +000070
71 /* What happens next?
72 Dis_StopHere: this insn terminates the BB; we must stop.
73 Dis_Continue: we can optionally continue into the next insn
sewardj984d9b12010-01-15 10:53:21 +000074 Dis_ResteerU: followed an unconditional branch; continue at
75 'continueAt'
76 Dis_ResteerC: (speculatively, of course) followed a
77 conditional branch; continue at 'continueAt'
sewardj9e6491a2005-07-02 19:24:10 +000078 */
Elliott Hughesed398002017-06-21 14:41:24 -070079 enum { Dis_StopHere=0x10, Dis_Continue,
sewardj984d9b12010-01-15 10:53:21 +000080 Dis_ResteerU, Dis_ResteerC } whatNext;
sewardj9e6491a2005-07-02 19:24:10 +000081
Elliott Hughesed398002017-06-21 14:41:24 -070082 /* Any other hints that we should feed back to the disassembler?
83 Dis_HintNone: no hint
84 Dis_HintVerbose: this insn potentially generates a lot of code
85 */
86 enum { Dis_HintNone=0x20, Dis_HintVerbose } hint;
87
88 /* For whatNext==Dis_StopHere, we need to end the block and create a
sewardjc6f970f2012-04-02 21:54:49 +000089 transfer to whatever the NIA is. That will have presumably
90 been set by the IR generated for this insn. So we need to
91 know the jump kind to use. Should Ijk_INVALID in other Dis_
92 cases. */
93 IRJumpKind jk_StopHere;
94
sewardj9e6491a2005-07-02 19:24:10 +000095 /* For Dis_Resteer, this is the guest address we should continue
96 at. Otherwise ignored (should be zero). */
florian0eaa35f2015-01-02 13:34:15 +000097 Addr continueAt;
sewardj9e6491a2005-07-02 19:24:10 +000098 }
99
100 DisResult;
101
102
103/* ---------------------------------------------------------------
104 The type of a function which disassembles one instruction.
105 C's function-type syntax is really astonishing bizarre.
106 --------------------------------------------------------------- */
107
108/* A function of this type (DisOneInstrFn) disassembles an instruction
109 located at host address &guest_code[delta], whose guest IP is
110 guest_IP (this may be entirely unrelated to where the insn is
111 actually located in the host's address space.). The returned
112 DisResult.len field carries its size. If the returned
113 DisResult.whatNext field is Dis_Resteer then DisResult.continueAt
114 should hold the guest IP of the next insn to disassemble.
115
116 disInstr is not permitted to return Dis_Resteer if resteerOkFn,
117 when applied to the address which it wishes to resteer into,
118 returns False.
119
120 The resulting IR is added to the end of irbb.
121*/
122
123typedef
124
125 DisResult (*DisOneInstrFn) (
126
sewardjdd40fdf2006-12-24 02:20:24 +0000127 /* This is the IRSB to which the resulting IR is to be appended. */
128 /*OUT*/ IRSB* irbb,
sewardj9e6491a2005-07-02 19:24:10 +0000129
sewardj984d9b12010-01-15 10:53:21 +0000130 /* Return True iff resteering to the given addr is allowed (for
131 branches/calls to destinations that are known at JIT-time) */
florianbeac5302014-12-31 12:09:38 +0000132 /*IN*/ Bool (*resteerOkFn) ( /*opaque*/void*, Addr ),
sewardjc716aea2006-01-17 01:48:46 +0000133
sewardj984d9b12010-01-15 10:53:21 +0000134 /* Should we speculatively resteer across conditional branches?
135 (Experimental and not enabled by default). The strategy is
136 to assume that backward branches are taken and forward
137 branches are not taken. */
138 /*IN*/ Bool resteerCisOk,
139
sewardjc716aea2006-01-17 01:48:46 +0000140 /* Vex-opaque data passed to all caller (valgrind) supplied
141 callbacks. */
142 /*IN*/ void* callback_opaque,
sewardj9e6491a2005-07-02 19:24:10 +0000143
144 /* Where is the guest code? */
florian8462d112014-09-24 15:18:09 +0000145 /*IN*/ const UChar* guest_code,
sewardj9e6491a2005-07-02 19:24:10 +0000146
147 /* Where is the actual insn? Note: it's at &guest_code[delta] */
148 /*IN*/ Long delta,
149
150 /* What is the guest IP of the insn? */
floriand4cc0de2015-01-02 11:44:12 +0000151 /*IN*/ Addr guest_IP,
sewardj9e6491a2005-07-02 19:24:10 +0000152
153 /* Info about the guest architecture */
sewardja5f55da2006-04-30 23:37:32 +0000154 /*IN*/ VexArch guest_arch,
floriancacba8e2014-12-15 18:58:07 +0000155 /*IN*/ const VexArchInfo* archinfo,
sewardj9e6491a2005-07-02 19:24:10 +0000156
sewardjdd40fdf2006-12-24 02:20:24 +0000157 /* ABI info for both guest and host */
floriancacba8e2014-12-15 18:58:07 +0000158 /*IN*/ const VexAbiInfo* abiinfo,
sewardjaca070a2006-10-17 00:28:22 +0000159
sewardj9b769162014-07-24 12:42:03 +0000160 /* The endianness of the host */
161 /*IN*/ VexEndness host_endness,
sewardj442e51a2012-12-06 18:08:04 +0000162
163 /* Should diagnostics be printed for illegal instructions? */
164 /*IN*/ Bool sigill_diag
sewardj9e6491a2005-07-02 19:24:10 +0000165
166 );
167
168
169/* ---------------------------------------------------------------
170 Top-level BB to IR conversion fn.
171 --------------------------------------------------------------- */
172
sewardjca2c3c72015-02-05 12:53:20 +0000173/* See detailed comment in guest_generic_bb_to_IR.c. */
sewardj9e6491a2005-07-02 19:24:10 +0000174extern
sewardjbc161a42011-06-07 21:28:38 +0000175IRSB* bb_to_IR (
176 /*OUT*/VexGuestExtents* vge,
177 /*OUT*/UInt* n_sc_extents,
sewardjfadbbe22012-04-24 11:49:03 +0000178 /*OUT*/UInt* n_guest_instrs, /* stats only */
sewardjca2c3c72015-02-05 12:53:20 +0000179 /*MOD*/VexRegisterUpdates* pxControl,
sewardjbc161a42011-06-07 21:28:38 +0000180 /*IN*/ void* callback_opaque,
181 /*IN*/ DisOneInstrFn dis_instr_fn,
florian8462d112014-09-24 15:18:09 +0000182 /*IN*/ const UChar* guest_code,
floriand4cc0de2015-01-02 11:44:12 +0000183 /*IN*/ Addr guest_IP_bbstart,
florianbeac5302014-12-31 12:09:38 +0000184 /*IN*/ Bool (*chase_into_ok)(void*,Addr),
sewardj9b769162014-07-24 12:42:03 +0000185 /*IN*/ VexEndness host_endness,
sewardj442e51a2012-12-06 18:08:04 +0000186 /*IN*/ Bool sigill_diag,
sewardjbc161a42011-06-07 21:28:38 +0000187 /*IN*/ VexArch arch_guest,
floriancacba8e2014-12-15 18:58:07 +0000188 /*IN*/ const VexArchInfo* archinfo_guest,
189 /*IN*/ const VexAbiInfo* abiinfo_both,
sewardjbc161a42011-06-07 21:28:38 +0000190 /*IN*/ IRType guest_word_type,
sewardjca2c3c72015-02-05 12:53:20 +0000191 /*IN*/ UInt (*needs_self_check)
192 (void*, /*MB_MOD*/VexRegisterUpdates*,
193 const VexGuestExtents*),
sewardjbc161a42011-06-07 21:28:38 +0000194 /*IN*/ Bool (*preamble_function)(void*,IRSB*),
sewardj05f5e012014-05-04 10:52:11 +0000195 /*IN*/ Int offB_GUEST_CMSTART,
196 /*IN*/ Int offB_GUEST_CMLEN,
sewardjc6f970f2012-04-02 21:54:49 +0000197 /*IN*/ Int offB_GUEST_IP,
198 /*IN*/ Int szB_GUEST_IP
sewardjbc161a42011-06-07 21:28:38 +0000199 );
sewardj9e6491a2005-07-02 19:24:10 +0000200
201
sewardjcef7d3e2009-07-02 12:21:59 +0000202#endif /* ndef __VEX_GUEST_GENERIC_BB_TO_IR_H */
sewardj9e6491a2005-07-02 19:24:10 +0000203
204/*--------------------------------------------------------------------*/
sewardjcef7d3e2009-07-02 12:21:59 +0000205/*--- end guest_generic_bb_to_IR.h ---*/
sewardj9e6491a2005-07-02 19:24:10 +0000206/*--------------------------------------------------------------------*/