hotspot/src/share/vm/classfile/stackMapTable.cpp
author stefank
Thu, 02 Oct 2014 10:55:36 +0200
changeset 27247 99db666dbe8e
parent 25900 a41d63a62923
child 33162 342038b73996
permissions -rw-r--r--
8056240: Investigate increased GC remark time after class unloading changes in CRM Fuse Reviewed-by: mgerdin, coleenp, bdelsart
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
25505
9bd829aeb960 8035119: Fix exceptions to bytecode verification
hseigel
parents: 13476
diff changeset
     2
 * Copyright (c) 2003, 2014, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6439
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6439
diff changeset
    26
#include "classfile/stackMapTable.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6439
diff changeset
    27
#include "classfile/verifier.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6439
diff changeset
    28
#include "memory/resourceArea.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6439
diff changeset
    29
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6439
diff changeset
    30
#include "runtime/fieldType.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6439
diff changeset
    31
#include "runtime/handles.inline.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
StackMapTable::StackMapTable(StackMapReader* reader, StackMapFrame* init_frame,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
                             u2 max_locals, u2 max_stack,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
                             char* code_data, int code_len, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  _code_length = code_len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  _frame_count = reader->get_frame_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  if (_frame_count > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
    _frame_array = NEW_RESOURCE_ARRAY_IN_THREAD(THREAD,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
                                                StackMapFrame*, _frame_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
    StackMapFrame* pre_frame = init_frame;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
    for (int32_t i = 0; i < _frame_count; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
      StackMapFrame* frame = reader->next(
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
        pre_frame, i == 0, max_locals, max_stack,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
        CHECK_VERIFY(pre_frame->verifier()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
      _frame_array[i] = frame;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
      int offset = frame->offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
      if (offset >= code_len || code_data[offset] == 0) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9133
diff changeset
    49
        frame->verifier()->verify_error(
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9133
diff changeset
    50
            ErrorContext::bad_stackmap(i, frame),
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9133
diff changeset
    51
            "StackMapTable error: bad offset");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
      pre_frame = frame;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  reader->check_end(CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
// This method is only called by method in StackMapTable.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
int StackMapTable::get_index_from_offset(int32_t offset) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  int i = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  for (; i < _frame_count; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    if (_frame_array[i]->offset() == offset) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
      return i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  return i;  // frame with offset doesn't exist in the array
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
bool StackMapTable::match_stackmap(
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    StackMapFrame* frame, int32_t target,
25899
337ed0e9c13c 8051012: Regression in verifier for <init> method call from inside of a branch
hseigel
parents: 25505
diff changeset
    73
    bool match, bool update, bool handler, ErrorContext* ctx, TRAPS) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  int index = get_index_from_offset(target);
25899
337ed0e9c13c 8051012: Regression in verifier for <init> method call from inside of a branch
hseigel
parents: 25505
diff changeset
    75
  return match_stackmap(frame, target, index, match, update, handler, ctx, THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
// Match and/or update current_frame to the frame in stackmap table with
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
// specified offset and frame index. Return true if the two frames match.
25899
337ed0e9c13c 8051012: Regression in verifier for <init> method call from inside of a branch
hseigel
parents: 25505
diff changeset
    80
// handler is true if the frame in stackmap_table is for an exception handler.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
//
25899
337ed0e9c13c 8051012: Regression in verifier for <init> method call from inside of a branch
hseigel
parents: 25505
diff changeset
    82
// The values of match and update are:                  _match__update__handler
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
//
25899
337ed0e9c13c 8051012: Regression in verifier for <init> method call from inside of a branch
hseigel
parents: 25505
diff changeset
    84
// checking a branch target:                             true   false   false
337ed0e9c13c 8051012: Regression in verifier for <init> method call from inside of a branch
hseigel
parents: 25505
diff changeset
    85
// checking an exception handler:                        true   false   true
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
// linear bytecode verification following an
25899
337ed0e9c13c 8051012: Regression in verifier for <init> method call from inside of a branch
hseigel
parents: 25505
diff changeset
    87
// unconditional branch:                                 false  true    false
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
// linear bytecode verification not following an
25899
337ed0e9c13c 8051012: Regression in verifier for <init> method call from inside of a branch
hseigel
parents: 25505
diff changeset
    89
// unconditional branch:                                 true   true    false
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
bool StackMapTable::match_stackmap(
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    StackMapFrame* frame, int32_t target, int32_t frame_index,
25899
337ed0e9c13c 8051012: Regression in verifier for <init> method call from inside of a branch
hseigel
parents: 25505
diff changeset
    92
    bool match, bool update, bool handler, ErrorContext* ctx, TRAPS) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  if (frame_index < 0 || frame_index >= _frame_count) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9133
diff changeset
    94
    *ctx = ErrorContext::missing_stackmap(frame->offset());
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9133
diff changeset
    95
    frame->verifier()->verify_error(
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9133
diff changeset
    96
        *ctx, "Expecting a stackmap frame at branch target %d", target);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9133
diff changeset
   100
  StackMapFrame *stackmap_frame = _frame_array[frame_index];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  bool result = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  if (match) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    // Has direct control flow from last instruction, need to match the two
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    // frames.
25899
337ed0e9c13c 8051012: Regression in verifier for <init> method call from inside of a branch
hseigel
parents: 25505
diff changeset
   105
    result = frame->is_assignable_to(stackmap_frame, handler,
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9133
diff changeset
   106
        ctx, CHECK_VERIFY_(frame->verifier(), result));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  if (update) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    // Use the frame in stackmap table as current frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    int lsize = stackmap_frame->locals_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    int ssize = stackmap_frame->stack_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    if (frame->locals_size() > lsize || frame->stack_size() > ssize) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
      // Make sure unused type array items are all _bogus_type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
      frame->reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    frame->set_locals_size(lsize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    frame->copy_locals(stackmap_frame);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    frame->set_stack_size(ssize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    frame->copy_stack(stackmap_frame);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    frame->set_flags(stackmap_frame->flags());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
void StackMapTable::check_jump_target(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    StackMapFrame* frame, int32_t target, TRAPS) const {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9133
diff changeset
   127
  ErrorContext ctx;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  bool match = match_stackmap(
25899
337ed0e9c13c 8051012: Regression in verifier for <init> method call from inside of a branch
hseigel
parents: 25505
diff changeset
   129
    frame, target, true, false, false, &ctx, CHECK_VERIFY(frame->verifier()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  if (!match || (target < 0 || target >= _code_length)) {
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9133
diff changeset
   131
    frame->verifier()->verify_error(ctx,
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9133
diff changeset
   132
        "Inconsistent stackmap frames at branch target %d", target);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9133
diff changeset
   136
void StackMapTable::print_on(outputStream* str) const {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9133
diff changeset
   137
  str->indent().print_cr("StackMapTable: frame_count = %d", _frame_count);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9133
diff changeset
   138
  str->indent().print_cr("table = { ");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9133
diff changeset
   139
  {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9133
diff changeset
   140
    streamIndentor si(str);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9133
diff changeset
   141
    for (int32_t i = 0; i < _frame_count; ++i) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9133
diff changeset
   142
      _frame_array[i]->print_on(str);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9133
diff changeset
   143
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  }
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9133
diff changeset
   145
  str->print_cr(" }");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
int32_t StackMapReader::chop(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
    VerificationType* locals, int32_t length, int32_t chops) {
6439
a9c5a6738be7 6870851: Bad frame_chop in StackMapTable crashes JVM
kamg
parents: 5547
diff changeset
   150
  if (locals == NULL) return -1;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  int32_t pos = length - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  for (int32_t i=0; i<chops; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    if (locals[pos].is_category2_2nd()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
      pos -= 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
      pos --;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    if (pos<0 && i<(chops-1)) return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  return pos+1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
VerificationType StackMapReader::parse_verification_type(u1* flags, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  u1 tag = _stream->get_u1(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  if (tag < (u1)ITEM_UninitializedThis) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
    return VerificationType::from_tag(tag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  if (tag == ITEM_Object) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    u2 class_index = _stream->get_u2(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    int nconstants = _cp->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    if ((class_index <= 0 || class_index >= nconstants) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
        (!_cp->tag_at(class_index).is_klass() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
         !_cp->tag_at(class_index).is_unresolved_klass())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
      _stream->stackmap_format_error("bad class index", THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
      return VerificationType::bogus_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    }
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   177
    return VerificationType::reference_type(_cp->klass_name_at(class_index));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  if (tag == ITEM_UninitializedThis) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    if (flags != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
      *flags |= FLAG_THIS_UNINIT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    return VerificationType::uninitialized_this_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  if (tag == ITEM_Uninitialized) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    u2 offset = _stream->get_u2(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
    if (offset >= _code_length ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
        _code_data[offset] != ClassVerifier::NEW_OFFSET) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
      ResourceMark rm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
      _verifier->class_format_error(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
        "StackMapTable format error: bad offset for Uninitialized");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
      return VerificationType::bogus_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    return VerificationType::uninitialized_type(offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  _stream->stackmap_format_error("bad verification type", THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  return VerificationType::bogus_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
StackMapFrame* StackMapReader::next(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
    StackMapFrame* pre_frame, bool first, u2 max_locals, u2 max_stack, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  StackMapFrame* frame;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  int offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  VerificationType* locals = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  u1 frame_type = _stream->get_u1(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  if (frame_type < 64) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
    // same_frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
    if (first) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
      offset = frame_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
      // Can't share the locals array since that is updated by the verifier.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
      if (pre_frame->locals_size() > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
        locals = NEW_RESOURCE_ARRAY_IN_THREAD(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
          THREAD, VerificationType, pre_frame->locals_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
      offset = pre_frame->offset() + frame_type + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
      locals = pre_frame->locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
    frame = new StackMapFrame(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
      offset, pre_frame->flags(), pre_frame->locals_size(), 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
      max_locals, max_stack, locals, NULL, _verifier);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
    if (first && locals != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
      frame->copy_locals(pre_frame);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    return frame;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  if (frame_type < 128) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
    // same_locals_1_stack_item_frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
    if (first) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
      offset = frame_type - 64;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
      // Can't share the locals array since that is updated by the verifier.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
      if (pre_frame->locals_size() > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
        locals = NEW_RESOURCE_ARRAY_IN_THREAD(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
          THREAD, VerificationType, pre_frame->locals_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
      offset = pre_frame->offset() + frame_type - 63;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
      locals = pre_frame->locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
    VerificationType* stack = NEW_RESOURCE_ARRAY_IN_THREAD(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
      THREAD, VerificationType, 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
    u2 stack_size = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
    stack[0] = parse_verification_type(NULL, CHECK_VERIFY_(_verifier, NULL));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    if (stack[0].is_category2()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
      stack[1] = stack[0].to_category2_2nd();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
      stack_size = 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
    check_verification_type_array_size(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
      stack_size, max_stack, CHECK_VERIFY_(_verifier, NULL));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
    frame = new StackMapFrame(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
      offset, pre_frame->flags(), pre_frame->locals_size(), stack_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
      max_locals, max_stack, locals, stack, _verifier);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
    if (first && locals != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
      frame->copy_locals(pre_frame);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
    return frame;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  u2 offset_delta = _stream->get_u2(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  if (frame_type < SAME_LOCALS_1_STACK_ITEM_EXTENDED) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
    // reserved frame types
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
    _stream->stackmap_format_error(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
      "reserved frame type", CHECK_VERIFY_(_verifier, NULL));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  if (frame_type == SAME_LOCALS_1_STACK_ITEM_EXTENDED) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
    // same_locals_1_stack_item_frame_extended
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
    if (first) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
      offset = offset_delta;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
      // Can't share the locals array since that is updated by the verifier.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
      if (pre_frame->locals_size() > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
        locals = NEW_RESOURCE_ARRAY_IN_THREAD(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
          THREAD, VerificationType, pre_frame->locals_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
      offset = pre_frame->offset() + offset_delta + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
      locals = pre_frame->locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
    VerificationType* stack = NEW_RESOURCE_ARRAY_IN_THREAD(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
      THREAD, VerificationType, 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
    u2 stack_size = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
    stack[0] = parse_verification_type(NULL, CHECK_VERIFY_(_verifier, NULL));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
    if (stack[0].is_category2()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
      stack[1] = stack[0].to_category2_2nd();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
      stack_size = 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
    check_verification_type_array_size(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
      stack_size, max_stack, CHECK_VERIFY_(_verifier, NULL));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
    frame = new StackMapFrame(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
      offset, pre_frame->flags(), pre_frame->locals_size(), stack_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
      max_locals, max_stack, locals, stack, _verifier);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
    if (first && locals != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
      frame->copy_locals(pre_frame);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
    return frame;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  if (frame_type <= SAME_EXTENDED) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
    // chop_frame or same_frame_extended
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
    locals = pre_frame->locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
    int length = pre_frame->locals_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
    int chops = SAME_EXTENDED - frame_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
    int new_length = length;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
    u1 flags = pre_frame->flags();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
    if (chops != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
      new_length = chop(locals, length, chops);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
      check_verification_type_array_size(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
        new_length, max_locals, CHECK_VERIFY_(_verifier, NULL));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
      // Recompute flags since uninitializedThis could have been chopped.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
      flags = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
      for (int i=0; i<new_length; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
        if (locals[i].is_uninitialized_this()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
          flags |= FLAG_THIS_UNINIT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
          break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
    if (first) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
      offset = offset_delta;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
      // Can't share the locals array since that is updated by the verifier.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
      if (new_length > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
        locals = NEW_RESOURCE_ARRAY_IN_THREAD(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
          THREAD, VerificationType, new_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
        locals = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
      offset = pre_frame->offset() + offset_delta + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
    frame = new StackMapFrame(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
      offset, flags, new_length, 0, max_locals, max_stack,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
      locals, NULL, _verifier);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
    if (first && locals != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
      frame->copy_locals(pre_frame);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
    return frame;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  } else if (frame_type < SAME_EXTENDED + 4) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
    // append_frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
    int appends = frame_type - SAME_EXTENDED;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
    int real_length = pre_frame->locals_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
    int new_length = real_length + appends*2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
    locals = NEW_RESOURCE_ARRAY_IN_THREAD(THREAD, VerificationType, new_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
    VerificationType* pre_locals = pre_frame->locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
    int i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
    for (i=0; i<pre_frame->locals_size(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
      locals[i] = pre_locals[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
    u1 flags = pre_frame->flags();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
    for (i=0; i<appends; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
      locals[real_length] = parse_verification_type(&flags, THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
      if (locals[real_length].is_category2()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
        locals[real_length + 1] = locals[real_length].to_category2_2nd();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
        ++real_length;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
      ++real_length;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
    check_verification_type_array_size(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
      real_length, max_locals, CHECK_VERIFY_(_verifier, NULL));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
    if (first) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
      offset = offset_delta;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
      offset = pre_frame->offset() + offset_delta + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
    frame = new StackMapFrame(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
      offset, flags, real_length, 0, max_locals,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
      max_stack, locals, NULL, _verifier);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
    return frame;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  if (frame_type == FULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
    // full_frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
    u1 flags = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
    u2 locals_size = _stream->get_u2(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
    int real_locals_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
    if (locals_size > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
      locals = NEW_RESOURCE_ARRAY_IN_THREAD(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
        THREAD, VerificationType, locals_size*2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
    int i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
    for (i=0; i<locals_size; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
      locals[real_locals_size] = parse_verification_type(&flags, THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
      if (locals[real_locals_size].is_category2()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
        locals[real_locals_size + 1] =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
          locals[real_locals_size].to_category2_2nd();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
        ++real_locals_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
      ++real_locals_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
    check_verification_type_array_size(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
      real_locals_size, max_locals, CHECK_VERIFY_(_verifier, NULL));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
    u2 stack_size = _stream->get_u2(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
    int real_stack_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
    VerificationType* stack = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
    if (stack_size > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
      stack = NEW_RESOURCE_ARRAY_IN_THREAD(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
        THREAD, VerificationType, stack_size*2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
    for (i=0; i<stack_size; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
      stack[real_stack_size] = parse_verification_type(NULL, THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
      if (stack[real_stack_size].is_category2()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
        stack[real_stack_size + 1] = stack[real_stack_size].to_category2_2nd();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
        ++real_stack_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
      ++real_stack_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
    check_verification_type_array_size(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
      real_stack_size, max_stack, CHECK_VERIFY_(_verifier, NULL));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
    if (first) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
      offset = offset_delta;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
      offset = pre_frame->offset() + offset_delta + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
    frame = new StackMapFrame(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
      offset, flags, real_locals_size, real_stack_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
      max_locals, max_stack, locals, stack, _verifier);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
    return frame;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
  _stream->stackmap_format_error(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
    "reserved frame type", CHECK_VERIFY_(pre_frame->verifier(), NULL));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
}