hotspot/src/share/vm/oops/oop.cpp
author bpittore
Wed, 24 Jun 2015 12:12:25 -0400
changeset 31592 43f48e165466
parent 29084 1b732f2836ce
child 33105 294e48b4f704
permissions -rw-r--r--
8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier" Summary: Need to add a space between macro identifier and string literal Reviewed-by: stefank, dholmes, kbarrett
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 24424
diff changeset
     2
 * Copyright (c) 1997, 2015, 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: 4584
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4584
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: 4584
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: 6176
diff changeset
    25
#include "precompiled.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
    26
#include "classfile/altHashing.hpp"
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 24424
diff changeset
    27
#include "classfile/javaClasses.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    28
#include "oops/oop.inline.hpp"
29084
1b732f2836ce 8073387: Move VerifyOopClosures out from genOopClosures.hpp
stefank
parents: 29081
diff changeset
    29
#include "oops/verifyOopClosure.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    30
#include "runtime/handles.inline.hpp"
14583
d70ee55535f4 8003935: Simplify the needed includes for using Thread::current()
stefank
parents: 13728
diff changeset
    31
#include "runtime/thread.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    32
#include "utilities/copy.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22757
diff changeset
    34
PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22757
diff changeset
    35
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
bool always_do_update_barrier = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
BarrierSet* oopDesc::_bs = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
void oopDesc::print_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  if (this == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
    st->print_cr("NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  } else {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
    44
    klass()->oop_print_on(oop(this), st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
void oopDesc::print_address_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  if (PrintOopAddress) {
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 29084
diff changeset
    50
    st->print("{" INTPTR_FORMAT "}", this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
void oopDesc::print()         { print_on(tty);         }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
void oopDesc::print_address() { print_address_on(tty); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
char* oopDesc::print_string() {
4584
e2a449e8cc6f 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 2332
diff changeset
    59
  stringStream st;
e2a449e8cc6f 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 2332
diff changeset
    60
  print_on(&st);
e2a449e8cc6f 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 2332
diff changeset
    61
  return st.as_string();
e2a449e8cc6f 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 2332
diff changeset
    62
}
e2a449e8cc6f 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 2332
diff changeset
    63
e2a449e8cc6f 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 2332
diff changeset
    64
void oopDesc::print_value() {
e2a449e8cc6f 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 2332
diff changeset
    65
  print_value_on(tty);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
char* oopDesc::print_value_string() {
4584
e2a449e8cc6f 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 2332
diff changeset
    69
  char buf[100];
e2a449e8cc6f 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 2332
diff changeset
    70
  stringStream st(buf, sizeof(buf));
e2a449e8cc6f 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 2332
diff changeset
    71
  print_value_on(&st);
e2a449e8cc6f 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 2332
diff changeset
    72
  return st.as_string();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
4584
e2a449e8cc6f 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 2332
diff changeset
    75
void oopDesc::print_value_on(outputStream* st) const {
e2a449e8cc6f 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 2332
diff changeset
    76
  oop obj = oop(this);
e2a449e8cc6f 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 2332
diff changeset
    77
  if (this == NULL) {
e2a449e8cc6f 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 2332
diff changeset
    78
    st->print("NULL");
e2a449e8cc6f 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 2332
diff changeset
    79
  } else if (java_lang_String::is_instance(obj)) {
e2a449e8cc6f 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 2332
diff changeset
    80
    java_lang_String::print(obj, st);
e2a449e8cc6f 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 2332
diff changeset
    81
    if (PrintOopAddress) print_address_on(st);
e2a449e8cc6f 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 2332
diff changeset
    82
  } else {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
    83
    klass()->oop_print_value_on(obj, st);
4584
e2a449e8cc6f 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 2332
diff changeset
    84
  }
e2a449e8cc6f 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 2332
diff changeset
    85
}
e2a449e8cc6f 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 2332
diff changeset
    86
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
void oopDesc::verify_on(outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  if (this != NULL) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
    90
    klass()->oop_verify_on(this, st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
void oopDesc::verify() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  verify_on(tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
intptr_t oopDesc::slow_identity_hash() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  // slow case; we have to acquire the micro lock in order to locate the header
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  ResetNoHandleMark rnm; // Might be called from LEAF/QUICK ENTRY
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  HandleMark hm;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   103
  Handle object(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  return ObjectSynchronizer::identity_hash_value_for(object);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   107
// When String table needs to rehash
22757
b2cbb3680b4f 8033792: AltHashing used jint for imprecise bit shifting
minqi
parents: 17087
diff changeset
   108
unsigned int oopDesc::new_hash(juint seed) {
17081
cf52c2bc3f8c 8011773: Some tests on Interned String crashed JVM with OOM
hseigel
parents: 14583
diff changeset
   109
  EXCEPTION_MARK;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   110
  ResourceMark rm;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   111
  int length;
17081
cf52c2bc3f8c 8011773: Some tests on Interned String crashed JVM with OOM
hseigel
parents: 14583
diff changeset
   112
  jchar* chars = java_lang_String::as_unicode_string(this, length, THREAD);
cf52c2bc3f8c 8011773: Some tests on Interned String crashed JVM with OOM
hseigel
parents: 14583
diff changeset
   113
  if (chars != NULL) {
cf52c2bc3f8c 8011773: Some tests on Interned String crashed JVM with OOM
hseigel
parents: 14583
diff changeset
   114
    // Use alternate hashing algorithm on the string
cf52c2bc3f8c 8011773: Some tests on Interned String crashed JVM with OOM
hseigel
parents: 14583
diff changeset
   115
    return AltHashing::murmur3_32(seed, chars, length);
cf52c2bc3f8c 8011773: Some tests on Interned String crashed JVM with OOM
hseigel
parents: 14583
diff changeset
   116
  } else {
17087
f0b76c4c93a0 8011661: Insufficient memory message says "malloc" when sometimes it should say "mmap"
ccheung
parents: 17081
diff changeset
   117
    vm_exit_out_of_memory(length, OOM_MALLOC_ERROR, "unable to create Unicode strings for String table rehash");
17081
cf52c2bc3f8c 8011773: Some tests on Interned String crashed JVM with OOM
hseigel
parents: 14583
diff changeset
   118
    return 0;
cf52c2bc3f8c 8011773: Some tests on Interned String crashed JVM with OOM
hseigel
parents: 14583
diff changeset
   119
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   120
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   121
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
VerifyOopClosure VerifyOopClosure::verify_oop;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   123
29084
1b732f2836ce 8073387: Move VerifyOopClosures out from genOopClosures.hpp
stefank
parents: 29081
diff changeset
   124
template <class T> void VerifyOopClosure::do_oop_work(T* p) {
1b732f2836ce 8073387: Move VerifyOopClosures out from genOopClosures.hpp
stefank
parents: 29081
diff changeset
   125
  oop obj = oopDesc::load_decode_heap_oop(p);
1b732f2836ce 8073387: Move VerifyOopClosures out from genOopClosures.hpp
stefank
parents: 29081
diff changeset
   126
  guarantee(obj->is_oop_or_null(), err_msg("invalid oop: " INTPTR_FORMAT, p2i((oopDesc*) obj)));
1b732f2836ce 8073387: Move VerifyOopClosures out from genOopClosures.hpp
stefank
parents: 29081
diff changeset
   127
}
1b732f2836ce 8073387: Move VerifyOopClosures out from genOopClosures.hpp
stefank
parents: 29081
diff changeset
   128
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   129
void VerifyOopClosure::do_oop(oop* p)       { VerifyOopClosure::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   130
void VerifyOopClosure::do_oop(narrowOop* p) { VerifyOopClosure::do_oop_work(p); }
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 24424
diff changeset
   131
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 24424
diff changeset
   132
// type test operations that doesn't require inclusion of oop.inline.hpp.
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 24424
diff changeset
   133
bool oopDesc::is_instance_noinline()          const { return is_instance();            }
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 24424
diff changeset
   134
bool oopDesc::is_instanceMirror_noinline()    const { return is_instanceMirror();      }
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 24424
diff changeset
   135
bool oopDesc::is_instanceClassLoader_noline() const { return is_instanceClassLoader(); }
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 24424
diff changeset
   136
bool oopDesc::is_instanceRef_noline()         const { return is_instanceRef();         }
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 24424
diff changeset
   137
bool oopDesc::is_array_noinline()             const { return is_array();               }
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 24424
diff changeset
   138
bool oopDesc::is_objArray_noinline()          const { return is_objArray();            }
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 24424
diff changeset
   139
bool oopDesc::is_typeArray_noinline()         const { return is_typeArray();           }
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 24424
diff changeset
   140
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 24424
diff changeset
   141
bool oopDesc::has_klass_gap() {
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 24424
diff changeset
   142
  // Only has a klass gap when compressed class pointers are used.
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 24424
diff changeset
   143
  return UseCompressedClassPointers;
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 24424
diff changeset
   144
}