hotspot/src/share/vm/code/exceptionHandlerTable.hpp
author ant
Fri, 04 Dec 2009 15:07:15 +0300
changeset 4369 18b883ed2b58
parent 1 489c9b5090e2
child 5547 f4b087cbb361
permissions -rw-r--r--
6903354: deadlock involving Component.show & SunToolkit.getImageFromHash Reviewed-by: art, bae
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1998-2005 Sun Microsystems, Inc.  All Rights Reserved.
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
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
// A HandlerTableEntry describes an individual entry of a subtable
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
// of ExceptionHandlerTable. An entry consists of a pair(bci, pco),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
// where bci is the exception handler bci, and pco is the pc offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
// relative to the nmethod code start for the compiled exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
// handler corresponding to the (interpreted) exception handler
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// starting at bci.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// The first HandlerTableEntry of each subtable holds the length
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// and catch_pco for the subtable (the length is the number of
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// subtable entries w/o header).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
class HandlerTableEntry {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  int _bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  int _pco;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  int _scope_depth;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  HandlerTableEntry(int bci, int pco, int scope_depth) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
    assert( 0 <= pco, "pco must be positive");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
    assert( 0 <= scope_depth, "scope_depth must be positive");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
    _bci = bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
    _pco = pco;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    _scope_depth = scope_depth;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  int len() const { return _bci; } // for entry at subtable begin
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  int bci() const { return _bci; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  int pco() const { return _pco; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  int scope_depth() const { return _scope_depth; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
// An ExceptionHandlerTable is an abstraction over a list of subtables
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
// of exception handlers for CatchNodes. Each subtable has a one-entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
// header holding length and catch_pco of the subtable, followed
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
// by 'length' entries for each exception handler that can be reached
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
// from the corresponding CatchNode. The catch_pco is the pc offset of
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
// the CatchNode in the corresponding nmethod. Empty subtables are dis-
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
// carded.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
// Structure of the table:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
// table    = { subtable }.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
// subtable = header entry { entry }.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
// header   = a pair (number of subtable entries, catch pc offset, [unused])
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
// entry    = a pair (handler bci, handler pc offset, scope depth)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
// An ExceptionHandlerTable can be created from scratch, in which case
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
// it is possible to add subtables. It can also be created from an
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
// nmethod (for lookup purposes) in which case the table cannot be
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
// modified.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
class nmethod;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
class ExceptionHandlerTable VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  HandlerTableEntry* _table;    // the table
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  int                _length;   // the current length of the table
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  int                _size;     // the number of allocated entries
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  ReallocMark        _nesting;  // assertion check for reallocations
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  // add the entry & grow the table if needed
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  void add_entry(HandlerTableEntry entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  HandlerTableEntry* subtable_for(int catch_pco) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  // (compile-time) construction within compiler
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  ExceptionHandlerTable(int initial_size = 8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  // (run-time) construction from nmethod
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  ExceptionHandlerTable(const nmethod* nm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  // (compile-time) add entries
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  void add_subtable(
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    int                 catch_pco, // the pc offset for the CatchNode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    GrowableArray<intptr_t>* handler_bcis, // the exception handler entry point bcis
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    GrowableArray<intptr_t>* scope_depths_from_top_scope,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
                                           // if representing exception handlers in multiple
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
                                           // inlined scopes, indicates which scope relative to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
                                           // the youngest/innermost one in which we are performing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
                                           // the lookup; zero (or null GrowableArray) indicates
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
                                           // innermost scope
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    GrowableArray<intptr_t>* handler_pcos  // pc offsets for the compiled handlers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  // nmethod support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  int  size_in_bytes() const { return round_to(_length * sizeof(HandlerTableEntry), oopSize); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  void copy_to(nmethod* nm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  // lookup
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  HandlerTableEntry* entry_for(int catch_pco, int handler_bci, int scope_depth) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  // debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  void print_subtable(HandlerTableEntry* t) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  void print() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  void print_subtable_for(int catch_pco) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
// ----------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
// Implicit null exception tables.  Maps an exception PC offset to a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
// continuation PC offset.  During construction it's a variable sized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
// array with a max size and current length.  When stored inside an
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
// nmethod a zero length table takes no space.  This is detected by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
// nul_chk_table_size() == 0.  Otherwise the table has a length word
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
// followed by pairs of <excp-offset, const-offset>.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
// Use 32-bit representation for offsets
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
typedef  uint              implicit_null_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
class ImplicitExceptionTable VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  uint _size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  uint _len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  implicit_null_entry *_data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  implicit_null_entry *adr( uint idx ) const { return &_data[2*idx]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  ReallocMark          _nesting;  // assertion check for reallocations
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  ImplicitExceptionTable( ) :  _data(0), _size(0), _len(0) { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  // (run-time) construction from nmethod
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  ImplicitExceptionTable( const nmethod *nm );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  void set_size( uint size );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  void append( uint exec_off, uint cont_off );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  uint at( uint exec_off ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  uint len() const { return _len; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  int size_in_bytes() const { return len() == 0 ? 0 : ((2 * len() + 1) * sizeof(implicit_null_entry)); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  void copy_to(nmethod* nm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  void print(address base) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  void verify(nmethod *nm) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
};