| /* -*- c-set-style: "K&R"; c-basic-offset: 8 -*- |
| * |
| * This file is part of PRoot. |
| * |
| * Copyright (C) 2014 STMicroelectronics |
| * |
| * 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 2 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, write to the Free Software |
| * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
| * 02110-1301 USA. |
| */ |
| |
| #ifndef TRACEE_REG_H |
| #define TRACEE_REG_H |
| |
| #include "tracee/tracee.h" |
| #include "arch.h" |
| |
| typedef enum { |
| SYSARG_NUM = 0, |
| SYSARG_1, |
| SYSARG_2, |
| SYSARG_3, |
| SYSARG_4, |
| SYSARG_5, |
| SYSARG_6, |
| SYSARG_RESULT, |
| STACK_POINTER, |
| INSTR_POINTER, |
| RTLD_FINI, |
| STATE_FLAGS, |
| USERARG_1, |
| } Reg; |
| |
| extern int fetch_regs(Tracee *tracee); |
| extern int push_regs(Tracee *tracee); |
| |
| extern word_t peek_reg(const Tracee *tracee, RegVersion version, Reg reg); |
| extern void poke_reg(Tracee *tracee, Reg reg, word_t value); |
| |
| extern void print_current_regs(Tracee *tracee, int verbose_level, const char *message); |
| extern void save_current_regs(Tracee *tracee, RegVersion version); |
| |
| #endif /* TRACEE_REG_H */ |