Shorten long lines in linux-aarch64-low.c
[deliverable/binutils-gdb.git] / gdb / arch / aarch64-insn.h
CommitLineData
787749ea
PL
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
22extern int aarch64_debug;
23
6ec5f4be
PL
24int aarch64_decode_adr (CORE_ADDR addr, uint32_t insn, int *is_adrp,
25 unsigned *rd, int32_t *offset);
787749ea
PL
26
27int aarch64_decode_b (CORE_ADDR addr, uint32_t insn, int *is_bl,
28 int32_t *offset);
29
30int aarch64_decode_bcond (CORE_ADDR addr, uint32_t insn, unsigned *cond,
31 int32_t *offset);
32
33int aarch64_decode_cb (CORE_ADDR addr, uint32_t insn, int *is64,
34 int *is_cbnz, unsigned *rn, int32_t *offset);
35
36int aarch64_decode_tb (CORE_ADDR addr, uint32_t insn, int *is_tbnz,
37 unsigned *bit, unsigned *rt, int32_t *imm);
38
39#endif
This page took 0.026646 seconds and 4 git commands to generate.