-
Notifications
You must be signed in to change notification settings - Fork 747
/
Copy pathBytecodeInterpreter.inc
113 lines (105 loc) · 4.17 KB
/
BytecodeInterpreter.inc
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
/*******************************************************************************
* Copyright IBM Corp. and others 1991
*
* 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 "clang_comp.h"
#include "j9.h"
#if defined(_MSC_VER) && !defined(__clang__)
/* MSVC compiler hangs on this file at max opt (/Ox) */
#pragma optimize( "g", off )
#endif /* _MSC_VER */
/* USE_COMPUTED_GOTO on Windows has a performance improvement of 15%.
* USE_COMPUTED_GOTO on Linux amd64 has a performance improvement of 3%.
* USE_COMPUTED_GOTO is enabled on Linux s390 when compiling with gcc7+.
* USE_COMPUTED_GOTO improves startup performance by ~10% on Linux s390.
*/
#if (defined(WIN32) && defined(__clang__))
#define USE_COMPUTED_GOTO
#elif (defined(LINUX) && defined(J9HAMMER))
#define USE_COMPUTED_GOTO
#elif (defined(LINUX) && defined(__riscv))
#define USE_COMPUTED_GOTO
#elif (defined(LINUX) && defined(S390) && (__GNUC__ >= 7))
#define USE_COMPUTED_GOTO
#elif defined(OSX)
#define USE_COMPUTED_GOTO
#else
#undef USE_COMPUTED_GOTO
#endif
#undef TRACE_TRANSITIONS
#if defined(TRACE_TRANSITIONS)
#include "bcnames.h"
#include "rommeth.h"
static void
getMethodName(J9PortLibrary *PORTLIB, J9Method *method, U_8 *pc, char *buffer)
{
char temp[1024];
buffer[0] = '\0';
if ((UDATA)pc <= J9SF_MAX_SPECIAL_FRAME_TYPE) {
j9str_printf(temp, sizeof(temp), "SPECIAL %d", pc);
strcat(buffer, temp);
#if defined(J9VM_OPT_METHOD_HANDLE)
} else if (((U_8*)-1 != pc) && (JBimpdep1 == *pc)) {
strcat(buffer, "MHMAGIC");
#endif /* defined(J9VM_OPT_METHOD_HANDLE) */
} else if (((U_8*)-1 != pc) && (JBimpdep2 == *pc)) {
strcat(buffer, "CALLIN");
} else if (((U_8*)-1 != pc) && (((*pc >= JBretFromNative0) && (*pc <= JBreturnFromJ2I)) || (JBreturnFromJ2I == *pc))) {
strcat(buffer, "JITRETURN");
} else if (NULL == method->bytecodes) {
j9str_printf(temp, sizeof(temp), "(no bytecodes) (%p)", method);
strcat(buffer, temp);
} else {
J9UTF8 *className = J9ROMCLASS_CLASSNAME(J9_CLASS_FROM_METHOD(method)->romClass);
J9ROMMethod *romMethod = J9_ROM_METHOD_FROM_RAM_METHOD(method);
J9UTF8 *methodName = J9ROMMETHOD_NAME(romMethod);
J9UTF8 *methodSig = J9ROMMETHOD_SIGNATURE(romMethod);
if (romMethod->modifiers & J9AccNative) {
if ((UDATA)method->constantPool & J9_STARTPC_JNI_NATIVE) {
strcat(buffer, "JNI ");
} else {
strcat(buffer, "INL ");
}
}
if (0 == ((UDATA)method->extra & 1)) {
strcat(buffer, "JITTED ");
}
j9str_printf(temp, sizeof(temp), "%.*s.%.*s%.*s (%p)", J9UTF8_LENGTH(className), J9UTF8_DATA(className), J9UTF8_LENGTH(methodName), J9UTF8_DATA(methodName), J9UTF8_LENGTH(methodSig), J9UTF8_DATA(methodSig), method);
strcat(buffer, temp);
if ((U_8*)-1 != pc) {
j9str_printf(temp, sizeof(temp), " @ %p (offset %d)", pc, pc - method->bytecodes);
strcat(buffer, temp);
}
}
}
#endif
#include "BytecodeInterpreter.hpp"
/* Entry point must be C, not C++ */
/**
* @brief Execute the bytecode loop specified by LOOP_NAME
* @param currentThread the current thread
* @return UDATA the action to take upon return to the builder interpreter
*/
extern "C" UDATA
LOOP_NAME(J9VMThread *currentThread)
{
INTERPRETER_CLASS interpreter(currentThread);
return interpreter.run(currentThread);
}