Move instruction decoding into new arch/ directory
[deliverable/binutils-gdb.git] / gdb / arch / aarch64-insn.h
1 /* Copyright (C) 2009-2015 Free Software Foundation, Inc.
2 Contributed by ARM Ltd.
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18
19 #ifndef AARCH64_INSN_H
20 #define AARCH64_INSN_H 1
21
22 extern int aarch64_debug;
23
24 int aarch64_decode_adrp (CORE_ADDR addr, uint32_t insn, unsigned *rd);
25
26 int aarch64_decode_b (CORE_ADDR addr, uint32_t insn, int *is_bl,
27 int32_t *offset);
28
29 int aarch64_decode_bcond (CORE_ADDR addr, uint32_t insn, unsigned *cond,
30 int32_t *offset);
31
32 int aarch64_decode_cb (CORE_ADDR addr, uint32_t insn, int *is64,
33 int *is_cbnz, unsigned *rn, int32_t *offset);
34
35 int aarch64_decode_tb (CORE_ADDR addr, uint32_t insn, int *is_tbnz,
36 unsigned *bit, unsigned *rt, int32_t *imm);
37
38 #endif
This page took 0.033518 seconds and 5 git commands to generate.