mirror of
https://github.com/openjdk/jdk.git
synced 2026-05-11 14:11:36 +00:00
Merge
This commit is contained in:
commit
295d64e29f
@ -130,8 +130,9 @@ endif
|
||||
$(XLIBJVM_DTRACE): $(DTRACE_SRCDIR)/$(JVM_DTRACE).c $(DTRACE_SRCDIR)/$(JVM_DTRACE).h $(LIBJVM_DTRACE_MAPFILE)
|
||||
@echo $(LOG_INFO) Making $@
|
||||
$(QUIETLY) mkdir -p $(XLIBJVM_DIR) ; \
|
||||
$(CC) $(SYMFLAG) $(ARCHFLAG/$(ISA)) -D$(TYPE) -I. \
|
||||
$(SHARED_FLAG) $(LFLAGS_JVM_DTRACE) -o $@ $(DTRACE_SRCDIR)/$(JVM_DTRACE).c -lc -lthread -ldoor
|
||||
$(CC) $(SYMFLAG) $(ARCHFLAG/$(ISA)) -D$(TYPE) -I. $(EXTRA_CFLAGS) \
|
||||
$(SHARED_FLAG) $(LFLAGS_JVM_DTRACE) -o $@ $(DTRACE_SRCDIR)/$(JVM_DTRACE).c \
|
||||
$(EXTRA_LDFLAGS) -lc -lthread -ldoor
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
$(QUIETLY) $(OBJCOPY) --only-keep-debug $@ $(XLIBJVM_DTRACE_DEBUGINFO)
|
||||
# Do this part in the $(XLIBJVM_DIR) subdir so $(XLIBJVM_DIR) is not
|
||||
@ -216,8 +217,9 @@ endif
|
||||
|
||||
$(LIBJVM_DTRACE): $(DTRACE_SRCDIR)/$(JVM_DTRACE).c $(XLIBJVM_DTRACE) $(DTRACE_SRCDIR)/$(JVM_DTRACE).h $(LIBJVM_DTRACE_MAPFILE)
|
||||
@echo $(LOG_INFO) Making $@
|
||||
$(QUIETLY) $(CC) $(SYMFLAG) $(ARCHFLAG) -D$(TYPE) -I. \
|
||||
$(SHARED_FLAG) $(LFLAGS_JVM_DTRACE) -o $@ $(DTRACE_SRCDIR)/$(JVM_DTRACE).c -lc -lthread -ldoor
|
||||
$(QUIETLY) $(CC) $(SYMFLAG) $(ARCHFLAG) -D$(TYPE) -I. $(EXTRA_CFLAGS) \
|
||||
$(SHARED_FLAG) $(LFLAGS_JVM_DTRACE) -o $@ $(DTRACE_SRCDIR)/$(JVM_DTRACE).c \
|
||||
$(EXTRA_LDFLAGS) -lc -lthread -ldoor
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
$(QUIETLY) $(OBJCOPY) --only-keep-debug $@ $(LIBJVM_DTRACE_DEBUGINFO)
|
||||
$(QUIETLY) $(OBJCOPY) --add-gnu-debuglink=$(LIBJVM_DTRACE_DEBUGINFO) $@
|
||||
|
||||
@ -50,7 +50,9 @@ endif
|
||||
$(LIBJSIG): $(JSIGSRCDIR)/jsig.c $(LIBJSIG_MAPFILE)
|
||||
@echo $(LOG_INFO) Making signal interposition lib...
|
||||
$(QUIETLY) $(CC) $(SYMFLAG) $(ARCHFLAG) $(SHARED_FLAG) $(PICFLAG) \
|
||||
$(LFLAGS_JSIG) -o $@ $(JSIGSRCDIR)/jsig.c -ldl
|
||||
$(EXTRA_CFLAGS) \
|
||||
$(LFLAGS_JSIG) $(EXTRA_LDFLAGS) \
|
||||
-o $@ $(JSIGSRCDIR)/jsig.c -ldl
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
$(QUIETLY) $(OBJCOPY) --only-keep-debug $@ $(LIBJSIG_DEBUGINFO)
|
||||
$(QUIETLY) $(OBJCOPY) --add-gnu-debuglink=$(LIBJSIG_DEBUGINFO) $@
|
||||
|
||||
@ -89,6 +89,17 @@ $(shell uname -r -v \
|
||||
# when actually building on Nevada-B158 or earlier:
|
||||
#SOLARIS_11_B159_OR_LATER=-DSOLARIS_11_B159_OR_LATER
|
||||
|
||||
$(SADISOBJ): $(SADISSRCFILES)
|
||||
$(QUIETLY) $(CC) \
|
||||
$(SYMFLAG) $(ARCHFLAG) $(SHARED_FLAG) $(PICFLAG) \
|
||||
-I$(SASRCDIR) \
|
||||
-I$(GENERATED) \
|
||||
-I$(BOOT_JAVA_HOME)/include \
|
||||
-I$(BOOT_JAVA_HOME)/include/$(Platform_os_family) \
|
||||
$(SOLARIS_11_B159_OR_LATER) \
|
||||
$(EXTRA_CFLAGS) \
|
||||
$(SADISSRCFILES) \
|
||||
-c -o $(SADISOBJ)
|
||||
|
||||
$(LIBSAPROC): $(SASRCFILES) $(SADISOBJ) $(SAMAPFILE)
|
||||
$(QUIETLY) if [ "$(BOOT_JAVA_HOME)" = "" ]; then \
|
||||
@ -103,23 +114,13 @@ $(LIBSAPROC): $(SASRCFILES) $(SADISOBJ) $(SAMAPFILE)
|
||||
-I$(BOOT_JAVA_HOME)/include \
|
||||
-I$(BOOT_JAVA_HOME)/include/$(Platform_os_family) \
|
||||
$(SOLARIS_11_B159_OR_LATER) \
|
||||
$(SASRCFILES) \
|
||||
$(EXTRA_CXXFLAGS) $(EXTRA_LDFLAGS) \
|
||||
$(SADISOBJ) \
|
||||
$(SASRCFILES) \
|
||||
$(SA_LFLAGS) \
|
||||
-o $@ \
|
||||
-ldl -ldemangle -lthread -lc
|
||||
|
||||
$(SADISOBJ): $(SADISSRCFILES)
|
||||
$(QUIETLY) $(CC) \
|
||||
$(SYMFLAG) $(ARCHFLAG) $(SHARED_FLAG) $(PICFLAG) \
|
||||
-I$(SASRCDIR) \
|
||||
-I$(GENERATED) \
|
||||
-I$(BOOT_JAVA_HOME)/include \
|
||||
-I$(BOOT_JAVA_HOME)/include/$(Platform_os_family) \
|
||||
$(SOLARIS_11_B159_OR_LATER) \
|
||||
$(SADISSRCFILES) \
|
||||
-c -o $(SADISOBJ)
|
||||
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
$(QUIETLY) $(OBJCOPY) --only-keep-debug $@ $(LIBSAPROC_DEBUGINFO)
|
||||
$(QUIETLY) $(OBJCOPY) --add-gnu-debuglink=$(LIBSAPROC_DEBUGINFO) $@
|
||||
|
||||
@ -288,6 +288,8 @@ else
|
||||
endif
|
||||
endif
|
||||
|
||||
LFLAGS_VM += $(EXTRA_LDFLAGS)
|
||||
|
||||
ifdef USE_GCC
|
||||
LINK_VM = $(LINK_LIB.CC)
|
||||
else
|
||||
|
||||
@ -91,6 +91,9 @@ $(GENERATED)/sa-jdi.jar: $(AGENT_FILES)
|
||||
|
||||
SAWINDBG=sawindbg.dll
|
||||
|
||||
# Resource file containing VERSIONINFO
|
||||
SA_Res_Files=.\version.sares
|
||||
|
||||
checkAndBuildSA:: $(SAWINDBG)
|
||||
|
||||
# These do not need to be optimized (don't run a lot of code) and it
|
||||
@ -126,10 +129,13 @@ SA_CFLAGS = $(SA_CFLAGS) $(MP_FLAG)
|
||||
# Note that we do not keep sawindbj.obj around as it would then
|
||||
# get included in the dumpbin command in build_vm_def.sh
|
||||
|
||||
# Force resources to be rebuilt every time
|
||||
$(SA_Res_Files): FORCE
|
||||
|
||||
# In VS2005 or VS2008 the link command creates a .manifest file that we want
|
||||
# to insert into the linked artifact so we do not need to track it separately.
|
||||
# Use ";#2" for .dll and ";#1" for .exe in the MT command below:
|
||||
$(SAWINDBG): $(SASRCFILES)
|
||||
$(SAWINDBG): $(SASRCFILES) $(SA_Res_Files)
|
||||
set INCLUDE=$(SA_INCLUDE)$(INCLUDE)
|
||||
$(CXX) @<<
|
||||
-I"$(BootStrapDir)/include" -I"$(BootStrapDir)/include/win32"
|
||||
@ -138,7 +144,7 @@ $(SAWINDBG): $(SASRCFILES)
|
||||
-out:$*.obj
|
||||
<<
|
||||
set LIB=$(SA_LIB)$(LIB)
|
||||
$(LD) -out:$@ -DLL sawindbg.obj sadis.obj dbgeng.lib $(SA_LFLAGS)
|
||||
$(LD) -out:$@ -DLL sawindbg.obj sadis.obj dbgeng.lib $(SA_LFLAGS) $(SA_Res_Files)
|
||||
!if "$(MT)" != ""
|
||||
$(MT) -manifest $(@F).manifest -outputresource:$(@F);#2
|
||||
!endif
|
||||
@ -150,6 +156,9 @@ $(SAWINDBG): $(SASRCFILES)
|
||||
!endif
|
||||
-@rm -f $*.obj
|
||||
|
||||
{$(COMMONSRC)\os\windows\vm}.rc.sares:
|
||||
@$(RC) $(RC_FLAGS) /D "HS_FNAME=$(SAWINDBG)" /fo"$@" $<
|
||||
|
||||
cleanall :
|
||||
rm -rf $(GENERATED)/saclasses
|
||||
rm -rf $(GENERATED)/sa-jdi.jar
|
||||
|
||||
@ -2236,14 +2236,20 @@ void ClassVerifier::verify_field_instructions(RawBytecodeStream* bcs,
|
||||
}
|
||||
|
||||
// Look at the method's handlers. If the bci is in the handler's try block
|
||||
// then check if the handler_pc is already on the stack. If not, push it.
|
||||
// then check if the handler_pc is already on the stack. If not, push it
|
||||
// unless the handler has already been scanned.
|
||||
void ClassVerifier::push_handlers(ExceptionTable* exhandlers,
|
||||
GrowableArray<u4>* handler_list,
|
||||
GrowableArray<u4>* handler_stack,
|
||||
u4 bci) {
|
||||
int exlength = exhandlers->length();
|
||||
for(int x = 0; x < exlength; x++) {
|
||||
if (bci >= exhandlers->start_pc(x) && bci < exhandlers->end_pc(x)) {
|
||||
handler_stack->append_if_missing(exhandlers->handler_pc(x));
|
||||
u4 exhandler_pc = exhandlers->handler_pc(x);
|
||||
if (!handler_list->contains(exhandler_pc)) {
|
||||
handler_stack->append_if_missing(exhandler_pc);
|
||||
handler_list->append(exhandler_pc);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -2261,6 +2267,10 @@ bool ClassVerifier::ends_in_athrow(u4 start_bc_offset) {
|
||||
GrowableArray<u4>* bci_stack = new GrowableArray<u4>(30);
|
||||
// Create stack for handlers for try blocks containing this handler.
|
||||
GrowableArray<u4>* handler_stack = new GrowableArray<u4>(30);
|
||||
// Create list of handlers that have been pushed onto the handler_stack
|
||||
// so that handlers embedded inside of their own TRY blocks only get
|
||||
// scanned once.
|
||||
GrowableArray<u4>* handler_list = new GrowableArray<u4>(30);
|
||||
// Create list of visited branch opcodes (goto* and if*).
|
||||
GrowableArray<u4>* visited_branches = new GrowableArray<u4>(30);
|
||||
ExceptionTable exhandlers(_method());
|
||||
@ -2279,7 +2289,7 @@ bool ClassVerifier::ends_in_athrow(u4 start_bc_offset) {
|
||||
|
||||
// If the bytecode is in a TRY block, push its handlers so they
|
||||
// will get parsed.
|
||||
push_handlers(&exhandlers, handler_stack, bci);
|
||||
push_handlers(&exhandlers, handler_list, handler_stack, bci);
|
||||
|
||||
switch (opcode) {
|
||||
case Bytecodes::_if_icmpeq:
|
||||
|
||||
@ -305,9 +305,10 @@ class ClassVerifier : public StackObj {
|
||||
bool* this_uninit, constantPoolHandle cp, StackMapTable* stackmap_table,
|
||||
TRAPS);
|
||||
|
||||
// Used by ends_in_athrow() to push all handlers that contain bci onto
|
||||
// the handler_stack, if the handler is not already on the stack.
|
||||
// Used by ends_in_athrow() to push all handlers that contain bci onto the
|
||||
// handler_stack, if the handler has not already been pushed on the stack.
|
||||
void push_handlers(ExceptionTable* exhandlers,
|
||||
GrowableArray<u4>* handler_list,
|
||||
GrowableArray<u4>* handler_stack,
|
||||
u4 bci);
|
||||
|
||||
|
||||
@ -240,6 +240,9 @@ void Arguments::init_version_specific_system_properties() {
|
||||
* and ignoring the value. Once the JDK version reaches the 'accept_until'
|
||||
* limit, we flatly refuse to admit the existence of the flag. This allows
|
||||
* a flag to die correctly over JDK releases using HSX.
|
||||
* But now that HSX is no longer supported only options with a future
|
||||
* accept_until value need to be listed, and the list can be pruned
|
||||
* on each major release.
|
||||
*/
|
||||
typedef struct {
|
||||
const char* name;
|
||||
@ -248,63 +251,8 @@ typedef struct {
|
||||
} ObsoleteFlag;
|
||||
|
||||
static ObsoleteFlag obsolete_jvm_flags[] = {
|
||||
{ "UseTrainGC", JDK_Version::jdk(5), JDK_Version::jdk(7) },
|
||||
{ "UseSpecialLargeObjectHandling", JDK_Version::jdk(5), JDK_Version::jdk(7) },
|
||||
{ "UseOversizedCarHandling", JDK_Version::jdk(5), JDK_Version::jdk(7) },
|
||||
{ "TraceCarAllocation", JDK_Version::jdk(5), JDK_Version::jdk(7) },
|
||||
{ "PrintTrainGCProcessingStats", JDK_Version::jdk(5), JDK_Version::jdk(7) },
|
||||
{ "LogOfCarSpaceSize", JDK_Version::jdk(5), JDK_Version::jdk(7) },
|
||||
{ "OversizedCarThreshold", JDK_Version::jdk(5), JDK_Version::jdk(7) },
|
||||
{ "MinTickInterval", JDK_Version::jdk(5), JDK_Version::jdk(7) },
|
||||
{ "DefaultTickInterval", JDK_Version::jdk(5), JDK_Version::jdk(7) },
|
||||
{ "MaxTickInterval", JDK_Version::jdk(5), JDK_Version::jdk(7) },
|
||||
{ "DelayTickAdjustment", JDK_Version::jdk(5), JDK_Version::jdk(7) },
|
||||
{ "ProcessingToTenuringRatio", JDK_Version::jdk(5), JDK_Version::jdk(7) },
|
||||
{ "MinTrainLength", JDK_Version::jdk(5), JDK_Version::jdk(7) },
|
||||
{ "AppendRatio", JDK_Version::jdk_update(6,10), JDK_Version::jdk(7) },
|
||||
{ "DefaultMaxRAM", JDK_Version::jdk_update(6,18), JDK_Version::jdk(7) },
|
||||
{ "DefaultInitialRAMFraction",
|
||||
JDK_Version::jdk_update(6,18), JDK_Version::jdk(7) },
|
||||
{ "UseDepthFirstScavengeOrder",
|
||||
JDK_Version::jdk_update(6,22), JDK_Version::jdk(7) },
|
||||
{ "HandlePromotionFailure",
|
||||
JDK_Version::jdk_update(6,24), JDK_Version::jdk(8) },
|
||||
{ "MaxLiveObjectEvacuationRatio",
|
||||
JDK_Version::jdk_update(6,24), JDK_Version::jdk(8) },
|
||||
{ "ForceSharedSpaces", JDK_Version::jdk_update(6,25), JDK_Version::jdk(8) },
|
||||
{ "UseParallelOldGCCompacting",
|
||||
JDK_Version::jdk_update(6,27), JDK_Version::jdk(8) },
|
||||
{ "UseParallelDensePrefixUpdate",
|
||||
JDK_Version::jdk_update(6,27), JDK_Version::jdk(8) },
|
||||
{ "UseParallelOldGCDensePrefix",
|
||||
JDK_Version::jdk_update(6,27), JDK_Version::jdk(8) },
|
||||
{ "AllowTransitionalJSR292", JDK_Version::jdk(7), JDK_Version::jdk(8) },
|
||||
{ "UseCompressedStrings", JDK_Version::jdk(7), JDK_Version::jdk(8) },
|
||||
{ "CMSPermGenPrecleaningEnabled", JDK_Version::jdk(8), JDK_Version::jdk(9) },
|
||||
{ "CMSTriggerPermRatio", JDK_Version::jdk(8), JDK_Version::jdk(9) },
|
||||
{ "CMSInitiatingPermOccupancyFraction", JDK_Version::jdk(8), JDK_Version::jdk(9) },
|
||||
{ "AdaptivePermSizeWeight", JDK_Version::jdk(8), JDK_Version::jdk(9) },
|
||||
{ "PermGenPadding", JDK_Version::jdk(8), JDK_Version::jdk(9) },
|
||||
{ "PermMarkSweepDeadRatio", JDK_Version::jdk(8), JDK_Version::jdk(9) },
|
||||
{ "PermSize", JDK_Version::jdk(8), JDK_Version::jdk(9) },
|
||||
{ "MaxPermSize", JDK_Version::jdk(8), JDK_Version::jdk(9) },
|
||||
{ "MinPermHeapExpansion", JDK_Version::jdk(8), JDK_Version::jdk(9) },
|
||||
{ "MaxPermHeapExpansion", JDK_Version::jdk(8), JDK_Version::jdk(9) },
|
||||
{ "CMSRevisitStackSize", JDK_Version::jdk(8), JDK_Version::jdk(9) },
|
||||
{ "PrintRevisitStats", JDK_Version::jdk(8), JDK_Version::jdk(9) },
|
||||
{ "UseVectoredExceptions", JDK_Version::jdk(8), JDK_Version::jdk(9) },
|
||||
{ "UseSplitVerifier", JDK_Version::jdk(8), JDK_Version::jdk(9) },
|
||||
{ "UseISM", JDK_Version::jdk(8), JDK_Version::jdk(9) },
|
||||
{ "UsePermISM", JDK_Version::jdk(8), JDK_Version::jdk(9) },
|
||||
{ "UseMPSS", JDK_Version::jdk(8), JDK_Version::jdk(9) },
|
||||
{ "UseStringCache", JDK_Version::jdk(8), JDK_Version::jdk(9) },
|
||||
{ "UseOldInlining", JDK_Version::jdk(9), JDK_Version::jdk(10) },
|
||||
{ "SafepointPollOffset", JDK_Version::jdk(9), JDK_Version::jdk(10) },
|
||||
#ifdef PRODUCT
|
||||
{ "DesiredMethodLimit",
|
||||
JDK_Version::jdk_update(7, 2), JDK_Version::jdk(8) },
|
||||
#endif // PRODUCT
|
||||
{ "UseVMInterruptibleIO", JDK_Version::jdk(8), JDK_Version::jdk(9) },
|
||||
{ "UseBoundThreads", JDK_Version::jdk(9), JDK_Version::jdk(10) },
|
||||
{ "DefaultThreadPriority", JDK_Version::jdk(9), JDK_Version::jdk(10) },
|
||||
{ "NoYieldsInMicrolock", JDK_Version::jdk(9), JDK_Version::jdk(10) },
|
||||
|
||||
115
hotspot/test/runtime/handlerInTry/HandlerInTry.jasm
Normal file
115
hotspot/test/runtime/handlerInTry/HandlerInTry.jasm
Normal file
@ -0,0 +1,115 @@
|
||||
/*
|
||||
* Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* HandlerInTry contains a try block in a ctor whose handler is inside
|
||||
* the same try block. The try block starts at line 74 (try t2;), ends at
|
||||
* line 106 (endtry t2;), but its handler starts at line 101 (catch t2 #0;).
|
||||
*/
|
||||
super public class HandlerInTry
|
||||
version 51:0
|
||||
{
|
||||
|
||||
public static final synthetic Field ___transactionFactory_2002349702336125:"Ljava/lang/Object;";
|
||||
|
||||
public Method "<init>":"(Ljava/lang/Object;)V"
|
||||
stack 5 locals 5
|
||||
{
|
||||
invokestatic Method ThreadLocalTransaction.getThreadLocalTransaction:"()Ljava/lang/Object;";
|
||||
checkcast class java/lang/Object;
|
||||
astore_2;
|
||||
aload_2;
|
||||
invokestatic Method TransactionLogicDonor.isActiveTransaction:"(Ljava/lang/Object;)Z";
|
||||
ifeq L21;
|
||||
aload_0;
|
||||
aload_1;
|
||||
aload_2;
|
||||
invokespecial Method "<init>":"(Ljava/lang/Object;Ljava/lang/Object;)V";
|
||||
return;
|
||||
L21: stack_frame_type append;
|
||||
locals_map class java/lang/Object;
|
||||
aload_2;
|
||||
getstatic Field ___transactionFactory_2002349702336125:"Ljava/lang/Object;";
|
||||
invokestatic Method TransactionLogicDonor.createTransaction:"(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;";
|
||||
astore_2;
|
||||
aload_2;
|
||||
iconst_1;
|
||||
pop;
|
||||
aload_2;
|
||||
invokestatic Method ThreadLocalTransaction.setThreadLocalTransaction:"(Ljava/lang/Object;)V";
|
||||
try t0, t1;
|
||||
aload_0;
|
||||
aload_1;
|
||||
aload_2;
|
||||
invokespecial Method "<init>":"(Ljava/lang/Object;Ljava/lang/Object;)V";
|
||||
aload_2;
|
||||
pop;
|
||||
aconst_null;
|
||||
astore_2;
|
||||
endtry t0, t1;
|
||||
invokestatic Method ThreadLocalTransaction.clearThreadLocalTransaction:"()V";
|
||||
pop;
|
||||
goto L107;
|
||||
catch t0 java/lang/Throwable;
|
||||
try t2;
|
||||
stack_frame_type full;
|
||||
locals_map bogus, class java/lang/Object, class java/lang/Object;
|
||||
stack_map class java/lang/Throwable;
|
||||
astore_3;
|
||||
aload_2;
|
||||
pop;
|
||||
aload_3;
|
||||
instanceof class ControlFlowError;
|
||||
ifeq L82;
|
||||
new class java/lang/NullPointerException;
|
||||
dup;
|
||||
invokespecial Method java/lang/NullPointerException."<init>":"()V";
|
||||
athrow;
|
||||
L82: stack_frame_type append;
|
||||
locals_map class java/lang/Throwable;
|
||||
aload_3;
|
||||
instanceof class java/lang/Error;
|
||||
ifeq L94;
|
||||
aload_3;
|
||||
checkcast class java/lang/Error;
|
||||
athrow;
|
||||
L94: stack_frame_type same;
|
||||
aload_3;
|
||||
checkcast class java/lang/Exception;
|
||||
athrow;
|
||||
catch t1 #0;
|
||||
catch t2 #0;
|
||||
stack_frame_type full;
|
||||
locals_map bogus, class java/lang/Object, class java/lang/Object;
|
||||
stack_map class java/lang/Throwable;
|
||||
astore 4;
|
||||
endtry t2;
|
||||
invokestatic Method ThreadLocalTransaction.clearThreadLocalTransaction:"()V";
|
||||
aload 4;
|
||||
athrow;
|
||||
L107: stack_frame_type full;
|
||||
locals_map class HandlerInTry, class java/lang/Object, null;
|
||||
return;
|
||||
}
|
||||
|
||||
} // end Class HandlerInTry
|
||||
124
hotspot/test/runtime/handlerInTry/IsolatedHandlerInTry.jasm
Normal file
124
hotspot/test/runtime/handlerInTry/IsolatedHandlerInTry.jasm
Normal file
@ -0,0 +1,124 @@
|
||||
/*
|
||||
* Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* IsolatedHandlerInTry contains a try block in a ctor whose handler is inside
|
||||
* the same try block but the handler can only be reached if an exception
|
||||
* occurs. The handler does a return. So, a VerifyException should be thrown.
|
||||
* The try block starts at line 77 (try t2;) and ends at line 113 (endtry t2;).
|
||||
* Its handler starts at line 107 (catch t2 #0;). The handler can only be reached
|
||||
* by exception because of the athrow at line 106.
|
||||
*/
|
||||
super public class IsolatedHandlerInTry
|
||||
version 51:0
|
||||
{
|
||||
|
||||
public static final synthetic Field ___transactionFactory_2002349702336125:"Ljava/lang/Object;";
|
||||
|
||||
public Method "<init>":"(Ljava/lang/Object;)V"
|
||||
stack 5 locals 5
|
||||
{
|
||||
invokestatic Method ThreadLocalTransaction.getThreadLocalTransaction:"()Ljava/lang/Object;";
|
||||
checkcast class java/lang/Object;
|
||||
astore_2;
|
||||
aload_2;
|
||||
invokestatic Method TransactionLogicDonor.isActiveTransaction:"(Ljava/lang/Object;)Z";
|
||||
ifeq L21;
|
||||
aload_0;
|
||||
aload_1;
|
||||
aload_2;
|
||||
invokespecial Method "<init>":"(Ljava/lang/Object;Ljava/lang/Object;)V";
|
||||
return;
|
||||
L21: stack_frame_type append;
|
||||
locals_map class java/lang/Object;
|
||||
aload_2;
|
||||
getstatic Field ___transactionFactory_2002349702336125:"Ljava/lang/Object;";
|
||||
invokestatic Method TransactionLogicDonor.createTransaction:"(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;";
|
||||
astore_2;
|
||||
aload_2;
|
||||
iconst_1;
|
||||
pop;
|
||||
aload_2;
|
||||
invokestatic Method ThreadLocalTransaction.setThreadLocalTransaction:"(Ljava/lang/Object;)V";
|
||||
try t0, t1;
|
||||
aload_0;
|
||||
aload_1;
|
||||
aload_2;
|
||||
invokespecial Method "<init>":"(Ljava/lang/Object;Ljava/lang/Object;)V";
|
||||
aload_2;
|
||||
pop;
|
||||
aconst_null;
|
||||
astore_2;
|
||||
endtry t0, t1;
|
||||
invokestatic Method ThreadLocalTransaction.clearThreadLocalTransaction:"()V";
|
||||
pop;
|
||||
goto L107;
|
||||
catch t0 java/lang/Throwable;
|
||||
try t2;
|
||||
stack_frame_type full;
|
||||
locals_map bogus, class java/lang/Object, class java/lang/Object;
|
||||
stack_map class java/lang/Throwable;
|
||||
astore_3;
|
||||
aload_2;
|
||||
pop;
|
||||
aload_3;
|
||||
instanceof class ControlFlowError;
|
||||
ifeq L82;
|
||||
new class java/lang/NullPointerException;
|
||||
dup;
|
||||
invokespecial Method java/lang/NullPointerException."<init>":"()V";
|
||||
athrow;
|
||||
L82: stack_frame_type append;
|
||||
locals_map class java/lang/Throwable;
|
||||
aload_3;
|
||||
instanceof class java/lang/Error;
|
||||
ifeq L94;
|
||||
aload_3;
|
||||
checkcast class java/lang/Error;
|
||||
athrow;
|
||||
L94: stack_frame_type same;
|
||||
aload_3;
|
||||
checkcast class java/lang/Exception;
|
||||
catch t1 #0;
|
||||
stack_frame_type full;
|
||||
locals_map bogus, class java/lang/Object, class java/lang/Object;
|
||||
stack_map class java/lang/Throwable;
|
||||
athrow;
|
||||
catch t2 #0;
|
||||
stack_frame_type full;
|
||||
locals_map bogus, class java/lang/Object, class java/lang/Object;
|
||||
stack_map class java/lang/Throwable;
|
||||
astore 4;
|
||||
return;
|
||||
endtry t2;
|
||||
stack_frame_type full;
|
||||
locals_map bogus, class java/lang/Object, class java/lang/Object, class java/lang/Object;
|
||||
stack_map class java/lang/Throwable;
|
||||
invokestatic Method ThreadLocalTransaction.clearThreadLocalTransaction:"()V";
|
||||
athrow;
|
||||
L107: stack_frame_type full;
|
||||
locals_map class IsolatedHandlerInTry, class java/lang/Object, null;
|
||||
return;
|
||||
}
|
||||
|
||||
} // end Class IsolatedHandlerInTry
|
||||
86
hotspot/test/runtime/handlerInTry/LoadHandlerInTry.java
Normal file
86
hotspot/test/runtime/handlerInTry/LoadHandlerInTry.java
Normal file
@ -0,0 +1,86 @@
|
||||
/*
|
||||
* Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* @test
|
||||
* @bug 8075118
|
||||
* @summary Allow a ctor to call super() from a switch bytecode.
|
||||
* @compile HandlerInTry.jasm
|
||||
* @compile IsolatedHandlerInTry.jasm
|
||||
* @run main/othervm -Xverify:all LoadHandlerInTry
|
||||
*/
|
||||
|
||||
/*
|
||||
* This test has two cases:
|
||||
*
|
||||
* 1. class HandlerInTry: Class HandlerInTry contains a TRY block in a
|
||||
* constructor whose handler is inside the same TRY block. The last
|
||||
* few bytecodes and exception table look like this:
|
||||
*
|
||||
* ...
|
||||
* 87: athrow
|
||||
* 88: astore 4
|
||||
* 90: invokestatic #9
|
||||
* 93: aload 4
|
||||
* 95: athrow
|
||||
* 96: return
|
||||
* Exception table:
|
||||
* from to target type
|
||||
* 36 46 53 Class java/lang/Throwable
|
||||
* 36 46 88 any
|
||||
* 53 90 88 any
|
||||
*
|
||||
* Note that the target for the third handler in the Exception table is
|
||||
* inside its TRY block.
|
||||
* Without the fix for bug JDK-8075118, this test will time out.
|
||||
*
|
||||
*
|
||||
* 2. class IsolatedHandlerInTry: Class IsolatedHandlerInTry also contains
|
||||
* a TRY block in a constructoer whose handler is inside its TRY block.
|
||||
* But the handler is only reachable if an exception is thrown. The
|
||||
* handler's bytecodes will not get parsed as part of parsing the TRY
|
||||
* block. They will only get parsed as a handler for the TRY block.
|
||||
* Since the isolated handler does a 'return', a VerifyError exception
|
||||
* should get thrown.
|
||||
*/
|
||||
|
||||
public class LoadHandlerInTry {
|
||||
|
||||
public static void main(String[] args) throws Exception {
|
||||
System.out.println("Regression test for bug 8075118");
|
||||
try {
|
||||
Class newClass = Class.forName("HandlerInTry");
|
||||
} catch (Exception e) {
|
||||
System.out.println("Failed: Exception was thrown: " + e.toString());
|
||||
throw e;
|
||||
}
|
||||
|
||||
try {
|
||||
Class newClass = Class.forName("IsolatedHandlerInTry");
|
||||
throw new RuntimeException(
|
||||
"Failed to throw VerifyError for IsolatedHandlerInTry");
|
||||
} catch (java.lang.VerifyError e) {
|
||||
System.out.println("Passed: VerifyError exception was thrown");
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user