2018-05-31 21:36:48 +08:00
|
|
|
/* Common target dependent for AArch64 systems.
|
|
|
|
|
|
|
|
Copyright (C) 2018 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
|
|
|
|
#ifndef AARCH64_SVE_LINUX_PTRACE_H
|
|
|
|
#define AARCH64_SVE_LINUX_PTRACE_H
|
|
|
|
|
|
|
|
#include <asm/sigcontext.h>
|
|
|
|
#include <sys/utsname.h>
|
|
|
|
#include <sys/ptrace.h>
|
|
|
|
#include <asm/ptrace.h>
|
|
|
|
|
2018-06-14 17:10:03 +08:00
|
|
|
#ifndef SVE_SIG_ZREGS_SIZE
|
|
|
|
#include "aarch64-sve-linux-sigcontext.h"
|
|
|
|
#endif
|
|
|
|
|
2018-06-15 19:21:31 +08:00
|
|
|
/* Indicates whether a SVE ptrace header is followed by SVE registers or a
|
|
|
|
fpsimd structure. */
|
|
|
|
|
2018-06-22 17:26:51 +08:00
|
|
|
#define HAS_SVE_STATE(header) ((header).flags & SVE_PT_REGS_SVE)
|
2018-06-15 19:21:31 +08:00
|
|
|
|
2018-05-31 21:36:48 +08:00
|
|
|
/* Read VQ for the given tid using ptrace. If SVE is not supported then zero
|
|
|
|
is returned (on a system that supports SVE, then VQ cannot be zero). */
|
|
|
|
|
2018-06-01 23:37:45 +08:00
|
|
|
uint64_t aarch64_sve_get_vq (int tid);
|
2018-05-31 21:36:48 +08:00
|
|
|
|
2018-06-15 19:21:31 +08:00
|
|
|
/* Read the current SVE register set using ptrace, allocating space as
|
|
|
|
required. */
|
|
|
|
|
|
|
|
extern std::unique_ptr<gdb_byte[]> aarch64_sve_get_sveregs (int tid);
|
|
|
|
|
|
|
|
/* Put the registers from linux structure buf into register buffer. */
|
|
|
|
|
|
|
|
extern void aarch64_sve_regs_copy_to_reg_buf (struct reg_buffer_common *reg_buf,
|
|
|
|
const void *buf);
|
|
|
|
|
|
|
|
/* Put the registers from register buffer into linux structure buf. */
|
|
|
|
|
|
|
|
extern void
|
|
|
|
aarch64_sve_regs_copy_from_reg_buf (const struct reg_buffer_common *reg_buf,
|
|
|
|
void *buf);
|
|
|
|
|
2018-05-31 21:36:48 +08:00
|
|
|
#endif /* aarch64-sve-linux-ptrace.h */
|