src/hotspot/share/code/exceptionHandlerTable.cpp
author coleenp
Wed, 13 Nov 2019 08:23:23 -0500
changeset 59056 15936b142f86
parent 55293 d19dc5b10fbb
permissions -rw-r--r--
8233913: Remove implicit conversion from Method* to methodHandle Summary: Fix call sites to use existing THREAD local or pass down THREAD local for shallower callsites. Make linkResolver methods return Method* for caller to handleize if needed. Reviewed-by: iklam, thartmann, hseigel
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
54960
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 47216
diff changeset
     2
 * Copyright (c) 1998, 2019, 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: 5403
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5403
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: 5403
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: 6418
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    26
#include "code/exceptionHandlerTable.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    27
#include "code/nmethod.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    28
#include "memory/allocation.inline.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
void ExceptionHandlerTable::add_entry(HandlerTableEntry entry) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  _nesting.check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
  if (_length >= _size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
    // not enough space => grow the table (amortized growth, double its size)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
    guarantee(_size > 0, "no space allocated => cannot grow the table since it is part of nmethod");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
    int new_size = _size * 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
    _table = REALLOC_RESOURCE_ARRAY(HandlerTableEntry, _table, _size, new_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
    _size = new_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  assert(_length < _size, "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  _table[_length++] = entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
HandlerTableEntry* ExceptionHandlerTable::subtable_for(int catch_pco) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  int i = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  while (i < _length) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
    HandlerTableEntry* t = _table + i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    if (t->pco() == catch_pco) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
      // found subtable matching the catch_pco
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
      return t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
      // advance to next subtable
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
      i += t->len() + 1; // +1 for header
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
ExceptionHandlerTable::ExceptionHandlerTable(int initial_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  guarantee(initial_size > 0, "initial size must be > 0");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  _table  = NEW_RESOURCE_ARRAY(HandlerTableEntry, initial_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  _length = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  _size   = initial_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 33198
diff changeset
    68
ExceptionHandlerTable::ExceptionHandlerTable(const CompiledMethod* cm) {
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 33198
diff changeset
    69
  _table  = (HandlerTableEntry*)cm->handler_table_begin();
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 33198
diff changeset
    70
  _length = cm->handler_table_size() / sizeof(HandlerTableEntry);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  _size   = 0; // no space allocated by ExeptionHandlerTable!
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
void ExceptionHandlerTable::add_subtable(
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  int                 catch_pco,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  GrowableArray<intptr_t>* handler_bcis,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  GrowableArray<intptr_t>* scope_depths_from_top_scope,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  GrowableArray<intptr_t>* handler_pcos
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  assert(subtable_for(catch_pco) == NULL, "catch handlers for this catch_pco added twice");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  assert(handler_bcis->length() == handler_pcos->length(), "bci & pc table have different length");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  assert(scope_depths_from_top_scope == NULL || handler_bcis->length() == scope_depths_from_top_scope->length(), "bci & scope_depths table have different length");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  if (handler_bcis->length() > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    // add subtable header
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
    add_entry(HandlerTableEntry(handler_bcis->length(), catch_pco, 0));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    // add individual entries
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    for (int i = 0; i < handler_bcis->length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
      intptr_t scope_depth = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
      if (scope_depths_from_top_scope != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
        scope_depth = scope_depths_from_top_scope->at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
      add_entry(HandlerTableEntry(handler_bcis->at(i), handler_pcos->at(i), scope_depth));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
      assert(entry_for(catch_pco, handler_bcis->at(i), scope_depth)->pco() == handler_pcos->at(i), "entry not added correctly (1)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
      assert(entry_for(catch_pco, handler_bcis->at(i), scope_depth)->scope_depth() == scope_depth, "entry not added correctly (2)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 33198
diff changeset
   101
void ExceptionHandlerTable::copy_to(CompiledMethod* cm) {
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 33198
diff changeset
   102
  assert(size_in_bytes() == cm->handler_table_size(), "size of space allocated in compiled method incorrect");
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 33198
diff changeset
   103
  copy_bytes_to(cm->handler_table_begin());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31592
diff changeset
   106
void ExceptionHandlerTable::copy_bytes_to(address addr) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31592
diff changeset
   107
  memmove(addr, _table, size_in_bytes());
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31592
diff changeset
   108
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
HandlerTableEntry* ExceptionHandlerTable::entry_for(int catch_pco, int handler_bci, int scope_depth) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  HandlerTableEntry* t = subtable_for(catch_pco);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  if (t != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    int l = t->len();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    while (l-- > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
      t++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
      if (t->bci() == handler_bci && t->scope_depth() == scope_depth) return t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
void ExceptionHandlerTable::print_subtable(HandlerTableEntry* t) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  int l = t->len();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  tty->print_cr("catch_pco = %d (%d entries)", t->pco(), l);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  while (l-- > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    t++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    tty->print_cr("  bci %d at scope depth %d -> pco %d", t->bci(), t->scope_depth(), t->pco());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
void ExceptionHandlerTable::print() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  tty->print_cr("ExceptionHandlerTable (size = %d bytes)", size_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  int i = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  while (i < _length) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
    HandlerTableEntry* t = _table + i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    print_subtable(t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    // advance to next subtable
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    i += t->len() + 1; // +1 for header
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
void ExceptionHandlerTable::print_subtable_for(int catch_pco) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  HandlerTableEntry* subtable = subtable_for(catch_pco);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  if( subtable != NULL ) { print_subtable( subtable ); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
// ----------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
// Implicit null exception tables.  Maps an exception PC offset to a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
// continuation PC offset.  During construction it's a variable sized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
// array with a max size and current length.  When stored inside an
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
// nmethod a zero length table takes no space.  This is detected by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
// nul_chk_table_size() == 0.  Otherwise the table has a length word
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
// followed by pairs of <excp-offset, const-offset>.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
void ImplicitExceptionTable::set_size( uint size ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  _size = size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  _data = NEW_RESOURCE_ARRAY(implicit_null_entry, (size*2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  _len = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
void ImplicitExceptionTable::append( uint exec_off, uint cont_off ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  assert( (sizeof(implicit_null_entry) >= 4) || (exec_off < 65535), "" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  assert( (sizeof(implicit_null_entry) >= 4) || (cont_off < 65535), "" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  uint l = len();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  if (l == _size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    uint old_size_in_elements = _size*2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    if (_size == 0) _size = 4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    _size *= 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    uint new_size_in_elements = _size*2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    _data = REALLOC_RESOURCE_ARRAY(uint, _data, old_size_in_elements, new_size_in_elements);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  *(adr(l)  ) = exec_off;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  *(adr(l)+1) = cont_off;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  _len = l+1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
55293
d19dc5b10fbb 8209626: [JVMCI] Use implicit exception table for dispatch and printing
never
parents: 54960
diff changeset
   179
uint ImplicitExceptionTable::continuation_offset( uint exec_off ) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  uint l = len();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  for( uint i=0; i<l; i++ )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    if( *adr(i) == exec_off )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
      return *(adr(i)+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  return 0;                     // Failed to find any execption offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
void ImplicitExceptionTable::print(address base) const {
54960
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 47216
diff changeset
   188
  const uint n = len();
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 47216
diff changeset
   189
  if (n > 0) {
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 47216
diff changeset
   190
    const uint items_per_line = 3;
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 47216
diff changeset
   191
    uint i;
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 47216
diff changeset
   192
    tty->print_cr("ImplicitExceptionTable (size = %d entries, %d bytes):", n, size_in_bytes());
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 47216
diff changeset
   193
    tty->print("{");
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 47216
diff changeset
   194
    for (i = 0; i < n; i++) {
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 47216
diff changeset
   195
      if (i%items_per_line == 0) {
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 47216
diff changeset
   196
        tty->cr();
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 47216
diff changeset
   197
        tty->fill_to(3);
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 47216
diff changeset
   198
      }
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 47216
diff changeset
   199
      tty->print("< " INTPTR_FORMAT ", " INTPTR_FORMAT " > ", p2i(base + *adr(i)), p2i(base + *(adr(i)+1)));
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 47216
diff changeset
   200
    }
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 47216
diff changeset
   201
    tty->bol();
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 47216
diff changeset
   202
    tty->print_cr("}");
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 47216
diff changeset
   203
  } else {
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 47216
diff changeset
   204
    tty->print_cr("ImplicitExceptionTable is empty");
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 47216
diff changeset
   205
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
55293
d19dc5b10fbb 8209626: [JVMCI] Use implicit exception table for dispatch and printing
never
parents: 54960
diff changeset
   208
ImplicitExceptionTable::ImplicitExceptionTable(const CompiledMethod* nm) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  if (nm->nul_chk_table_size() == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
    _len = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
    _data = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
    // the first word is the length if non-zero, so read it out and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    // skip to the next word to get the table.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    _data  = (implicit_null_entry*)nm->nul_chk_table_begin();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
    _len = _data[0];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
    _data++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  _size = len();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  assert(size_in_bytes() <= nm->nul_chk_table_size(), "size of space allocated in nmethod incorrect");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
void ImplicitExceptionTable::copy_to( nmethod* nm ) {
55293
d19dc5b10fbb 8209626: [JVMCI] Use implicit exception table for dispatch and printing
never
parents: 54960
diff changeset
   224
  copy_bytes_to(nm->nul_chk_table_begin(), nm->nul_chk_table_size());
d19dc5b10fbb 8209626: [JVMCI] Use implicit exception table for dispatch and printing
never
parents: 54960
diff changeset
   225
}
d19dc5b10fbb 8209626: [JVMCI] Use implicit exception table for dispatch and printing
never
parents: 54960
diff changeset
   226
d19dc5b10fbb 8209626: [JVMCI] Use implicit exception table for dispatch and printing
never
parents: 54960
diff changeset
   227
void ImplicitExceptionTable::copy_bytes_to(address addr, int size) {
d19dc5b10fbb 8209626: [JVMCI] Use implicit exception table for dispatch and printing
never
parents: 54960
diff changeset
   228
  assert(size_in_bytes() <= size, "size of space allocated in nmethod incorrect");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  if (len() != 0) {
55293
d19dc5b10fbb 8209626: [JVMCI] Use implicit exception table for dispatch and printing
never
parents: 54960
diff changeset
   230
    implicit_null_entry* nmdata = (implicit_null_entry*)addr;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    // store the length in the first uint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
    nmdata[0] = _len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
    nmdata++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
    // copy the table after the length
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
    memmove( nmdata, _data, 2 * len() * sizeof(implicit_null_entry));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    // zero length table takes zero bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
    assert(size_in_bytes() == 0, "bad size");
55293
d19dc5b10fbb 8209626: [JVMCI] Use implicit exception table for dispatch and printing
never
parents: 54960
diff changeset
   239
    assert(size == 0, "bad size");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
void ImplicitExceptionTable::verify(nmethod *nm) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  for (uint i = 0; i < len(); i++) {
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5547
diff changeset
   245
     if ((*adr(i) > (unsigned int)nm->insts_size()) ||
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5547
diff changeset
   246
         (*(adr(i)+1) > (unsigned int)nm->insts_size()))
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33105
diff changeset
   247
       fatal("Invalid offset in ImplicitExceptionTable at " PTR_FORMAT, p2i(_data));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
}