提交 619b0ce8 编写于 作者: A asaha

Merge

...@@ -930,9 +930,19 @@ c2ca4df6580822835f3b21436b79e123910c4eb5 jdk8u112-b11 ...@@ -930,9 +930,19 @@ c2ca4df6580822835f3b21436b79e123910c4eb5 jdk8u112-b11
c2c4db2a42a215c98a4f027edb8bbb00dd62d9b9 jdk8u112-b14 c2c4db2a42a215c98a4f027edb8bbb00dd62d9b9 jdk8u112-b14
b28d012a24cab8f4ceeee0c9d3252969757423ed jdk8u112-b15 b28d012a24cab8f4ceeee0c9d3252969757423ed jdk8u112-b15
e134dc1879b72124e478be01680b0646a2fbf585 jdk8u112-b16 e134dc1879b72124e478be01680b0646a2fbf585 jdk8u112-b16
87440ed4e1de7753a436f957d35555d8b4e26f1d jdk8u112-b31
3b0e5f01891f5ebbf67797b1aae786196f1bb4f6 jdk8u121-b00 3b0e5f01891f5ebbf67797b1aae786196f1bb4f6 jdk8u121-b00
251a2493b1857f2ff4f11eab2dfd8b2fe8ed441b jdk8u121-b01 251a2493b1857f2ff4f11eab2dfd8b2fe8ed441b jdk8u121-b01
70c4a50f576a01ec975d0a02b3642ee33db39ed8 jdk8u121-b02 70c4a50f576a01ec975d0a02b3642ee33db39ed8 jdk8u121-b02
fa3bb4153a28b45a7a80cbf1058979b8f1c8b104 jdk8u121-b03 fa3bb4153a28b45a7a80cbf1058979b8f1c8b104 jdk8u121-b03
35cff8508ca15dc18c598501cab160aee7220d44 jdk8u121-b04 35cff8508ca15dc18c598501cab160aee7220d44 jdk8u121-b04
f71447f104ce7b018a08bf1cf385438525744d13 jdk8u121-b05
49a2fc91c46f3d73aac7dbd420a4a007fe453ef8 jdk8u121-b06
f31c7533cfcb55acfb8dc5b31779d3a64708f5ce jdk8u121-b07
02a3d0dcbeddd8507d9a4b1f5a9f83aca75e5acb jdk8u121-b08
8cae1bdbd73cb1a84afad07a8e18467f56560bc4 jdk8u121-b09
f26f6895c9dfb32dfb4c228d69b371d8ab118536 jdk8u121-b10
11f91811e4d7e5ddfaf938dcf386ec8fe5bf7b7c jdk8u121-b11
b132b08b28bf23a26329928cf6b4ffda5857f4d3 jdk8u121-b12
90f94521c3515e5f27af0ab9b31d036e88bb322a jdk8u121-b13
c0a1ba0df20fda10ddb8599e888eb56ad98b3874 jdk8u131-b00 c0a1ba0df20fda10ddb8599e888eb56ad98b3874 jdk8u131-b00
/* /*
* Copyright (c) 2003, 2014, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2003, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
...@@ -155,47 +155,8 @@ int StackMapFrame::is_assignable_to( ...@@ -155,47 +155,8 @@ int StackMapFrame::is_assignable_to(
return i; return i;
} }
bool StackMapFrame::has_flag_match_exception(
const StackMapFrame* target) const {
// We allow flags of {UninitThis} to assign to {} if-and-only-if the
// target frame does not depend upon the current type.
// This is slightly too strict, as we need only enforce that the
// slots that were initialized by the <init> (the things that were
// UninitializedThis before initialize_object() converted them) are unused.
// However we didn't save that information so we'll enforce this upon
// anything that might have been initialized. This is a rare situation
// and javac never generates code that would end up here, but some profilers
// (such as NetBeans) might, when adding exception handlers in <init>
// methods to cover the invokespecial instruction. See 7020118.
assert(max_locals() == target->max_locals() &&
stack_size() == target->stack_size(), "StackMap sizes must match");
VerificationType top = VerificationType::top_type();
VerificationType this_type = verifier()->current_type();
if (!flag_this_uninit() || target->flags() != 0) {
return false;
}
for (int i = 0; i < target->locals_size(); ++i) {
if (locals()[i] == this_type && target->locals()[i] != top) {
return false;
}
}
for (int i = 0; i < target->stack_size(); ++i) {
if (stack()[i] == this_type && target->stack()[i] != top) {
return false;
}
}
return true;
}
bool StackMapFrame::is_assignable_to( bool StackMapFrame::is_assignable_to(
const StackMapFrame* target, bool is_exception_handler, const StackMapFrame* target, ErrorContext* ctx, TRAPS) const {
ErrorContext* ctx, TRAPS) const {
if (_max_locals != target->max_locals()) { if (_max_locals != target->max_locals()) {
*ctx = ErrorContext::locals_size_mismatch( *ctx = ErrorContext::locals_size_mismatch(
_offset, (StackMapFrame*)this, (StackMapFrame*)target); _offset, (StackMapFrame*)this, (StackMapFrame*)target);
...@@ -226,8 +187,7 @@ bool StackMapFrame::is_assignable_to( ...@@ -226,8 +187,7 @@ bool StackMapFrame::is_assignable_to(
return false; return false;
} }
bool match_flags = (_flags | target->flags()) == target->flags(); if ((_flags | target->flags()) == target->flags()) {
if (match_flags || is_exception_handler && has_flag_match_exception(target)) {
return true; return true;
} else { } else {
*ctx = ErrorContext::bad_flags(target->offset(), *ctx = ErrorContext::bad_flags(target->offset(),
......
/* /*
* Copyright (c) 2003, 2014, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2003, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
...@@ -167,8 +167,7 @@ class StackMapFrame : public ResourceObj { ...@@ -167,8 +167,7 @@ class StackMapFrame : public ResourceObj {
// Return true if this stack map frame is assignable to target. // Return true if this stack map frame is assignable to target.
bool is_assignable_to( bool is_assignable_to(
const StackMapFrame* target, bool is_exception_handler, const StackMapFrame* target, ErrorContext* ctx, TRAPS) const;
ErrorContext* ctx, TRAPS) const;
inline void set_mark() { inline void set_mark() {
#ifdef ASSERT #ifdef ASSERT
...@@ -290,8 +289,6 @@ class StackMapFrame : public ResourceObj { ...@@ -290,8 +289,6 @@ class StackMapFrame : public ResourceObj {
int is_assignable_to( int is_assignable_to(
VerificationType* src, VerificationType* target, int32_t len, TRAPS) const; VerificationType* src, VerificationType* target, int32_t len, TRAPS) const;
bool has_flag_match_exception(const StackMapFrame* target) const;
TypeOrigin stack_top_ctx(); TypeOrigin stack_top_ctx();
void print_on(outputStream* str) const; void print_on(outputStream* str) const;
......
/* /*
* Copyright (c) 2003, 2014, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2003, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
...@@ -70,26 +70,25 @@ int StackMapTable::get_index_from_offset(int32_t offset) const { ...@@ -70,26 +70,25 @@ int StackMapTable::get_index_from_offset(int32_t offset) const {
bool StackMapTable::match_stackmap( bool StackMapTable::match_stackmap(
StackMapFrame* frame, int32_t target, StackMapFrame* frame, int32_t target,
bool match, bool update, bool handler, ErrorContext* ctx, TRAPS) const { bool match, bool update, ErrorContext* ctx, TRAPS) const {
int index = get_index_from_offset(target); int index = get_index_from_offset(target);
return match_stackmap(frame, target, index, match, update, handler, ctx, THREAD); return match_stackmap(frame, target, index, match, update, ctx, THREAD);
} }
// Match and/or update current_frame to the frame in stackmap table with // Match and/or update current_frame to the frame in stackmap table with
// specified offset and frame index. Return true if the two frames match. // specified offset and frame index. Return true if the two frames match.
// handler is true if the frame in stackmap_table is for an exception handler.
// //
// The values of match and update are: _match__update__handler // The values of match and update are: _match__update
// //
// checking a branch target: true false false // checking a branch target: true false
// checking an exception handler: true false true // checking an exception handler: true false
// linear bytecode verification following an // linear bytecode verification following an
// unconditional branch: false true false // unconditional branch: false true
// linear bytecode verification not following an // linear bytecode verification not following an
// unconditional branch: true true false // unconditional branch: true true
bool StackMapTable::match_stackmap( bool StackMapTable::match_stackmap(
StackMapFrame* frame, int32_t target, int32_t frame_index, StackMapFrame* frame, int32_t target, int32_t frame_index,
bool match, bool update, bool handler, ErrorContext* ctx, TRAPS) const { bool match, bool update, ErrorContext* ctx, TRAPS) const {
if (frame_index < 0 || frame_index >= _frame_count) { if (frame_index < 0 || frame_index >= _frame_count) {
*ctx = ErrorContext::missing_stackmap(frame->offset()); *ctx = ErrorContext::missing_stackmap(frame->offset());
frame->verifier()->verify_error( frame->verifier()->verify_error(
...@@ -102,7 +101,7 @@ bool StackMapTable::match_stackmap( ...@@ -102,7 +101,7 @@ bool StackMapTable::match_stackmap(
if (match) { if (match) {
// Has direct control flow from last instruction, need to match the two // Has direct control flow from last instruction, need to match the two
// frames. // frames.
result = frame->is_assignable_to(stackmap_frame, handler, result = frame->is_assignable_to(stackmap_frame,
ctx, CHECK_VERIFY_(frame->verifier(), result)); ctx, CHECK_VERIFY_(frame->verifier(), result));
} }
if (update) { if (update) {
...@@ -126,7 +125,7 @@ void StackMapTable::check_jump_target( ...@@ -126,7 +125,7 @@ void StackMapTable::check_jump_target(
StackMapFrame* frame, int32_t target, TRAPS) const { StackMapFrame* frame, int32_t target, TRAPS) const {
ErrorContext ctx; ErrorContext ctx;
bool match = match_stackmap( bool match = match_stackmap(
frame, target, true, false, false, &ctx, CHECK_VERIFY(frame->verifier())); frame, target, true, false, &ctx, CHECK_VERIFY(frame->verifier()));
if (!match || (target < 0 || target >= _code_length)) { if (!match || (target < 0 || target >= _code_length)) {
frame->verifier()->verify_error(ctx, frame->verifier()->verify_error(ctx,
"Inconsistent stackmap frames at branch target %d", target); "Inconsistent stackmap frames at branch target %d", target);
......
/* /*
* Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2003, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
...@@ -74,12 +74,12 @@ class StackMapTable : public StackObj { ...@@ -74,12 +74,12 @@ class StackMapTable : public StackObj {
// specified offset. Return true if the two frames match. // specified offset. Return true if the two frames match.
bool match_stackmap( bool match_stackmap(
StackMapFrame* current_frame, int32_t offset, StackMapFrame* current_frame, int32_t offset,
bool match, bool update, bool handler, ErrorContext* ctx, TRAPS) const; bool match, bool update, ErrorContext* ctx, TRAPS) const;
// Match and/or update current_frame to the frame in stackmap table with // Match and/or update current_frame to the frame in stackmap table with
// specified offset and frame index. Return true if the two frames match. // specified offset and frame index. Return true if the two frames match.
bool match_stackmap( bool match_stackmap(
StackMapFrame* current_frame, int32_t offset, int32_t frame_index, StackMapFrame* current_frame, int32_t offset, int32_t frame_index,
bool match, bool update, bool handler, ErrorContext* ctx, TRAPS) const; bool match, bool update, ErrorContext* ctx, TRAPS) const;
// Check jump instructions. Make sure there are no uninitialized // Check jump instructions. Make sure there are no uninitialized
// instances on backward branch. // instances on backward branch.
......
...@@ -1814,7 +1814,7 @@ u2 ClassVerifier::verify_stackmap_table(u2 stackmap_index, u2 bci, ...@@ -1814,7 +1814,7 @@ u2 ClassVerifier::verify_stackmap_table(u2 stackmap_index, u2 bci,
// If matched, current_frame will be updated by this method. // If matched, current_frame will be updated by this method.
bool matches = stackmap_table->match_stackmap( bool matches = stackmap_table->match_stackmap(
current_frame, this_offset, stackmap_index, current_frame, this_offset, stackmap_index,
!no_control_flow, true, false, &ctx, CHECK_VERIFY_(this, 0)); !no_control_flow, true, &ctx, CHECK_VERIFY_(this, 0));
if (!matches) { if (!matches) {
// report type error // report type error
verify_error(ctx, "Instruction type does not match stack map"); verify_error(ctx, "Instruction type does not match stack map");
...@@ -1861,7 +1861,7 @@ void ClassVerifier::verify_exception_handler_targets(u2 bci, bool this_uninit, S ...@@ -1861,7 +1861,7 @@ void ClassVerifier::verify_exception_handler_targets(u2 bci, bool this_uninit, S
} }
ErrorContext ctx; ErrorContext ctx;
bool matches = stackmap_table->match_stackmap( bool matches = stackmap_table->match_stackmap(
new_frame, handler_pc, true, false, true, &ctx, CHECK_VERIFY(this)); new_frame, handler_pc, true, false, &ctx, CHECK_VERIFY(this));
if (!matches) { if (!matches) {
verify_error(ctx, "Stack map does not match the one at " verify_error(ctx, "Stack map does not match the one at "
"exception handler %d", handler_pc); "exception handler %d", handler_pc);
......
/* /*
* Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
/* /*
* @test * @test
* @bug 8075118 * @bug 8075118
* @summary Allow a ctor to call super() from a switch bytecode. * @summary JVM stuck in infinite loop during verification
* @compile HandlerInTry.jasm * @compile HandlerInTry.jasm
* @compile IsolatedHandlerInTry.jasm * @compile IsolatedHandlerInTry.jasm
* @run main/othervm -Xverify:all LoadHandlerInTry * @run main/othervm -Xverify:all LoadHandlerInTry
...@@ -70,9 +70,10 @@ public class LoadHandlerInTry { ...@@ -70,9 +70,10 @@ public class LoadHandlerInTry {
System.out.println("Regression test for bug 8075118"); System.out.println("Regression test for bug 8075118");
try { try {
Class newClass = Class.forName("HandlerInTry"); Class newClass = Class.forName("HandlerInTry");
} catch (Exception e) { throw new RuntimeException(
System.out.println("Failed: Exception was thrown: " + e.toString()); "Failed to throw VerifyError for HandlerInTry");
throw e; } catch (java.lang.VerifyError e) {
System.out.println("Passed: VerifyError exception was thrown");
} }
try { try {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册