src/hotspot/share/ci/ciMethodData.cpp
author rehn
Wed, 26 Jun 2019 18:22:28 +0200
changeset 55514 03468b206457
parent 53546 63eb7e38ce84
child 57709 155b084cf384
permissions -rw-r--r--
8225702: Safepoint counter can't be used for safepoint detection Reviewed-by: dcubed, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53546
63eb7e38ce84 8217922: Compiler dead code removal
redestad
parents: 53535
diff changeset
     2
 * Copyright (c) 2001, 2019, 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: 6453
diff changeset
    25
#include "precompiled.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    26
#include "ci/ciMetadata.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    27
#include "ci/ciMethodData.hpp"
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
    28
#include "ci/ciReplay.hpp"
49449
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 47887
diff changeset
    29
#include "ci/ciUtilities.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    30
#include "memory/allocation.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    31
#include "memory/resourceArea.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    32
#include "runtime/deoptimization.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    33
#include "utilities/copy.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// ciMethodData
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// ciMethodData::ciMethodData
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
//
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    40
ciMethodData::ciMethodData(MethodData* md) : ciMetadata(md) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    41
  assert(md != NULL, "no null method data");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  Copy::zero_to_words((HeapWord*) &_orig, sizeof(_orig) / sizeof(HeapWord));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  _data = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  _data_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  _extra_data_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  _current_mileage = 0;
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
    47
  _invocation_counter = 0;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
    48
  _backedge_counter = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  _state = empty_state;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  _saw_free_extra_data = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  // Set an initial hint. Don't use set_hint_di() because
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  // first_di() may be out of bounds if data_size is 0.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  _hint_di = first_di();
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
    54
  // Initialize the escape information (to "don't know.");
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
    55
  _eflags = _arg_local = _arg_stack = _arg_returned = 0;
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
    56
  _parameters = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
// ciMethodData::ciMethodData
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
//
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    62
// No MethodData*.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    63
ciMethodData::ciMethodData() : ciMetadata(NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  Copy::zero_to_words((HeapWord*) &_orig, sizeof(_orig) / sizeof(HeapWord));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  _data = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  _data_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  _extra_data_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  _current_mileage = 0;
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
    69
  _invocation_counter = 0;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
    70
  _backedge_counter = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  _state = empty_state;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  _saw_free_extra_data = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  // Set an initial hint. Don't use set_hint_di() because
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  // first_di() may be out of bounds if data_size is 0.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  _hint_di = first_di();
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
    76
  // Initialize the escape information (to "don't know.");
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
    77
  _eflags = _arg_local = _arg_stack = _arg_returned = 0;
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
    78
  _parameters = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
53278
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
    81
// Check for entries that reference an unloaded method
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
    82
class PrepareExtraDataClosure : public CleanExtraDataClosure {
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
    83
  MethodData*            _mdo;
55514
03468b206457 8225702: Safepoint counter can't be used for safepoint detection
rehn
parents: 53546
diff changeset
    84
  SafepointStateTracker  _safepoint_tracker;
53278
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
    85
  GrowableArray<Method*> _uncached_methods;
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
    86
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
    87
public:
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
    88
  PrepareExtraDataClosure(MethodData* mdo)
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
    89
    : _mdo(mdo),
55514
03468b206457 8225702: Safepoint counter can't be used for safepoint detection
rehn
parents: 53546
diff changeset
    90
      _safepoint_tracker(SafepointSynchronize::safepoint_state_tracker()),
53278
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
    91
      _uncached_methods()
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
    92
  { }
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
    93
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
    94
  bool is_live(Method* m) {
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
    95
    if (!m->method_holder()->is_loader_alive()) {
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
    96
      return false;
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
    97
    }
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
    98
    if (CURRENT_ENV->cached_metadata(m) == NULL) {
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
    99
      // Uncached entries need to be pre-populated.
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   100
      _uncached_methods.append(m);
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   101
    }
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   102
    return true;
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   103
  }
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   104
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   105
  bool has_safepointed() {
55514
03468b206457 8225702: Safepoint counter can't be used for safepoint detection
rehn
parents: 53546
diff changeset
   106
    return _safepoint_tracker.safepoint_state_changed();
53278
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   107
  }
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   108
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   109
  bool finish() {
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   110
    if (_uncached_methods.length() == 0) {
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   111
      // Preparation finished iff all Methods* were already cached.
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   112
      return true;
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   113
    }
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   114
    // Holding locks through safepoints is bad practice.
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   115
    MutexUnlocker mu(_mdo->extra_data_lock());
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   116
    for (int i = 0; i < _uncached_methods.length(); ++i) {
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   117
      if (has_safepointed()) {
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   118
        // The metadata in the growable array might contain stale
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   119
        // entries after a safepoint.
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   120
        return false;
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   121
      }
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   122
      Method* method = _uncached_methods.at(i);
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   123
      // Populating ciEnv caches may cause safepoints due
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   124
      // to taking the Compile_lock with safepoint checks.
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   125
      (void)CURRENT_ENV->get_method(method);
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   126
    }
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   127
    return false;
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   128
  }
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   129
};
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   130
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   131
void ciMethodData::prepare_metadata() {
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   132
  MethodData* mdo = get_MethodData();
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   133
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   134
  for (;;) {
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   135
    ResourceMark rm;
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   136
    PrepareExtraDataClosure cl(mdo);
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   137
    mdo->clean_extra_data(&cl);
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   138
    if (cl.finish()) {
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   139
      // When encountering uncached metadata, the Compile_lock might be
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   140
      // acquired when creating ciMetadata handles, causing safepoints
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   141
      // which requires a new round of preparation to clean out potentially
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   142
      // new unloading metadata.
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   143
      return;
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   144
    }
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   145
  }
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   146
}
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   147
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   148
void ciMethodData::load_extra_data() {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   149
  MethodData* mdo = get_MethodData();
36601
e791e26c8f1b 8139247: Improper locking of MethodData::_extra_data_lock
vlivanov
parents: 33105
diff changeset
   150
  MutexLocker ml(mdo->extra_data_lock());
53278
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   151
  // Deferred metadata cleaning due to concurrent class unloading.
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   152
  prepare_metadata();
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   153
  // After metadata preparation, there is no stale metadata,
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   154
  // and no safepoints can introduce more stale metadata.
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   155
  NoSafepointVerifier no_safepoint;
26440
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25492
diff changeset
   156
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   157
  // speculative trap entries also hold a pointer to a Method so need to be translated
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   158
  DataLayout* dp_src  = mdo->extra_data_base();
26440
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25492
diff changeset
   159
  DataLayout* end_src = mdo->args_data_limit();
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   160
  DataLayout* dp_dst  = extra_data_base();
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   161
  for (;; dp_src = MethodData::next_extra(dp_src), dp_dst = MethodData::next_extra(dp_dst)) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   162
    assert(dp_src < end_src, "moved past end of extra data");
26440
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25492
diff changeset
   163
    assert(((intptr_t)dp_dst) - ((intptr_t)extra_data_base()) == ((intptr_t)dp_src) - ((intptr_t)mdo->extra_data_base()), "source and destination don't match");
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25492
diff changeset
   164
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25492
diff changeset
   165
    // New traps in the MDO may have been added since we copied the
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25492
diff changeset
   166
    // data (concurrent deoptimizations before we acquired
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25492
diff changeset
   167
    // extra_data_lock above) or can be removed (a safepoint may occur
53278
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   168
    // in the prepare_metadata call above) as we translate the copy:
26440
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25492
diff changeset
   169
    // update the copy as we go.
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25492
diff changeset
   170
    int tag = dp_src->tag();
53307
b5281bf751ea 8216427: ciMethodData::load_extra_data() does not always unpack the last entry
eosterlund
parents: 53278
diff changeset
   171
    size_t entry_size = DataLayout::header_size_in_bytes();
b5281bf751ea 8216427: ciMethodData::load_extra_data() does not always unpack the last entry
eosterlund
parents: 53278
diff changeset
   172
    if (tag != DataLayout::no_tag) {
b5281bf751ea 8216427: ciMethodData::load_extra_data() does not always unpack the last entry
eosterlund
parents: 53278
diff changeset
   173
      ProfileData* src_data = dp_src->data_in();
b5281bf751ea 8216427: ciMethodData::load_extra_data() does not always unpack the last entry
eosterlund
parents: 53278
diff changeset
   174
      entry_size = src_data->size_in_bytes();
26440
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25492
diff changeset
   175
    }
53307
b5281bf751ea 8216427: ciMethodData::load_extra_data() does not always unpack the last entry
eosterlund
parents: 53278
diff changeset
   176
    memcpy(dp_dst, dp_src, entry_size);
26440
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25492
diff changeset
   177
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25492
diff changeset
   178
    switch(tag) {
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   179
    case DataLayout::speculative_trap_data_tag: {
36601
e791e26c8f1b 8139247: Improper locking of MethodData::_extra_data_lock
vlivanov
parents: 33105
diff changeset
   180
      ciSpeculativeTrapData data_dst(dp_dst);
e791e26c8f1b 8139247: Improper locking of MethodData::_extra_data_lock
vlivanov
parents: 33105
diff changeset
   181
      SpeculativeTrapData   data_src(dp_src);
53278
4b469f5f4bf2 8215889: assert(!_unloading) failed: This oop is not available to unloading class loader data with ZGC
eosterlund
parents: 52785
diff changeset
   182
      data_dst.translate_from(&data_src);
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   183
      break;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   184
    }
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   185
    case DataLayout::bit_data_tag:
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   186
      break;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   187
    case DataLayout::no_tag:
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   188
    case DataLayout::arg_info_data_tag:
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   189
      // An empty slot or ArgInfoData entry marks the end of the trap data
36601
e791e26c8f1b 8139247: Improper locking of MethodData::_extra_data_lock
vlivanov
parents: 33105
diff changeset
   190
      {
e791e26c8f1b 8139247: Improper locking of MethodData::_extra_data_lock
vlivanov
parents: 33105
diff changeset
   191
        return; // Need a block to avoid SS compiler bug
e791e26c8f1b 8139247: Improper locking of MethodData::_extra_data_lock
vlivanov
parents: 33105
diff changeset
   192
      }
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   193
    default:
36601
e791e26c8f1b 8139247: Improper locking of MethodData::_extra_data_lock
vlivanov
parents: 33105
diff changeset
   194
      fatal("bad tag = %d", tag);
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   195
    }
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   196
  }
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   197
}
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   198
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
void ciMethodData::load_data() {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   200
  MethodData* mdo = get_MethodData();
20695
4f5a5e95090b 8025566: EXCEPTION_ACCESS_VIOLATION in compiled by C1 String.valueOf method
twisti
parents: 20692
diff changeset
   201
  if (mdo == NULL) {
4f5a5e95090b 8025566: EXCEPTION_ACCESS_VIOLATION in compiled by C1 String.valueOf method
twisti
parents: 20692
diff changeset
   202
    return;
4f5a5e95090b 8025566: EXCEPTION_ACCESS_VIOLATION in compiled by C1 String.valueOf method
twisti
parents: 20692
diff changeset
   203
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  // To do: don't copy the data if it is not "ripe" -- require a minimum #
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  // of invocations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  // Snapshot the data -- actually, take an approximate snapshot of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  // the data.  Any concurrently executing threads may be changing the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  // data as we copy it.
53535
ce77e4d928f3 8216987: ciMethodData::load_data() unpacks MDOs with non-atomic copy
eosterlund
parents: 53307
diff changeset
   211
  Copy::disjoint_words_atomic((HeapWord*) mdo,
ce77e4d928f3 8216987: ciMethodData::load_data() unpacks MDOs with non-atomic copy
eosterlund
parents: 53307
diff changeset
   212
                              (HeapWord*) &_orig,
ce77e4d928f3 8216987: ciMethodData::load_data() unpacks MDOs with non-atomic copy
eosterlund
parents: 53307
diff changeset
   213
                              sizeof(_orig) / HeapWordSize);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  Arena* arena = CURRENT_ENV->arena();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  _data_size = mdo->data_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  _extra_data_size = mdo->extra_data_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  int total_size = _data_size + _extra_data_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  _data = (intptr_t *) arena->Amalloc(total_size);
53535
ce77e4d928f3 8216987: ciMethodData::load_data() unpacks MDOs with non-atomic copy
eosterlund
parents: 53307
diff changeset
   219
  Copy::disjoint_words_atomic((HeapWord*) mdo->data_base(),
ce77e4d928f3 8216987: ciMethodData::load_data() unpacks MDOs with non-atomic copy
eosterlund
parents: 53307
diff changeset
   220
                              (HeapWord*) _data,
ce77e4d928f3 8216987: ciMethodData::load_data() unpacks MDOs with non-atomic copy
eosterlund
parents: 53307
diff changeset
   221
                              total_size / HeapWordSize);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  // Traverse the profile data, translating any oops into their
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  // ci equivalents.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  ciProfileData* ci_data = first_data();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  ProfileData* data = mdo->first_data();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  while (is_valid(ci_data)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
    ci_data->translate_from(data);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    ci_data = next_data(ci_data);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    data = mdo->next_data(data);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  }
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   233
  if (mdo->parameters_type_data() != NULL) {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   234
    _parameters = data_layout_at(mdo->parameters_type_data_di());
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   235
    ciParametersTypeData* parameters = new ciParametersTypeData(_parameters);
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   236
    parameters->translate_from(mdo->parameters_type_data());
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   237
  }
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   238
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   239
  load_extra_data();
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   240
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  // Note:  Extra data are all BitData, and do not need translation.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   242
  _current_mileage = MethodData::mileage_of(mdo->method());
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   243
  _invocation_counter = mdo->invocation_count();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   244
  _backedge_counter = mdo->backedge_count();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  _state = mdo->is_mature()? mature_state: immature_state;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  _eflags = mdo->eflags();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  _arg_local = mdo->arg_local();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  _arg_stack = mdo->arg_stack();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  _arg_returned  = mdo->arg_returned();
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   251
#ifndef PRODUCT
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   252
  if (ReplayCompiles) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   253
    ciReplay::initialize(this);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   254
  }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   255
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   258
void ciReceiverTypeData::translate_receiver_data_from(const ProfileData* data) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  for (uint row = 0; row < row_limit(); row++) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   260
    Klass* k = data->as_ReceiverTypeData()->receiver(row);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
    if (k != NULL) {
51680
d058b410af0a 8210236: Prepare ciReceiverTypeData::translate_receiver_data_from for concurrent class unloading
eosterlund
parents: 49449
diff changeset
   262
      if (k->is_loader_alive()) {
d058b410af0a 8210236: Prepare ciReceiverTypeData::translate_receiver_data_from for concurrent class unloading
eosterlund
parents: 49449
diff changeset
   263
        ciKlass* klass = CURRENT_ENV->get_klass(k);
d058b410af0a 8210236: Prepare ciReceiverTypeData::translate_receiver_data_from for concurrent class unloading
eosterlund
parents: 49449
diff changeset
   264
        set_receiver(row, klass);
d058b410af0a 8210236: Prepare ciReceiverTypeData::translate_receiver_data_from for concurrent class unloading
eosterlund
parents: 49449
diff changeset
   265
      } else {
d058b410af0a 8210236: Prepare ciReceiverTypeData::translate_receiver_data_from for concurrent class unloading
eosterlund
parents: 49449
diff changeset
   266
        // With concurrent class unloading, the MDO could have stale metadata; override it
d058b410af0a 8210236: Prepare ciReceiverTypeData::translate_receiver_data_from for concurrent class unloading
eosterlund
parents: 49449
diff changeset
   267
        clear_row(row);
d058b410af0a 8210236: Prepare ciReceiverTypeData::translate_receiver_data_from for concurrent class unloading
eosterlund
parents: 49449
diff changeset
   268
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   273
void ciTypeStackSlotEntries::translate_type_data_from(const TypeStackSlotEntries* entries) {
24476
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   274
  for (int i = 0; i < number_of_entries(); i++) {
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   275
    intptr_t k = entries->type(i);
52785
7003a0220fe4 8214231: Allow concurrent cleaning of TypeStackSlotEntries and ReturnTypeEntry
eosterlund
parents: 51680
diff changeset
   276
    Klass* klass = (Klass*)klass_part(k);
7003a0220fe4 8214231: Allow concurrent cleaning of TypeStackSlotEntries and ReturnTypeEntry
eosterlund
parents: 51680
diff changeset
   277
    if (klass != NULL && !klass->is_loader_alive()) {
7003a0220fe4 8214231: Allow concurrent cleaning of TypeStackSlotEntries and ReturnTypeEntry
eosterlund
parents: 51680
diff changeset
   278
      // With concurrent class unloading, the MDO could have stale metadata; override it
7003a0220fe4 8214231: Allow concurrent cleaning of TypeStackSlotEntries and ReturnTypeEntry
eosterlund
parents: 51680
diff changeset
   279
      TypeStackSlotEntries::set_type(i, TypeStackSlotEntries::with_status((Klass*)NULL, k));
7003a0220fe4 8214231: Allow concurrent cleaning of TypeStackSlotEntries and ReturnTypeEntry
eosterlund
parents: 51680
diff changeset
   280
    } else {
7003a0220fe4 8214231: Allow concurrent cleaning of TypeStackSlotEntries and ReturnTypeEntry
eosterlund
parents: 51680
diff changeset
   281
      TypeStackSlotEntries::set_type(i, translate_klass(k));
7003a0220fe4 8214231: Allow concurrent cleaning of TypeStackSlotEntries and ReturnTypeEntry
eosterlund
parents: 51680
diff changeset
   282
    }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   283
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   284
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   285
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   286
void ciReturnTypeEntry::translate_type_data_from(const ReturnTypeEntry* ret) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   287
  intptr_t k = ret->type();
52785
7003a0220fe4 8214231: Allow concurrent cleaning of TypeStackSlotEntries and ReturnTypeEntry
eosterlund
parents: 51680
diff changeset
   288
  Klass* klass = (Klass*)klass_part(k);
7003a0220fe4 8214231: Allow concurrent cleaning of TypeStackSlotEntries and ReturnTypeEntry
eosterlund
parents: 51680
diff changeset
   289
  if (klass != NULL && !klass->is_loader_alive()) {
7003a0220fe4 8214231: Allow concurrent cleaning of TypeStackSlotEntries and ReturnTypeEntry
eosterlund
parents: 51680
diff changeset
   290
    // With concurrent class unloading, the MDO could have stale metadata; override it
7003a0220fe4 8214231: Allow concurrent cleaning of TypeStackSlotEntries and ReturnTypeEntry
eosterlund
parents: 51680
diff changeset
   291
    set_type(ReturnTypeEntry::with_status((Klass*)NULL, k));
7003a0220fe4 8214231: Allow concurrent cleaning of TypeStackSlotEntries and ReturnTypeEntry
eosterlund
parents: 51680
diff changeset
   292
  } else {
7003a0220fe4 8214231: Allow concurrent cleaning of TypeStackSlotEntries and ReturnTypeEntry
eosterlund
parents: 51680
diff changeset
   293
    set_type(translate_klass(k));
7003a0220fe4 8214231: Allow concurrent cleaning of TypeStackSlotEntries and ReturnTypeEntry
eosterlund
parents: 51680
diff changeset
   294
  }
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   295
}
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   296
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   297
void ciSpeculativeTrapData::translate_from(const ProfileData* data) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   298
  Method* m = data->as_SpeculativeTrapData()->method();
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   299
  ciMethod* ci_m = CURRENT_ENV->get_method(m);
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   300
  set_method(ci_m);
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   301
}
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   302
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
// Get the data at an arbitrary (sort of) data index.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
ciProfileData* ciMethodData::data_at(int data_index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  if (out_of_bounds(data_index)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  DataLayout* data_layout = data_layout_at(data_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  switch (data_layout->tag()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  case DataLayout::no_tag:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  case DataLayout::bit_data_tag:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
    return new ciBitData(data_layout);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  case DataLayout::counter_data_tag:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
    return new ciCounterData(data_layout);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  case DataLayout::jump_data_tag:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
    return new ciJumpData(data_layout);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  case DataLayout::receiver_type_data_tag:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
    return new ciReceiverTypeData(data_layout);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  case DataLayout::virtual_call_data_tag:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
    return new ciVirtualCallData(data_layout);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  case DataLayout::ret_data_tag:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
    return new ciRetData(data_layout);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  case DataLayout::branch_data_tag:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
    return new ciBranchData(data_layout);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  case DataLayout::multi_branch_data_tag:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
    return new ciMultiBranchData(data_layout);
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   331
  case DataLayout::arg_info_data_tag:
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   332
    return new ciArgInfoData(data_layout);
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   333
  case DataLayout::call_type_data_tag:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   334
    return new ciCallTypeData(data_layout);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   335
  case DataLayout::virtual_call_type_data_tag:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   336
    return new ciVirtualCallTypeData(data_layout);
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   337
  case DataLayout::parameters_type_data_tag:
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   338
    return new ciParametersTypeData(data_layout);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
// Iteration over data.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
ciProfileData* ciMethodData::next_data(ciProfileData* current) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  int current_index = dp_to_di(current->dp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  int next_index = current_index + current->size_in_bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  ciProfileData* next = data_at(next_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  return next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   350
ciProfileData* ciMethodData::bci_to_extra_data(int bci, ciMethod* m, bool& two_free_slots) {
26440
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25492
diff changeset
   351
  DataLayout* dp  = extra_data_base();
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25492
diff changeset
   352
  DataLayout* end = args_data_limit();
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   353
  two_free_slots = false;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   354
  for (;dp < end; dp = MethodData::next_extra(dp)) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   355
    switch(dp->tag()) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   356
    case DataLayout::no_tag:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
      _saw_free_extra_data = true;  // observed an empty slot (common case)
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   358
      two_free_slots = (MethodData::next_extra(dp)->tag() == DataLayout::no_tag);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
      return NULL;
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   360
    case DataLayout::arg_info_data_tag:
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   361
      return NULL; // ArgInfoData is at the end of extra data section.
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   362
    case DataLayout::bit_data_tag:
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   363
      if (m == NULL && dp->bci() == bci) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   364
        return new ciBitData(dp);
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   365
      }
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   366
      break;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   367
    case DataLayout::speculative_trap_data_tag: {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   368
      ciSpeculativeTrapData* data = new ciSpeculativeTrapData(dp);
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   369
      // data->method() might be null if the MDO is snapshotted
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   370
      // concurrently with a trap
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   371
      if (m != NULL && data->method() == m && dp->bci() == bci) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   372
        return data;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   373
      }
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   374
      break;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   375
    }
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   376
    default:
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 26440
diff changeset
   377
      fatal("bad tag = %d", dp->tag());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
    }
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   379
  }
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   380
  return NULL;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   381
}
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   382
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   383
// Translate a bci to its corresponding data, or NULL.
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   384
ciProfileData* ciMethodData::bci_to_data(int bci, ciMethod* m) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   385
  // If m is not NULL we look for a SpeculativeTrapData entry
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   386
  if (m == NULL) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   387
    ciProfileData* data = data_before(bci);
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   388
    for ( ; is_valid(data); data = next_data(data)) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   389
      if (data->bci() == bci) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   390
        set_hint_di(dp_to_di(data->dp()));
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   391
        return data;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   392
      } else if (data->bci() > bci) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   393
        break;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   394
      }
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   395
    }
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   396
  }
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   397
  bool two_free_slots = false;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   398
  ciProfileData* result = bci_to_extra_data(bci, m, two_free_slots);
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   399
  if (result != NULL) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   400
    return result;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   401
  }
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   402
  if (m != NULL && !two_free_slots) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   403
    // We were looking for a SpeculativeTrapData entry we didn't
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   404
    // find. Room is not available for more SpeculativeTrapData
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   405
    // entries, look in the non SpeculativeTrapData entries.
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   406
    return bci_to_data(bci, NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
// Conservatively decode the trap_state of a ciProfileData.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
int ciMethodData::has_trap_at(ciProfileData* data, int reason) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  typedef Deoptimization::DeoptReason DR_t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  int per_bc_reason
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
    = Deoptimization::reason_recorded_per_bytecode_if_any((DR_t) reason);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  if (trap_count(reason) == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
    // Impossible for this trap to have occurred, regardless of trap_state.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
    // Note:  This happens if the MDO is empty.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
    return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  } else if (per_bc_reason == Deoptimization::Reason_none) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
    // We cannot conclude anything; a trap happened somewhere, maybe here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
    return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  } else if (data == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
    // No profile here, not even an extra_data record allocated on the fly.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
    // If there are empty extra_data records, and there had been a trap,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
    // there would have been a non-null data pointer.  If there are no
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
    // free extra_data records, we must return a conservative -1.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
    if (_saw_free_extra_data)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
      return 0;                 // Q.E.D.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
    else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
      return -1;                // bail with a conservative answer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
    return Deoptimization::trap_state_has_reason(data->trap_state(), per_bc_reason);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
int ciMethodData::trap_recompiled_at(ciProfileData* data) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  if (data == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
    return (_saw_free_extra_data? 0: -1);  // (see previous method)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
    return Deoptimization::trap_state_is_recompiled(data->trap_state())? 1: 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
void ciMethodData::clear_escape_info() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  VM_ENTRY_MARK;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   447
  MethodData* mdo = get_MethodData();
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   448
  if (mdo != NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
    mdo->clear_escape_info();
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   450
    ArgInfoData *aid = arg_info();
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   451
    int arg_count = (aid == NULL) ? 0 : aid->number_of_args();
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   452
    for (int i = 0; i < arg_count; i++) {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   453
      set_arg_modified(i, 0);
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   454
    }
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   455
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
  _eflags = _arg_local = _arg_stack = _arg_returned = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   459
// copy our escape info to the MethodData* if it exists
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
void ciMethodData::update_escape_info() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  VM_ENTRY_MARK;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   462
  MethodData* mdo = get_MethodData();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
  if ( mdo != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
    mdo->set_eflags(_eflags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
    mdo->set_arg_local(_arg_local);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
    mdo->set_arg_stack(_arg_stack);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
    mdo->set_arg_returned(_arg_returned);
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   468
    int arg_count = mdo->method()->size_of_parameters();
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   469
    for (int i = 0; i < arg_count; i++) {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   470
      mdo->set_arg_modified(i, arg_modified(i));
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   471
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   475
void ciMethodData::set_compilation_stats(short loops, short blocks) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   476
  VM_ENTRY_MARK;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   477
  MethodData* mdo = get_MethodData();
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   478
  if (mdo != NULL) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   479
    mdo->set_num_loops(loops);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   480
    mdo->set_num_blocks(blocks);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   481
  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   482
}
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   483
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   484
void ciMethodData::set_would_profile(bool p) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   485
  VM_ENTRY_MARK;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   486
  MethodData* mdo = get_MethodData();
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   487
  if (mdo != NULL) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   488
    mdo->set_would_profile(p);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   489
  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   490
}
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   491
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   492
void ciMethodData::set_argument_type(int bci, int i, ciKlass* k) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   493
  VM_ENTRY_MARK;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   494
  MethodData* mdo = get_MethodData();
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   495
  if (mdo != NULL) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   496
    ProfileData* data = mdo->bci_to_data(bci);
44315
1e2f842b0c96 8175340: Possible invalid memory accesses due to ciMethodData::bci_to_data() returning NULL
zmajo
parents: 36601
diff changeset
   497
    if (data != NULL) {
1e2f842b0c96 8175340: Possible invalid memory accesses due to ciMethodData::bci_to_data() returning NULL
zmajo
parents: 36601
diff changeset
   498
      if (data->is_CallTypeData()) {
1e2f842b0c96 8175340: Possible invalid memory accesses due to ciMethodData::bci_to_data() returning NULL
zmajo
parents: 36601
diff changeset
   499
        data->as_CallTypeData()->set_argument_type(i, k->get_Klass());
1e2f842b0c96 8175340: Possible invalid memory accesses due to ciMethodData::bci_to_data() returning NULL
zmajo
parents: 36601
diff changeset
   500
      } else {
1e2f842b0c96 8175340: Possible invalid memory accesses due to ciMethodData::bci_to_data() returning NULL
zmajo
parents: 36601
diff changeset
   501
        assert(data->is_VirtualCallTypeData(), "no arguments!");
1e2f842b0c96 8175340: Possible invalid memory accesses due to ciMethodData::bci_to_data() returning NULL
zmajo
parents: 36601
diff changeset
   502
        data->as_VirtualCallTypeData()->set_argument_type(i, k->get_Klass());
1e2f842b0c96 8175340: Possible invalid memory accesses due to ciMethodData::bci_to_data() returning NULL
zmajo
parents: 36601
diff changeset
   503
      }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   504
    }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   505
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   506
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   507
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   508
void ciMethodData::set_parameter_type(int i, ciKlass* k) {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   509
  VM_ENTRY_MARK;
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   510
  MethodData* mdo = get_MethodData();
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   511
  if (mdo != NULL) {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   512
    mdo->parameters_type_data()->set_type(i, k->get_Klass());
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   513
  }
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   514
}
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   515
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   516
void ciMethodData::set_return_type(int bci, ciKlass* k) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   517
  VM_ENTRY_MARK;
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   518
  MethodData* mdo = get_MethodData();
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   519
  if (mdo != NULL) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   520
    ProfileData* data = mdo->bci_to_data(bci);
44315
1e2f842b0c96 8175340: Possible invalid memory accesses due to ciMethodData::bci_to_data() returning NULL
zmajo
parents: 36601
diff changeset
   521
    if (data != NULL) {
1e2f842b0c96 8175340: Possible invalid memory accesses due to ciMethodData::bci_to_data() returning NULL
zmajo
parents: 36601
diff changeset
   522
      if (data->is_CallTypeData()) {
1e2f842b0c96 8175340: Possible invalid memory accesses due to ciMethodData::bci_to_data() returning NULL
zmajo
parents: 36601
diff changeset
   523
        data->as_CallTypeData()->set_return_type(k->get_Klass());
1e2f842b0c96 8175340: Possible invalid memory accesses due to ciMethodData::bci_to_data() returning NULL
zmajo
parents: 36601
diff changeset
   524
      } else {
1e2f842b0c96 8175340: Possible invalid memory accesses due to ciMethodData::bci_to_data() returning NULL
zmajo
parents: 36601
diff changeset
   525
        assert(data->is_VirtualCallTypeData(), "no arguments!");
1e2f842b0c96 8175340: Possible invalid memory accesses due to ciMethodData::bci_to_data() returning NULL
zmajo
parents: 36601
diff changeset
   526
        data->as_VirtualCallTypeData()->set_return_type(k->get_Klass());
1e2f842b0c96 8175340: Possible invalid memory accesses due to ciMethodData::bci_to_data() returning NULL
zmajo
parents: 36601
diff changeset
   527
      }
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   528
    }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   529
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   530
}
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   531
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
bool ciMethodData::has_escape_info() {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   533
  return eflag_set(MethodData::estimated);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   536
void ciMethodData::set_eflag(MethodData::EscapeFlag f) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
  set_bits(_eflags, f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   540
bool ciMethodData::eflag_set(MethodData::EscapeFlag f) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
  return mask_bits(_eflags, f) != 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
void ciMethodData::set_arg_local(int i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
  set_nth_bit(_arg_local, i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
void ciMethodData::set_arg_stack(int i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
  set_nth_bit(_arg_stack, i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
void ciMethodData::set_arg_returned(int i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
  set_nth_bit(_arg_returned, i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   556
void ciMethodData::set_arg_modified(int arg, uint val) {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   557
  ArgInfoData *aid = arg_info();
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   558
  if (aid == NULL)
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   559
    return;
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   560
  assert(arg >= 0 && arg < aid->number_of_args(), "valid argument number");
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   561
  aid->set_arg_modified(arg, val);
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   562
}
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   563
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
bool ciMethodData::is_arg_local(int i) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
  return is_set_nth_bit(_arg_local, i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
bool ciMethodData::is_arg_stack(int i) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
  return is_set_nth_bit(_arg_stack, i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
bool ciMethodData::is_arg_returned(int i) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  return is_set_nth_bit(_arg_returned, i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   576
uint ciMethodData::arg_modified(int arg) const {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   577
  ArgInfoData *aid = arg_info();
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   578
  if (aid == NULL)
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   579
    return 0;
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   580
  assert(arg >= 0 && arg < aid->number_of_args(), "valid argument number");
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   581
  return aid->arg_modified(arg);
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   582
}
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   583
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
ByteSize ciMethodData::offset_of_slot(ciProfileData* data, ByteSize slot_offset_in_data) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   585
  // Get offset within MethodData* of the data array
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   586
  ByteSize data_offset = MethodData::data_offset();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
  // Get cell offset of the ProfileData within data array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  int cell_offset = dp_to_di(data->dp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
  // Add in counter_offset, the # of bytes into the ProfileData of counter or flag
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  int offset = in_bytes(data_offset) + cell_offset + in_bytes(slot_offset_in_data);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  return in_ByteSize(offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   597
ciArgInfoData *ciMethodData::arg_info() const {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   598
  // Should be last, have to skip all traps.
26440
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25492
diff changeset
   599
  DataLayout* dp  = extra_data_base();
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25492
diff changeset
   600
  DataLayout* end = args_data_limit();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   601
  for (; dp < end; dp = MethodData::next_extra(dp)) {
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   602
    if (dp->tag() == DataLayout::arg_info_data_tag)
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   603
      return new ciArgInfoData(dp);
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   604
  }
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   605
  return NULL;
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   606
}
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   607
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   608
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
// Implementation of the print method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
void ciMethodData::print_impl(outputStream* st) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   611
  ciMetadata::print_impl(st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
24476
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   614
void ciMethodData::dump_replay_data_type_helper(outputStream* out, int round, int& count, ProfileData* pdata, ByteSize offset, ciKlass* k) {
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   615
  if (k != NULL) {
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   616
    if (round == 0) {
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   617
      count++;
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   618
    } else {
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   619
      out->print(" %d %s", (int)(dp_to_di(pdata->dp() + in_bytes(offset)) / sizeof(intptr_t)), k->name()->as_quoted_ascii());
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   620
    }
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   621
  }
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   622
}
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   623
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   624
template<class T> void ciMethodData::dump_replay_data_receiver_type_helper(outputStream* out, int round, int& count, T* vdata) {
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   625
  for (uint i = 0; i < vdata->row_limit(); i++) {
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   626
    dump_replay_data_type_helper(out, round, count, vdata, vdata->receiver_offset(i), vdata->receiver(i));
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   627
  }
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   628
}
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   629
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   630
template<class T> void ciMethodData::dump_replay_data_call_type_helper(outputStream* out, int round, int& count, T* call_type_data) {
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   631
  if (call_type_data->has_arguments()) {
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   632
    for (int i = 0; i < call_type_data->number_of_arguments(); i++) {
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   633
      dump_replay_data_type_helper(out, round, count, call_type_data, call_type_data->argument_type_offset(i), call_type_data->valid_argument_type(i));
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   634
    }
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   635
  }
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   636
  if (call_type_data->has_return()) {
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   637
    dump_replay_data_type_helper(out, round, count, call_type_data, call_type_data->return_type_offset(), call_type_data->valid_return_type());
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   638
  }
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   639
}
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   640
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   641
void ciMethodData::dump_replay_data_extra_data_helper(outputStream* out, int round, int& count) {
26440
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25492
diff changeset
   642
  DataLayout* dp  = extra_data_base();
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25492
diff changeset
   643
  DataLayout* end = args_data_limit();
24476
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   644
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   645
  for (;dp < end; dp = MethodData::next_extra(dp)) {
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   646
    switch(dp->tag()) {
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   647
    case DataLayout::no_tag:
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   648
    case DataLayout::arg_info_data_tag:
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   649
      return;
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   650
    case DataLayout::bit_data_tag:
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   651
      break;
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   652
    case DataLayout::speculative_trap_data_tag: {
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   653
      ciSpeculativeTrapData* data = new ciSpeculativeTrapData(dp);
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   654
      ciMethod* m = data->method();
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   655
      if (m != NULL) {
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   656
        if (round == 0) {
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   657
          count++;
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   658
        } else {
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   659
          out->print(" %d ", (int)(dp_to_di(((address)dp) + in_bytes(ciSpeculativeTrapData::method_offset())) / sizeof(intptr_t)));
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   660
          m->dump_name_as_ascii(out);
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   661
        }
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   662
      }
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   663
      break;
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   664
    }
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   665
    default:
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 26440
diff changeset
   666
      fatal("bad tag = %d", dp->tag());
24476
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   667
    }
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   668
  }
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   669
}
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   670
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   671
void ciMethodData::dump_replay_data(outputStream* out) {
15471
41f75023e6a6 8006410: allocating without ResourceMark when CompileCommand was specified
vlivanov
parents: 14477
diff changeset
   672
  ResourceMark rm;
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   673
  MethodData* mdo = get_MethodData();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   674
  Method* method = mdo->method();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   675
  Klass* holder = method->method_holder();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   676
  out->print("ciMethodData %s %s %s %d %d",
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   677
             holder->name()->as_quoted_ascii(),
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   678
             method->name()->as_quoted_ascii(),
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   679
             method->signature()->as_quoted_ascii(),
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   680
             _state,
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   681
             current_mileage());
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   682
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   683
  // dump the contents of the MDO header as raw data
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   684
  unsigned char* orig = (unsigned char*)&_orig;
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   685
  int length = sizeof(_orig);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   686
  out->print(" orig %d", length);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   687
  for (int i = 0; i < length; i++) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   688
    out->print(" %d", orig[i]);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   689
  }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   690
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   691
  // dump the MDO data as raw data
24476
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   692
  int elements = (data_size() + extra_data_size()) / sizeof(intptr_t);
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   693
  out->print(" data %d", elements);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   694
  for (int i = 0; i < elements; i++) {
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 44315
diff changeset
   695
    // We could use INTPTR_FORMAT here but that's zero justified
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   696
    // which makes comparing it with the SA version of this output
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 44315
diff changeset
   697
    // harder. data()'s element type is intptr_t.
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 44315
diff changeset
   698
    out->print(" " INTPTRNZ_FORMAT, data()[i]);
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   699
  }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   700
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   701
  // The MDO contained oop references as ciObjects, so scan for those
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   702
  // and emit pairs of offset and klass name so that they can be
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   703
  // reconstructed at runtime.  The first round counts the number of
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   704
  // oop references and the second actually emits them.
24476
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   705
  ciParametersTypeData* parameters = parameters_type_data();
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   706
  for (int count = 0, round = 0; round < 2; round++) {
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   707
    if (round == 1) out->print(" oops %d", count);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   708
    ProfileData* pdata = first_data();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   709
    for ( ; is_valid(pdata); pdata = next_data(pdata)) {
24476
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   710
      if (pdata->is_VirtualCallData()) {
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   711
        ciVirtualCallData* vdata = (ciVirtualCallData*)pdata;
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   712
        dump_replay_data_receiver_type_helper<ciVirtualCallData>(out, round, count, vdata);
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   713
        if (pdata->is_VirtualCallTypeData()) {
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   714
          ciVirtualCallTypeData* call_type_data = (ciVirtualCallTypeData*)pdata;
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   715
          dump_replay_data_call_type_helper<ciVirtualCallTypeData>(out, round, count, call_type_data);
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   716
        }
24476
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   717
      } else if (pdata->is_ReceiverTypeData()) {
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   718
        ciReceiverTypeData* vdata = (ciReceiverTypeData*)pdata;
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   719
        dump_replay_data_receiver_type_helper<ciReceiverTypeData>(out, round, count, vdata);
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   720
      } else if (pdata->is_CallTypeData()) {
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   721
          ciCallTypeData* call_type_data = (ciCallTypeData*)pdata;
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   722
          dump_replay_data_call_type_helper<ciCallTypeData>(out, round, count, call_type_data);
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   723
      }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   724
    }
24476
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   725
    if (parameters != NULL) {
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   726
      for (int i = 0; i < parameters->number_of_parameters(); i++) {
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   727
        dump_replay_data_type_helper(out, round, count, parameters, ParametersTypeData::type_offset(i), parameters->valid_parameter_type(i));
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   728
      }
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   729
    }
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   730
  }
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   731
  for (int count = 0, round = 0; round < 2; round++) {
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   732
    if (round == 1) out->print(" methods %d", count);
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   733
    dump_replay_data_extra_data_helper(out, round, count);
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   734
  }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   735
  out->cr();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   736
}
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   737
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
void ciMethodData::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
  print_data_on(tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
void ciMethodData::print_data_on(outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
  ResourceMark rm;
24476
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   745
  ciParametersTypeData* parameters = parameters_type_data();
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   746
  if (parameters != NULL) {
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   747
    parameters->print_data_on(st);
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   748
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
  ciProfileData* data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
  for (data = first_data(); is_valid(data); data = next_data(data)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
    st->print("%d", dp_to_di(data->dp()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
    st->fill_to(6);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
    data->print_data_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
  }
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   755
  st->print_cr("--- Extra data:");
26440
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25492
diff changeset
   756
  DataLayout* dp  = extra_data_base();
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25492
diff changeset
   757
  DataLayout* end = args_data_limit();
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   758
  for (;; dp = MethodData::next_extra(dp)) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   759
    assert(dp < end, "moved past end of extra data");
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   760
    switch (dp->tag()) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   761
    case DataLayout::no_tag:
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   762
      continue;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   763
    case DataLayout::bit_data_tag:
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   764
      data = new BitData(dp);
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   765
      break;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   766
    case DataLayout::arg_info_data_tag:
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   767
      data = new ciArgInfoData(dp);
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   768
      dp = end; // ArgInfoData is at the end of extra data section.
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   769
      break;
24476
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   770
    case DataLayout::speculative_trap_data_tag:
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   771
      data = new ciSpeculativeTrapData(dp);
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   772
      break;
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   773
    default:
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 26440
diff changeset
   774
      fatal("unexpected tag %d", dp->tag());
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   775
    }
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   776
    st->print("%d", dp_to_di(data->dp()));
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   777
    st->fill_to(6);
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   778
    data->print_data_on(st);
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   779
    if (dp >= end) return;
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   780
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   783
void ciTypeEntries::print_ciklass(outputStream* st, intptr_t k) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   784
  if (TypeEntries::is_type_none(k)) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   785
    st->print("none");
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   786
  } else if (TypeEntries::is_type_unknown(k)) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   787
    st->print("unknown");
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   788
  } else {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   789
    valid_ciklass(k)->print_name_on(st);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   790
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   791
  if (TypeEntries::was_null_seen(k)) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   792
    st->print(" (null seen)");
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   793
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   794
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   795
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   796
void ciTypeStackSlotEntries::print_data_on(outputStream* st) const {
24476
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   797
  for (int i = 0; i < number_of_entries(); i++) {
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   798
    _pd->tab(st);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   799
    st->print("%d: stack (%u) ", i, stack_slot(i));
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   800
    print_ciklass(st, type(i));
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   801
    st->cr();
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   802
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   803
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   804
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   805
void ciReturnTypeEntry::print_data_on(outputStream* st) const {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   806
  _pd->tab(st);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   807
  st->print("ret ");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   808
  print_ciklass(st, type());
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   809
  st->cr();
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   810
}
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   811
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   812
void ciCallTypeData::print_data_on(outputStream* st, const char* extra) const {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   813
  print_shared(st, "ciCallTypeData", extra);
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   814
  if (has_arguments()) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   815
    tab(st, true);
24476
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   816
    st->print_cr("argument types");
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   817
    args()->print_data_on(st);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   818
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   819
  if (has_return()) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   820
    tab(st, true);
24476
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 24424
diff changeset
   821
    st->print_cr("return type");
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   822
    ret()->print_data_on(st);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   823
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   824
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   825
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   826
void ciReceiverTypeData::print_receiver_data_on(outputStream* st) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
  uint row;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
  int entries = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
  for (row = 0; row < row_limit(); row++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
    if (receiver(row) != NULL)  entries++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
  st->print_cr("count(%u) entries(%u)", count(), entries);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
  for (row = 0; row < row_limit(); row++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
    if (receiver(row) != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
      tab(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
      receiver(row)->print_name_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
      st->print_cr("(%u)", receiver_count(row));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   842
void ciReceiverTypeData::print_data_on(outputStream* st, const char* extra) const {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   843
  print_shared(st, "ciReceiverTypeData", extra);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
  print_receiver_data_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   847
void ciVirtualCallData::print_data_on(outputStream* st, const char* extra) const {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   848
  print_shared(st, "ciVirtualCallData", extra);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
  rtd_super()->print_receiver_data_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
}
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   851
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   852
void ciVirtualCallTypeData::print_data_on(outputStream* st, const char* extra) const {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   853
  print_shared(st, "ciVirtualCallTypeData", extra);
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   854
  rtd_super()->print_receiver_data_on(st);
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   855
  if (has_arguments()) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   856
    tab(st, true);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   857
    st->print("argument types");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   858
    args()->print_data_on(st);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   859
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   860
  if (has_return()) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   861
    tab(st, true);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   862
    st->print("return type");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   863
    ret()->print_data_on(st);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   864
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   865
}
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   866
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   867
void ciParametersTypeData::print_data_on(outputStream* st, const char* extra) const {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   868
  st->print_cr("ciParametersTypeData");
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   869
  parameters()->print_data_on(st);
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   870
}
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   871
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   872
void ciSpeculativeTrapData::print_data_on(outputStream* st, const char* extra) const {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   873
  st->print_cr("ciSpeculativeTrapData");
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   874
  tab(st);
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   875
  method()->print_short_name(st);
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   876
  st->cr();
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   877
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
#endif