hotspot/src/share/vm/classfile/loaderConstraints.hpp
author xlu
Mon, 06 Apr 2009 15:47:39 -0700
changeset 2526 39a58a50be35
parent 2332 5c7b6f4ce0a1
child 4899 ab225bac579c
child 5121 5e80657d23e7
permissions -rw-r--r--
6699669: Hotspot server leaves synchronized block with monitor in bad state Summary: Remove usage of _highest_lock field in Thread so that is_lock_owned won't depend on the correct update of that field. Reviewed-by: never, dice, acorn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
2332
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 1
diff changeset
     2
 * Copyright 2003-2009 Sun Microsystems, Inc.  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
 *
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
class LoaderConstraintEntry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
class LoaderConstraintTable : public Hashtable {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  enum Constants {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
    _loader_constraint_size = 107,                     // number of entries in constraint table
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
    _nof_buckets            = 1009                     // number of buckets in hash table
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  LoaderConstraintEntry** find_loader_constraint(symbolHandle name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
                                                 Handle loader);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  LoaderConstraintTable(int nof_buckets);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  LoaderConstraintEntry* new_entry(unsigned int hash, symbolOop name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
                                   klassOop klass, int num_loaders,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
                                   int max_loaders);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  LoaderConstraintEntry* bucket(int i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    return (LoaderConstraintEntry*)Hashtable::bucket(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  LoaderConstraintEntry** bucket_addr(int i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
    return (LoaderConstraintEntry**)Hashtable::bucket_addr(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  // GC support
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  void oops_do(OopClosure* f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  void always_strong_classes_do(OopClosure* blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  // Check class loader constraints
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  bool add_entry(symbolHandle name, klassOop klass1, Handle loader1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
                                    klassOop klass2, Handle loader2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
2332
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 1
diff changeset
    63
  // Note:  The main entry point for this module is via SystemDictionary.
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 1
diff changeset
    64
  // SystemDictionary::check_signature_loaders(symbolHandle signature,
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 1
diff changeset
    65
  //                                           Handle loader1, Handle loader2,
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 1
diff changeset
    66
  //                                           bool is_method, TRAPS)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  klassOop find_constrained_klass(symbolHandle name, Handle loader);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  klassOop find_constrained_elem_klass(symbolHandle name, symbolHandle elem_name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
                                       Handle loader, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  // Class loader constraints
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  void ensure_loader_constraint_capacity(LoaderConstraintEntry *p, int nfree);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  void extend_loader_constraint(LoaderConstraintEntry* p, Handle loader,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
                                klassOop klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  void merge_loader_constraints(LoaderConstraintEntry** pp1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
                                LoaderConstraintEntry** pp2, klassOop klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  bool check_or_update(instanceKlassHandle k, Handle loader,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
                              symbolHandle name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  void purge_loader_constraints(BoolObjectClosure* is_alive);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  void verify(Dictionary* dictionary);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  void print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
class LoaderConstraintEntry : public HashtableEntry {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  symbolOop              _name;                   // class name
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  int                    _num_loaders;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  int                    _max_loaders;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  oop*                   _loaders;                // initiating loaders
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  klassOop klass() { return (klassOop)literal(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  klassOop* klass_addr() { return (klassOop*)literal_addr(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  void set_klass(klassOop k) { set_literal(k); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  LoaderConstraintEntry* next() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    return (LoaderConstraintEntry*)HashtableEntry::next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  LoaderConstraintEntry** next_addr() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    return (LoaderConstraintEntry**)HashtableEntry::next_addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  void set_next(LoaderConstraintEntry* next) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    HashtableEntry::set_next(next);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  symbolOop name() { return _name; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  symbolOop* name_addr() { return &_name; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  void set_name(symbolOop name) { _name = name; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  int num_loaders() { return _num_loaders; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  void set_num_loaders(int i) { _num_loaders = i; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  int max_loaders() { return _max_loaders; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  void set_max_loaders(int i) { _max_loaders = i; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  oop* loaders() { return _loaders; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  void set_loaders(oop* loaders) { _loaders = loaders; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  oop loader(int i) { return _loaders[i]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  oop* loader_addr(int i) { return &_loaders[i]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  void set_loader(int i, oop p) { _loaders[i] = p; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
};