hotspot/src/share/vm/code/scopeDesc.cpp
author kvn
Tue, 11 Mar 2008 11:25:13 -0700
changeset 217 c646ef2f5d58
parent 1 489c9b5090e2
child 670 ddf3e9583f2f
permissions -rw-r--r--
6667620: (Escape Analysis) fix deoptimization for scalar replaced objects Summary: Deoptimization code for reallocation and relocking scalar replaced objects has to be fixed. Reviewed-by: rasbold, never
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1997-2006 Sun Microsystems, Inc.  All Rights Reserved.
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
# include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
# include "incls/_scopeDesc.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
ScopeDesc::ScopeDesc(const nmethod* code, int decode_offset, int obj_decode_offset) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
  _code          = code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  _decode_offset = decode_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
  _objects       = decode_object_values(obj_decode_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  decode_body();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
ScopeDesc::ScopeDesc(const nmethod* code, int decode_offset) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  _code          = code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  _decode_offset = decode_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  _objects       = decode_object_values(DebugInformationRecorder::serialized_null);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  decode_body();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
ScopeDesc::ScopeDesc(const ScopeDesc* parent) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  _code          = parent->_code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  _decode_offset = parent->_sender_decode_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  _objects       = parent->_objects;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  decode_body();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
void ScopeDesc::decode_body() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  if (decode_offset() == DebugInformationRecorder::serialized_null) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    // This is a sentinel record, which is only relevant to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
    // approximate queries.  Decode a reasonable frame.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
    _sender_decode_offset = DebugInformationRecorder::serialized_null;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    _method = methodHandle(_code->method());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
    _bci = InvocationEntryBci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    _locals_decode_offset = DebugInformationRecorder::serialized_null;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    _expressions_decode_offset = DebugInformationRecorder::serialized_null;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    _monitors_decode_offset = DebugInformationRecorder::serialized_null;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    // decode header
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    DebugInfoReadStream* stream  = stream_at(decode_offset());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    _sender_decode_offset = stream->read_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    _method = methodHandle((methodOop) stream->read_oop());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    _bci    = stream->read_bci();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    // decode offsets for body and sender
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    _locals_decode_offset      = stream->read_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    _expressions_decode_offset = stream->read_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    _monitors_decode_offset    = stream->read_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
GrowableArray<ScopeValue*>* ScopeDesc::decode_scope_values(int decode_offset) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  if (decode_offset == DebugInformationRecorder::serialized_null) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  DebugInfoReadStream* stream = stream_at(decode_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  int length = stream->read_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  GrowableArray<ScopeValue*>* result = new GrowableArray<ScopeValue*> (length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  for (int index = 0; index < length; index++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    result->push(ScopeValue::read_from(stream));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
GrowableArray<ScopeValue*>* ScopeDesc::decode_object_values(int decode_offset) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  if (decode_offset == DebugInformationRecorder::serialized_null) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  GrowableArray<ScopeValue*>* result = new GrowableArray<ScopeValue*>();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  DebugInfoReadStream* stream = new DebugInfoReadStream(_code, decode_offset, result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  int length = stream->read_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  for (int index = 0; index < length; index++) {
217
c646ef2f5d58 6667620: (Escape Analysis) fix deoptimization for scalar replaced objects
kvn
parents: 1
diff changeset
    94
    // Objects values are pushed to 'result' array during read so that
c646ef2f5d58 6667620: (Escape Analysis) fix deoptimization for scalar replaced objects
kvn
parents: 1
diff changeset
    95
    // object's fields could reference it (OBJECT_ID_CODE).
c646ef2f5d58 6667620: (Escape Analysis) fix deoptimization for scalar replaced objects
kvn
parents: 1
diff changeset
    96
    (void)ScopeValue::read_from(stream);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  assert(result->length() == length, "inconsistent debug information");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
GrowableArray<MonitorValue*>* ScopeDesc::decode_monitor_values(int decode_offset) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  if (decode_offset == DebugInformationRecorder::serialized_null) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  DebugInfoReadStream* stream  = stream_at(decode_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  int length = stream->read_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  GrowableArray<MonitorValue*>* result = new GrowableArray<MonitorValue*> (length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  for (int index = 0; index < length; index++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    result->push(new MonitorValue(stream));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
DebugInfoReadStream* ScopeDesc::stream_at(int decode_offset) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  return new DebugInfoReadStream(_code, decode_offset, _objects);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
GrowableArray<ScopeValue*>* ScopeDesc::locals() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  return decode_scope_values(_locals_decode_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
GrowableArray<ScopeValue*>* ScopeDesc::expressions() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  return decode_scope_values(_expressions_decode_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
GrowableArray<MonitorValue*>* ScopeDesc::monitors() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  return decode_monitor_values(_monitors_decode_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
GrowableArray<ScopeValue*>* ScopeDesc::objects() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  return _objects;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
bool ScopeDesc::is_top() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
 return _sender_decode_offset == DebugInformationRecorder::serialized_null;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
ScopeDesc* ScopeDesc::sender() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  if (is_top()) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  return new ScopeDesc(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
void ScopeDesc::print_value_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  tty->print("   ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  method()()->print_short_name(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  int lineno = method()->line_number_from_bci(bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  if (lineno != -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
    st->print_cr("@%d (line %d)", bci(), lineno);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    st->print_cr("@%d", bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
void ScopeDesc::print_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  print_on(st, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
void ScopeDesc::print_on(outputStream* st, PcDesc* pd) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  // header
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  if (pd != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
    tty->print_cr("ScopeDesc(pc=" PTR_FORMAT " offset=%x):", pd->real_pc(_code), pd->pc_offset());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  print_value_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  // decode offsets
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  if (WizardMode) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    st->print("ScopeDesc[%d]@" PTR_FORMAT " ", _decode_offset, _code->instructions_begin());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    st->print_cr(" offset:     %d",    _decode_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    st->print_cr(" bci:        %d",    bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    st->print_cr(" locals:     %d",    _locals_decode_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    st->print_cr(" stack:      %d",    _expressions_decode_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    st->print_cr(" monitor:    %d",    _monitors_decode_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    st->print_cr(" sender:     %d",    _sender_decode_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  // locals
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  { GrowableArray<ScopeValue*>* l = ((ScopeDesc*) this)->locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    if (l != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
      tty->print_cr("   Locals");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
      for (int index = 0; index < l->length(); index++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
        st->print("    - l%d: ", index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
        l->at(index)->print_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
        st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  // expressions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  { GrowableArray<ScopeValue*>* l = ((ScopeDesc*) this)->expressions();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
    if (l != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
      st->print_cr("   Expression stack");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
      for (int index = 0; index < l->length(); index++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
        st->print("   - @%d: ", index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
        l->at(index)->print_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
        st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  // monitors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  { GrowableArray<MonitorValue*>* l = ((ScopeDesc*) this)->monitors();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
    if (l != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
      st->print_cr("   Monitor stack");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
      for (int index = 0; index < l->length(); index++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
        st->print("    - @%d: ", index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
        l->at(index)->print_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
        st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
#ifdef COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  if (DoEscapeAnalysis && is_top() && _objects != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    tty->print_cr("Objects");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    for (int i = 0; i < _objects->length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
      ObjectValue* sv = (ObjectValue*) _objects->at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
      tty->print(" - %d: ", sv->id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
      sv->print_fields_on(tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
      tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
#endif // COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
void ScopeDesc::verify() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  guarantee(method()->is_method(), "type check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  // check if we have any illegal elements on the expression stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  { GrowableArray<ScopeValue*>* l = expressions();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
    if (l != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
      for (int index = 0; index < l->length(); index++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
       //guarantee(!l->at(index)->is_illegal(), "expression element cannot be illegal");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
}