hotspot/src/share/vm/oops/markOop.inline.hpp
author iveresov
Fri, 04 Mar 2011 15:14:16 -0800
changeset 8667 b32929355d27
parent 7658 b970e410547a
child 13728 882756847a04
permissions -rw-r--r--
7020403: Add AdvancedCompilationPolicy for tiered Summary: This implements adaptive tiered compilation policy. Reviewed-by: kvn, never
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
     2
 * Copyright (c) 2006, 2010, 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: 1374
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1374
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: 1374
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: 5547
diff changeset
    25
#ifndef SHARE_VM_OOPS_MARKOOP_INLINE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_OOPS_MARKOOP_INLINE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "oops/klass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "oops/klassOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "oops/markOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "runtime/globals.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
7658
b970e410547a 6807801: CMS: could save/restore fewer header words during scavenge
ysr
parents: 7397
diff changeset
    33
// Should this header be preserved during GC (when biased locking is enabled)?
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
inline bool markOopDesc::must_be_preserved_with_bias(oop obj_containing_mark) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  assert(UseBiasedLocking, "unexpected");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  if (has_bias_pattern()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
    // Will reset bias at end of collection
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
    // Mark words of biased and currently locked objects are preserved separately
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  markOop prototype_header = prototype_for_object(obj_containing_mark);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  if (prototype_header->has_bias_pattern()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
    // Individual instance which has its bias revoked; must return
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
    // true for correctness
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  return (!is_unlocked() || !has_no_hash());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
7658
b970e410547a 6807801: CMS: could save/restore fewer header words during scavenge
ysr
parents: 7397
diff changeset
    50
// Should this header be preserved during GC?
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
    51
inline bool markOopDesc::must_be_preserved(oop obj_containing_mark) const {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
    52
  if (!UseBiasedLocking)
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
    53
    return (!is_unlocked() || !has_no_hash());
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
    54
  return must_be_preserved_with_bias(obj_containing_mark);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
    55
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
    56
7658
b970e410547a 6807801: CMS: could save/restore fewer header words during scavenge
ysr
parents: 7397
diff changeset
    57
// Should this header be preserved in the case of a promotion failure
b970e410547a 6807801: CMS: could save/restore fewer header words during scavenge
ysr
parents: 7397
diff changeset
    58
// during scavenge (when biased locking is enabled)?
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
inline bool markOopDesc::must_be_preserved_with_bias_for_promotion_failure(oop obj_containing_mark) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  assert(UseBiasedLocking, "unexpected");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  // We don't explicitly save off the mark words of biased and
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  // currently-locked objects during scavenges, so if during a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  // promotion failure we encounter either a biased mark word or a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  // klass which still has a biasable prototype header, we have to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  // preserve the mark word. This results in oversaving, but promotion
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  // failures are rare, and this avoids adding more complex logic to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  // the scavengers to call new variants of
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  // BiasedLocking::preserve_marks() / restore_marks() in the middle
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  // of a scavenge when a promotion failure has first been detected.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  if (has_bias_pattern() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
      prototype_for_object(obj_containing_mark)->has_bias_pattern()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  }
7658
b970e410547a 6807801: CMS: could save/restore fewer header words during scavenge
ysr
parents: 7397
diff changeset
    74
  return (!is_unlocked() || !has_no_hash());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
7658
b970e410547a 6807801: CMS: could save/restore fewer header words during scavenge
ysr
parents: 7397
diff changeset
    77
// Should this header be preserved in the case of a promotion failure
b970e410547a 6807801: CMS: could save/restore fewer header words during scavenge
ysr
parents: 7397
diff changeset
    78
// during scavenge?
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
    79
inline bool markOopDesc::must_be_preserved_for_promotion_failure(oop obj_containing_mark) const {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
    80
  if (!UseBiasedLocking)
7658
b970e410547a 6807801: CMS: could save/restore fewer header words during scavenge
ysr
parents: 7397
diff changeset
    81
    return (!is_unlocked() || !has_no_hash());
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
    82
  return must_be_preserved_with_bias_for_promotion_failure(obj_containing_mark);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
    83
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
    84
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
    85
7658
b970e410547a 6807801: CMS: could save/restore fewer header words during scavenge
ysr
parents: 7397
diff changeset
    86
// Same as must_be_preserved_with_bias_for_promotion_failure() except that
b970e410547a 6807801: CMS: could save/restore fewer header words during scavenge
ysr
parents: 7397
diff changeset
    87
// it takes a klassOop argument, instead of the object of which this is the mark word.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
inline bool markOopDesc::must_be_preserved_with_bias_for_cms_scavenge(klassOop klass_of_obj_containing_mark) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  assert(UseBiasedLocking, "unexpected");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  // CMS scavenges preserve mark words in similar fashion to promotion failures; see above
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  if (has_bias_pattern() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
      klass_of_obj_containing_mark->klass_part()->prototype_header()->has_bias_pattern()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  }
7658
b970e410547a 6807801: CMS: could save/restore fewer header words during scavenge
ysr
parents: 7397
diff changeset
    95
  return (!is_unlocked() || !has_no_hash());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
}
7658
b970e410547a 6807801: CMS: could save/restore fewer header words during scavenge
ysr
parents: 7397
diff changeset
    97
b970e410547a 6807801: CMS: could save/restore fewer header words during scavenge
ysr
parents: 7397
diff changeset
    98
// Same as must_be_preserved_for_promotion_failure() except that
b970e410547a 6807801: CMS: could save/restore fewer header words during scavenge
ysr
parents: 7397
diff changeset
    99
// it takes a klassOop argument, instead of the object of which this is the mark word.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   100
inline bool markOopDesc::must_be_preserved_for_cms_scavenge(klassOop klass_of_obj_containing_mark) const {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   101
  if (!UseBiasedLocking)
7658
b970e410547a 6807801: CMS: could save/restore fewer header words during scavenge
ysr
parents: 7397
diff changeset
   102
    return (!is_unlocked() || !has_no_hash());
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   103
  return must_be_preserved_with_bias_for_cms_scavenge(klass_of_obj_containing_mark);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   104
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
inline markOop markOopDesc::prototype_for_object(oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  markOop prototype_header = obj->klass()->klass_part()->prototype_header();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  assert(prototype_header == prototype() || prototype_header->has_bias_pattern(), "corrupt prototype header");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  return obj->klass()->klass_part()->prototype_header();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
}
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   113
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   114
#endif // SHARE_VM_OOPS_MARKOOP_INLINE_HPP