-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstackFrame_ppc64.cpp
166 lines (138 loc) · 4.76 KB
/
stackFrame_ppc64.cpp
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
/*
* Copyright 2021 Andrei Pangin
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Authors: Andrei Pangin and Gunter Haug
*/
#if defined(__PPC64__) && (__BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__)
#include "stackFrame.h"
#include <errno.h>
#include <signal.h>
uintptr_t &StackFrame::pc() {
return (uintptr_t &)_ucontext->uc_mcontext.regs->nip;
}
uintptr_t &StackFrame::sp() {
return (uintptr_t &)_ucontext->uc_mcontext.regs->gpr[1];
}
uintptr_t &StackFrame::fp() {
return *((uintptr_t *)_ucontext->uc_mcontext.regs->gpr[1]);
}
uintptr_t &StackFrame::retval() {
return (uintptr_t &)_ucontext->uc_mcontext.regs->gpr[3];
}
uintptr_t StackFrame::link() {
return (uintptr_t)_ucontext->uc_mcontext.regs->link;
}
uintptr_t StackFrame::arg0() {
return (uintptr_t)_ucontext->uc_mcontext.regs->gpr[3];
}
uintptr_t StackFrame::arg1() {
return (uintptr_t)_ucontext->uc_mcontext.regs->gpr[4];
}
uintptr_t StackFrame::arg2() {
return (uintptr_t)_ucontext->uc_mcontext.regs->gpr[5];
}
uintptr_t StackFrame::arg3() {
return (uintptr_t)_ucontext->uc_mcontext.regs->gpr[6];
}
uintptr_t StackFrame::jarg0() {
// Unimplemented
return 0;
}
uintptr_t StackFrame::method() {
// Unimplemented
return 0;
}
uintptr_t StackFrame::senderSP() {
// Unimplemented
return 0;
}
void StackFrame::ret() { pc() = link(); }
static inline bool inC1EpilogueCrit(uintptr_t pc) {
if (!(pc & 0xfff)) {
// Make sure we are not at the page boundary, so that reading [pc - 1] is
// safe
return false;
}
// C1 epilogue and critical section (posX)
// 3821**** add r1,r1,xx
// pos3 xxxxxxxx
// pos2 1000e1eb ld r31,16(r1)
// pos1 a603e87f mtlr r31
// xxxxxxxx
// 2000804e blr
instruction_t *inst = (instruction_t *)pc;
if (inst[1] == 0xebe10010 && inst[2] == 0x7fe803a6 ||
inst[0] == 0xebe10010 && inst[1] == 0x7fe803a6 ||
inst[-1] == 0xebe10010 && inst[0] == 0x7fe803a6) {
return true;
}
return false; // not in critical section
}
static inline bool inC2PrologueCrit(uintptr_t pc) {
// C2 prologue and critical section
// f821**** stdu r1, (xx)r1
// pos1 fa950010 std r20,16(r21)
instruction_t *inst = (instruction_t *)pc;
if (inst[0] == 0xfa950010 && (inst[-1] & 0xffff0000) == 0xf8210000) {
return true;
}
return false; // not in critical section
}
bool StackFrame::unwindStub(instruction_t *entry, const char *name,
uintptr_t &pc, uintptr_t &sp, uintptr_t &fp) {
pc = link();
return true;
}
bool StackFrame::unwindCompiled(NMethod *nm, uintptr_t &pc, uintptr_t &sp,
uintptr_t &fp) {
// On PPC there is a valid back link to the previous frame at all times. The
// callee stores the return address in the caller's frame before it constructs
// its own frame. After it has destroyed its frame it restores the link
// register and returns. A problematic sequence is the prologue/epilogue of a
// compiled method before/after frame construction/destruction. Therefore
// popping the frame would not help here, as it is not yet/anymore present,
// rather more adjusting the pc to the callers pc does the trick. There are
// two exceptions to this, One in the prologue of C2 compiled methods and one
// in the epilogue of C1 compiled methods.
if (inC1EpilogueCrit(pc)) {
// lr not yet set: use the value stored in the frame
pc = ((uintptr_t *)sp)[2];
} else if (inC2PrologueCrit(pc)) {
// frame constructed but lr not yet stored in it: just do it here
*(((unsigned long *)_ucontext->uc_mcontext.regs->gpr[21]) + 2) =
(unsigned long)_ucontext->uc_mcontext.regs->gpr[20];
} else {
// most probably caller's framer is still on top but pc is already in
// callee: use caller's pc
pc = link();
}
return true;
}
void StackFrame::adjustSP(const void *entry, const void *pc, uintptr_t &sp) {
// Not needed
}
bool StackFrame::unwindAtomicStub(const void*& pc) {
// Not needed
return false;
}
bool StackFrame::skipFaultInstruction() { return false; }
bool StackFrame::checkInterruptedSyscall() {
return retval() == (uintptr_t)-EINTR;
}
bool StackFrame::isSyscall(instruction_t *pc) {
// sc/svc
return (*pc & 0x1f) == 17;
}
#endif // defined(__PPC64__) && (__BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__)