1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
# $NetBSD: genassym.cf,v 1.6 2021/11/21 21:31:24 thorpej Exp $
#
# Copyright (c) 2001 The NetBSD Foundation, Inc.
# All rights reserved.
#
# This code is derived from software contributed to The NetBSD Foundation
# by Matt Thomas <matt@3am-sfotware.com>.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
include <sys/types.h>
include <sys/queue.h>
include <sys/cpu.h>
include <sys/signal.h>
include <sys/ucontext.h>
include <machine/frame.h>
define CALLFRAMELEN sizeof(struct callframe)
define CALLFRAME_LR offsetof(struct callframe, cf_lr)
define CALLFRAME_R30 offsetof(struct callframe, cf_r30)
define CALLFRAME_R31 offsetof(struct callframe, cf_r31)
define UC_GREGS offsetof(ucontext_t, uc_mcontext.__gregs[0])
define UC_GREGS_R1 offsetof(ucontext_t, uc_mcontext.__gregs[_REG_R1])
define UC_GREGS_R3 offsetof(ucontext_t, uc_mcontext.__gregs[_REG_R3])
define UC_GREGS_R30 offsetof(ucontext_t, uc_mcontext.__gregs[_REG_R30])
define UC_GREGS_PC offsetof(ucontext_t, uc_mcontext.__gregs[_REG_PC])
define _REG_R0 _REG_R0
define _REG_R1 _REG_R1
define _REG_R2 _REG_R2
define _REG_R3 _REG_R3
define _REG_R4 _REG_R4
define _REG_R5 _REG_R5
define _REG_R6 _REG_R6
define _REG_R7 _REG_R7
define _REG_R8 _REG_R8
define _REG_R9 _REG_R9
define _REG_R10 _REG_R10
define _REG_R11 _REG_R11
define _REG_R12 _REG_R12
define _REG_R13 _REG_R13
define _REG_R14 _REG_R14
define _REG_R15 _REG_R15
define _REG_R16 _REG_R16
define _REG_R17 _REG_R17
define _REG_R18 _REG_R18
define _REG_R19 _REG_R19
define _REG_R20 _REG_R20
define _REG_R21 _REG_R21
define _REG_R22 _REG_R22
define _REG_R23 _REG_R23
define _REG_R24 _REG_R24
define _REG_R25 _REG_R25
define _REG_R26 _REG_R26
define _REG_R27 _REG_R27
define _REG_R28 _REG_R28
define _REG_R29 _REG_R29
define _REG_R30 _REG_R30
define _REG_R31 _REG_R31
define _REG_CR _REG_CR
define _REG_LR _REG_LR
define _REG_PC _REG_PC
define _REG_CTR _REG_CTR
define _REG_XER _REG_XER
define SIG_BLOCK SIG_BLOCK
define SIG_SETMASK SIG_SETMASK
define CACHE_INFO_DCACHE_LINE_SIZE offsetof(struct cache_info, dcache_line_size)
|