-
Notifications
You must be signed in to change notification settings - Fork 748
/
Copy pathdrophelp.c
97 lines (84 loc) · 3.69 KB
/
drophelp.c
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
/*******************************************************************************
* Copyright IBM Corp. and others 2001
*
* This program and the accompanying materials are made available under
* the terms of the Eclipse Public License 2.0 which accompanies this
* distribution and is available at https://www.eclipse.org/legal/epl-2.0/
* or the Apache License, Version 2.0 which accompanies this distribution and
* is available at https://www.apache.org/licenses/LICENSE-2.0.
*
* This Source Code may also be made available under the following
* Secondary Licenses when the conditions for such availability set
* forth in the Eclipse Public License, v. 2.0 are satisfied: GNU
* General Public License, version 2 with the GNU Classpath
* Exception [1] and GNU General Public License, version 2 with the
* OpenJDK Assembly Exception [2].
*
* [1] https://www.gnu.org/software/classpath/license.html
* [2] https://openjdk.org/legal/assembly-exception.html
*
* SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0 OR GPL-2.0-only WITH OpenJDK-assembly-exception-1.0
*******************************************************************************/
#include "j9.h"
#include "j9protos.h"
#include "bcnames.h"
#include "j9consts.h"
#include "rommeth.h"
#include "ut_j9vm.h"
UDATA
dropPendingSendPushes(J9VMThread *currentThread)
{
UDATA bytecodedFrame = FALSE;
U_8 * pc = currentThread->pc;
if ((UDATA) pc <= J9SF_MAX_SPECIAL_FRAME_TYPE) {
currentThread->sp = (UDATA *) ((UDATA) currentThread->sp + (UDATA) currentThread->literals);
currentThread->literals = NULL;
if ((UDATA) pc == J9SF_FRAME_TYPE_JNI_NATIVE_METHOD) {
J9SFJNINativeMethodFrame * nativeMethodFrame = (J9SFJNINativeMethodFrame *) currentThread->sp;
nativeMethodFrame->specialFrameFlags &= ~(UDATA)J9_SSF_JNI_PUSHED_REF_COUNT_MASK;
}
} else if (*pc == JBimpdep2) {
/* Call-in frame - drop the pushed arguments, keep any special frame pushes */
currentThread->sp = (UDATA *) ((UDATA)(currentThread->arg0EA + 1) - sizeof(J9SFJNICallInFrame) - (UDATA)currentThread->literals);
} else {
UDATA * bp;
if (currentThread->literals == NULL) {
/* invokeExact j2iTransition frame - bp is in arg0EA */
bp = currentThread->arg0EA;
Assert_VM_true(bp == currentThread->j2iFrame);
} else {
J9Method * method = currentThread->literals;
J9ROMMethod * romMethod = J9_ROM_METHOD_FROM_RAM_METHOD(method);
UDATA slotCount = J9_ARG_COUNT_FROM_ROM_METHOD(romMethod) + J9_TEMP_COUNT_FROM_ROM_METHOD(romMethod);
if (romMethod->modifiers & J9AccSynchronized) {
++slotCount;
} else if (J9ROMMETHOD_IS_NON_EMPTY_OBJECT_CONSTRUCTOR(romMethod)) {
/* Non-empty java.lang.Object.<init> has one hidden temp to hold a copy of the receiver */
++slotCount;
}
bp = currentThread->arg0EA - slotCount;
}
if (bp == currentThread->j2iFrame) {
currentThread->sp = (UDATA *) ((UDATA)(bp + 1) - sizeof(J9SFJ2IFrame));
} else {
currentThread->sp = (UDATA *) ((UDATA)(bp + 1) - sizeof(J9SFStackFrame));
}
bytecodedFrame = TRUE;
}
return bytecodedFrame;
}
void
prepareForExceptionThrow(J9VMThread *currentThread)
{
if (dropPendingSendPushes(currentThread)) {
J9SFSpecialFrame * specialFrame = (J9SFSpecialFrame *) ((U_8 *)currentThread->sp - sizeof(J9SFSpecialFrame));
specialFrame->specialFrameFlags = 0;
specialFrame->savedCP = currentThread->literals;
specialFrame->savedPC = currentThread->pc;
specialFrame->savedA0 = (UDATA *) ((UDATA)currentThread->arg0EA | J9SF_A0_INVISIBLE_TAG);
currentThread->arg0EA = currentThread->sp - 1;
currentThread->sp = (UDATA *) specialFrame;
currentThread->pc = (U_8 *) J9SF_FRAME_TYPE_GENERIC_SPECIAL;
currentThread->literals = NULL;
}
}