hotspot/src/share/vm/code/debugInfo.cpp
author goetz
Thu, 11 Jun 2015 10:50:27 +0200
changeset 31406 4121166054b6
parent 24424 2658d7834c6e
child 33160 c59f1676d27e
child 33148 68fa8b6c4340
permissions -rw-r--r--
8087183: Fix call to inline function is_oop in header debugInfo.hpp. Reviewed-by: kvn, kbarrett, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
31406
4121166054b6 8087183: Fix call to inline function is_oop in header debugInfo.hpp.
goetz
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: 670
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 670
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: 670
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
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#include "code/debugInfo.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
#include "code/debugInfoRec.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "code/nmethod.hpp"
31406
4121166054b6 8087183: Fix call to inline function is_oop in header debugInfo.hpp.
goetz
parents: 24424
diff changeset
    29
#include "oops/oop.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "runtime/handles.inline.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 13728
diff changeset
    32
PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 13728
diff changeset
    33
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 13728
diff changeset
    34
// Constructors
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
DebugInfoWriteStream::DebugInfoWriteStream(DebugInformationRecorder* recorder, int initial_size)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
: CompressedWriteStream(initial_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  _recorder = recorder;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// Serializing oops
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
void DebugInfoWriteStream::write_handle(jobject h) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  write_int(recorder()->oop_recorder()->find_index(h));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    47
void DebugInfoWriteStream::write_metadata(Metadata* h) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    48
  write_int(recorder()->oop_recorder()->find_index(h));
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    49
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    50
31406
4121166054b6 8087183: Fix call to inline function is_oop in header debugInfo.hpp.
goetz
parents: 24424
diff changeset
    51
oop DebugInfoReadStream::read_oop() {
4121166054b6 8087183: Fix call to inline function is_oop in header debugInfo.hpp.
goetz
parents: 24424
diff changeset
    52
  oop o = code()->oop_at(read_int());
4121166054b6 8087183: Fix call to inline function is_oop in header debugInfo.hpp.
goetz
parents: 24424
diff changeset
    53
  assert(o->is_oop_or_null(), "oop only");
4121166054b6 8087183: Fix call to inline function is_oop in header debugInfo.hpp.
goetz
parents: 24424
diff changeset
    54
  return o;
4121166054b6 8087183: Fix call to inline function is_oop in header debugInfo.hpp.
goetz
parents: 24424
diff changeset
    55
}
4121166054b6 8087183: Fix call to inline function is_oop in header debugInfo.hpp.
goetz
parents: 24424
diff changeset
    56
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
ScopeValue* DebugInfoReadStream::read_object_value() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  int id = read_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  assert(_obj_pool != NULL, "object pool does not exist");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  for (int i = _obj_pool->length() - 1; i >= 0; i--) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    assert(((ObjectValue*) _obj_pool->at(i))->id() != id, "should not be read twice");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  ObjectValue* result = new ObjectValue(id);
217
c646ef2f5d58 6667620: (Escape Analysis) fix deoptimization for scalar replaced objects
kvn
parents: 1
diff changeset
    66
  // Cache the object since an object field could reference it.
c646ef2f5d58 6667620: (Escape Analysis) fix deoptimization for scalar replaced objects
kvn
parents: 1
diff changeset
    67
  _obj_pool->push(result);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  result->read_object(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
ScopeValue* DebugInfoReadStream::get_cached_object() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  int id = read_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  assert(_obj_pool != NULL, "object pool does not exist");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  for (int i = _obj_pool->length() - 1; i >= 0; i--) {
217
c646ef2f5d58 6667620: (Escape Analysis) fix deoptimization for scalar replaced objects
kvn
parents: 1
diff changeset
    76
    ObjectValue* ov = (ObjectValue*) _obj_pool->at(i);
c646ef2f5d58 6667620: (Escape Analysis) fix deoptimization for scalar replaced objects
kvn
parents: 1
diff changeset
    77
    if (ov->id() == id) {
c646ef2f5d58 6667620: (Escape Analysis) fix deoptimization for scalar replaced objects
kvn
parents: 1
diff changeset
    78
      return ov;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
// Serializing scope values
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
enum { LOCATION_CODE = 0, CONSTANT_INT_CODE = 1,  CONSTANT_OOP_CODE = 2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
                          CONSTANT_LONG_CODE = 3, CONSTANT_DOUBLE_CODE = 4,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
                          OBJECT_CODE = 5,        OBJECT_ID_CODE = 6 };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
ScopeValue* ScopeValue::read_from(DebugInfoReadStream* stream) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  ScopeValue* result = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  switch(stream->read_int()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
   case LOCATION_CODE:        result = new LocationValue(stream);        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
   case CONSTANT_INT_CODE:    result = new ConstantIntValue(stream);     break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
   case CONSTANT_OOP_CODE:    result = new ConstantOopReadValue(stream); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
   case CONSTANT_LONG_CODE:   result = new ConstantLongValue(stream);    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
   case CONSTANT_DOUBLE_CODE: result = new ConstantDoubleValue(stream);  break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
   case OBJECT_CODE:          result = stream->read_object_value();      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
   case OBJECT_ID_CODE:       result = stream->get_cached_object();      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
   default: ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
// LocationValue
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
LocationValue::LocationValue(DebugInfoReadStream* stream) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  _location = Location(stream);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
void LocationValue::write_on(DebugInfoWriteStream* stream) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  stream->write_int(LOCATION_CODE);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  location().write_on(stream);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
void LocationValue::print_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  location().print_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
// ObjectValue
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
void ObjectValue::read_object(DebugInfoReadStream* stream) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  _klass = read_from(stream);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   125
  assert(_klass->is_constant_oop(), "should be constant java mirror oop");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  int length = stream->read_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  for (int i = 0; i < length; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    ScopeValue* val = read_from(stream);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    _field_values.append(val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
void ObjectValue::write_on(DebugInfoWriteStream* stream) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  if (_visited) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    stream->write_int(OBJECT_ID_CODE);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    stream->write_int(_id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    _visited = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    stream->write_int(OBJECT_CODE);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    stream->write_int(_id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    _klass->write_on(stream);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
    int length = _field_values.length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    stream->write_int(length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    for (int i = 0; i < length; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
      _field_values.at(i)->write_on(stream);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
void ObjectValue::print_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  st->print("obj[%d]", _id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
void ObjectValue::print_fields_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  if (_field_values.length() > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    _field_values.at(0)->print_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  for (int i = 1; i < _field_values.length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    st->print(", ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    _field_values.at(i)->print_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
// ConstantIntValue
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
ConstantIntValue::ConstantIntValue(DebugInfoReadStream* stream) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  _value = stream->read_signed_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
void ConstantIntValue::write_on(DebugInfoWriteStream* stream) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  stream->write_int(CONSTANT_INT_CODE);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  stream->write_signed_int(value());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
void ConstantIntValue::print_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  st->print("%d", value());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
// ConstantLongValue
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
ConstantLongValue::ConstantLongValue(DebugInfoReadStream* stream) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  _value = stream->read_long();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
void ConstantLongValue::write_on(DebugInfoWriteStream* stream) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  stream->write_int(CONSTANT_LONG_CODE);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  stream->write_long(value());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
void ConstantLongValue::print_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  st->print(INT64_FORMAT, value());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
// ConstantDoubleValue
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
ConstantDoubleValue::ConstantDoubleValue(DebugInfoReadStream* stream) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  _value = stream->read_double();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
void ConstantDoubleValue::write_on(DebugInfoWriteStream* stream) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  stream->write_int(CONSTANT_DOUBLE_CODE);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  stream->write_double(value());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
void ConstantDoubleValue::print_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  st->print("%f", value());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
// ConstantOopWriteValue
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
void ConstantOopWriteValue::write_on(DebugInfoWriteStream* stream) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   214
  assert(JNIHandles::resolve(value()) == NULL ||
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   215
         Universe::heap()->is_in_reserved(JNIHandles::resolve(value())),
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   216
         "Should be in heap");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  stream->write_int(CONSTANT_OOP_CODE);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  stream->write_handle(value());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
void ConstantOopWriteValue::print_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  JNIHandles::resolve(value())->print_value_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
// ConstantOopReadValue
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
ConstantOopReadValue::ConstantOopReadValue(DebugInfoReadStream* stream) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  _value = Handle(stream->read_oop());
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   230
  assert(_value() == NULL ||
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   231
         Universe::heap()->is_in_reserved(_value()), "Should be in heap");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
void ConstantOopReadValue::write_on(DebugInfoWriteStream* stream) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
void ConstantOopReadValue::print_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  value()()->print_value_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
// MonitorValue
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
MonitorValue::MonitorValue(ScopeValue* owner, Location basic_lock, bool eliminated) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  _owner       = owner;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  _basic_lock  = basic_lock;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  _eliminated  = eliminated;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
MonitorValue::MonitorValue(DebugInfoReadStream* stream) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  _basic_lock  = Location(stream);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  _owner       = ScopeValue::read_from(stream);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  _eliminated  = (stream->read_bool() != 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
void MonitorValue::write_on(DebugInfoWriteStream* stream) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  _basic_lock.write_on(stream);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  _owner->write_on(stream);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  stream->write_bool(_eliminated);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
void MonitorValue::print_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  st->print("monitor{");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  owner()->print_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  st->print(",");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  basic_lock().print_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  st->print("}");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  if (_eliminated) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
    st->print(" (eliminated)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
#endif