hotspot/src/share/vm/code/codeCache.hpp
author xdono
Wed, 02 Jul 2008 12:55:16 -0700
changeset 670 ddf3e9583f2f
parent 354 3b42d6fdcb82
child 3908 24b55ad4c228
permissions -rw-r--r--
6719955: Update copyright year Summary: Update copyright year for files that have been modified in 2008 Reviewed-by: ohair, tbell
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
670
ddf3e9583f2f 6719955: Update copyright year
xdono
parents: 354
diff changeset
     2
 * Copyright 1997-2008 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
// The CodeCache implements the code cache for various pieces of generated
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
// code, e.g., compiled java methods, runtime stubs, transition frames, etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
// The entries in the CodeCache are all CodeBlob's.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
// Implementation:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
//   - Each CodeBlob occupies one chunk of memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
//   - Like the offset table in oldspace the zone has at table for
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
//     locating a method given a addess of an instruction.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
class OopClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
class DepChange;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
class CodeCache : AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  // CodeHeap is malloc()'ed at startup and never deleted during shutdown,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  // so that the generated assembly code is always there when it's needed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  // This may cause memory leak, but is necessary, for now. See 4423824,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  // 4422213 or 4436291 for details.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  static CodeHeap * _heap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  static int _number_of_blobs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  static int _number_of_nmethods_with_dependencies;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  static bool _needs_cache_clean;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  static void verify_if_often() PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  // Initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  static void initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  // Allocation/administration
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  static CodeBlob* allocate(int size);              // allocates a new CodeBlob
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  static void commit(CodeBlob* cb);                 // called when the allocated CodeBlob has been filled
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  static int alignment_unit();                      // guaranteed alignment of all CodeBlobs
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  static int alignment_offset();                    // guaranteed offset of first CodeBlob byte within alignment unit (i.e., allocation header)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  static void free(CodeBlob* cb);                   // frees a CodeBlob
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  static void flush();                              // flushes all CodeBlobs
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  static bool contains(void *p);                    // returns whether p is included
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  static void blobs_do(void f(CodeBlob* cb));       // iterates over all CodeBlobs
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  static void nmethods_do(void f(nmethod* nm));     // iterates over all nmethods
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  // Lookup
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  static CodeBlob* find_blob(void* start);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  static nmethod*  find_nmethod(void* start);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  // Lookup that does not fail if you lookup a zombie method (if you call this, be sure to know
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  // what you are doing)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  static CodeBlob* find_blob_unsafe(void* start) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    CodeBlob* result = (CodeBlob*)_heap->find_start(start);
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    74
    // this assert is too strong because the heap code will return the
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    75
    // heapblock containing start. That block can often be larger than
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    76
    // the codeBlob itself. If you look up an address that is within
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    77
    // the heapblock but not in the codeBlob you will assert.
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    78
    //
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    79
    // Most things will not lookup such bad addresses. However
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    80
    // AsyncGetCallTrace can see intermediate frames and get that kind
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    81
    // of invalid address and so can a developer using hsfind.
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    82
    //
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    83
    // The more correct answer is to return NULL if blob_contains() returns
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    84
    // false.
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    85
    // assert(result == NULL || result->blob_contains((address)start), "found wrong CodeBlob");
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    86
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    87
    if (result != NULL && !result->blob_contains((address)start)) {
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    88
      result = NULL;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    89
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  // Iteration
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  static CodeBlob* first();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  static CodeBlob* next (CodeBlob* cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  static CodeBlob* alive(CodeBlob *cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  static nmethod* alive_nmethod(CodeBlob *cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  static int       nof_blobs()                 { return _number_of_blobs; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  // GC support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  static void gc_epilogue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  static void gc_prologue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  // If "unloading_occurred" is true, then unloads (i.e., breaks root links
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  // to) any unmarked codeBlobs in the cache.  Sets "marked_for_unloading"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  // to "true" iff some code got unloaded.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  static void do_unloading(BoolObjectClosure* is_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
                           OopClosure* keep_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
                           bool unloading_occurred);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  static void oops_do(OopClosure* f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  // Printing/debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  static void print()   PRODUCT_RETURN;          // prints summary
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  static void print_internals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  static void verify();                          // verifies the code cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  // The full limits of the codeCache
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  static address  low_bound()                    { return (address) _heap->low_boundary(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  static address  high_bound()                   { return (address) _heap->high_boundary(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  // Profiling
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  static address first_address();                // first address used for CodeBlobs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  static address last_address();                 // last  address used for CodeBlobs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  static size_t  capacity()                      { return _heap->capacity(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  static size_t  max_capacity()                  { return _heap->max_capacity(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  static size_t  unallocated_capacity()          { return _heap->unallocated_capacity(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  static bool needs_cache_clean()                { return _needs_cache_clean; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  static void set_needs_cache_clean(bool v)      { _needs_cache_clean = v;    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  static void clear_inline_caches();             // clear all inline caches
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  // Deoptimization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  static int  mark_for_deoptimization(DepChange& changes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
#ifdef HOTSWAP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  static int  mark_for_evol_deoptimization(instanceKlassHandle dependee);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
#endif // HOTSWAP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  static void mark_all_nmethods_for_deoptimization();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  static int  mark_for_deoptimization(methodOop dependee);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  static void make_marked_nmethods_zombies();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  static void make_marked_nmethods_not_entrant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
    // tells how many nmethods have dependencies
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  static int number_of_nmethods_with_dependencies();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
};