2 /*--------------------------------------------------------------------*/
3 /*--- Header included by every core C file. pub_core_basics.h ---*/
4 /*--------------------------------------------------------------------*/
7 This file is part of Valgrind, a dynamic binary instrumentation
10 Copyright (C) 2000-2017 Julian Seward
13 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.
18 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.
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, see <http://www.gnu.org/licenses/>.
26 The GNU General Public License is contained in the file COPYING.
29 #ifndef __PUB_CORE_BASICS_H
30 #define __PUB_CORE_BASICS_H
32 //--------------------------------------------------------------------
33 // PURPOSE: This header should be imported by every single C file
34 // in the core. It contains the basic types and other things needed
36 //--------------------------------------------------------------------
38 #include "pub_tool_basics.h"
40 /* ---------------------------------------------------------------------
41 A struct to hold starting values for stack unwinding.
42 ------------------------------------------------------------------ */
44 /* This really shouldn't be here. But putting it elsewhere leads to a
45 veritable swamp of new module cycles. */
47 /* To support CFA-based stack unwinding, and stack unwinding in
48 general, we need to be able to get hold of the values of specific
49 registers, in order to start the unwinding process. This is
50 unavoidably arch and platform dependent. Here is a struct which
51 holds the relevant values. All platforms must have a program
52 counter and a stack pointer register, but the other fields (frame
53 pointer? link register? misc other regs?) are ad-hoc. Note, the
54 common fields are 64-bit, so as to make this host-independent. */
58 ULong r_pc
; /* x86:EIP, amd64:RIP, ppc:CIA, arm:R15, mips:pc */
59 ULong r_sp
; /* x86:ESP, amd64:RSP, ppc:R1, arm:R13, mips:sp */
96 UInt r30
; /* Stack frame pointer or subroutine variable */
97 UInt r31
; /* Return address of the last subroutine call */
101 ULong r30
; /* Stack frame pointer or subroutine variable */
102 ULong r31
; /* Return address of the last subroutine call */
110 #endif // __PUB_CORE_BASICS_H
112 /*--------------------------------------------------------------------*/
114 /*--------------------------------------------------------------------*/