hotspot/src/share/vm/ci/ciMethodData.hpp
author roland
Fri, 09 Jun 2017 10:51:52 +0200
changeset 46542 73dd19b96b5d
parent 29081 c61eb4914428
permissions -rw-r--r--
8181211: C2: Use profiling data to optimize on/off heap unsafe accesses Reviewed-by: kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 26440
diff changeset
     2
 * Copyright (c) 2001, 2015, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 670
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 670
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 670
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    25
#ifndef SHARE_VM_CI_CIMETHODDATA_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    26
#define SHARE_VM_CI_CIMETHODDATA_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    28
#include "ci/ciClassList.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    29
#include "ci/ciKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    30
#include "ci/ciObject.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    31
#include "ci/ciUtilities.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9638
diff changeset
    32
#include "oops/methodData.hpp"
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 26440
diff changeset
    33
#include "oops/oop.hpp"
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
    34
#include "runtime/deoptimization.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    35
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
class ciBitData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
class ciCounterData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
class ciJumpData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
class ciReceiverTypeData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
class ciRetData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
class ciBranchData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
class ciArrayData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
class ciMultiBranchData;
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
    44
class ciArgInfoData;
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
    45
class ciCallTypeData;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
    46
class ciVirtualCallTypeData;
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
    47
class ciParametersTypeData;
24476
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 23491
diff changeset
    48
class ciSpeculativeTrapData;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
typedef ProfileData ciProfileData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
class ciBitData : public BitData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  ciBitData(DataLayout* layout) : BitData(layout) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
class ciCounterData : public CounterData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  ciCounterData(DataLayout* layout) : CounterData(layout) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
class ciJumpData : public JumpData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  ciJumpData(DataLayout* layout) : JumpData(layout) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
    67
class ciTypeEntries {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
    68
protected:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
    69
  static intptr_t translate_klass(intptr_t k) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
    70
    Klass* v = TypeEntries::valid_klass(k);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
    71
    if (v != NULL) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
    72
      ciKlass* klass = CURRENT_ENV->get_klass(v);
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
    73
      CURRENT_ENV->ensure_metadata_alive(klass);
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
    74
      return with_status(klass, k);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
    75
    }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
    76
    return with_status(NULL, k);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
    77
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
    78
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
    79
public:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
    80
  static ciKlass* valid_ciklass(intptr_t k) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
    81
    if (!TypeEntries::is_type_none(k) &&
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
    82
        !TypeEntries::is_type_unknown(k)) {
21581
73584c201e2d 8027572: assert(r != 0) failed: invalid
roland
parents: 21099
diff changeset
    83
      ciKlass* res = (ciKlass*)TypeEntries::klass_part(k);
73584c201e2d 8027572: assert(r != 0) failed: invalid
roland
parents: 21099
diff changeset
    84
      assert(res != NULL, "invalid");
73584c201e2d 8027572: assert(r != 0) failed: invalid
roland
parents: 21099
diff changeset
    85
      return res;
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
    86
    } else {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
    87
      return NULL;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
    88
    }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
    89
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
    90
46542
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 29081
diff changeset
    91
  static ProfilePtrKind ptr_kind(intptr_t v) {
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 29081
diff changeset
    92
    bool maybe_null = TypeEntries::was_null_seen(v);
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 29081
diff changeset
    93
    if (!maybe_null) {
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 29081
diff changeset
    94
      return ProfileNeverNull;
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 29081
diff changeset
    95
    } else if (TypeEntries::is_type_none(v)) {
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 29081
diff changeset
    96
      return ProfileAlwaysNull;
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 29081
diff changeset
    97
    } else {
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 29081
diff changeset
    98
      return ProfileMaybeNull;
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 29081
diff changeset
    99
    }
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 29081
diff changeset
   100
  }
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 29081
diff changeset
   101
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   102
  static intptr_t with_status(ciKlass* k, intptr_t in) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   103
    return TypeEntries::with_status((intptr_t)k, in);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   104
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   105
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   106
#ifndef PRODUCT
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   107
  static void print_ciklass(outputStream* st, intptr_t k);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   108
#endif
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   109
};
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   110
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   111
class ciTypeStackSlotEntries : public TypeStackSlotEntries, ciTypeEntries {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   112
public:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   113
  void translate_type_data_from(const TypeStackSlotEntries* args);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   114
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   115
  ciKlass* valid_type(int i) const {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   116
    return valid_ciklass(type(i));
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   117
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   118
46542
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 29081
diff changeset
   119
  ProfilePtrKind ptr_kind(int i) const {
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 29081
diff changeset
   120
    return ciTypeEntries::ptr_kind(type(i));
21099
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 21095
diff changeset
   121
  }
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 21095
diff changeset
   122
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   123
#ifndef PRODUCT
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   124
  void print_data_on(outputStream* st) const;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   125
#endif
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   126
};
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   127
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   128
class ciReturnTypeEntry : public ReturnTypeEntry, ciTypeEntries {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   129
public:
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   130
  void translate_type_data_from(const ReturnTypeEntry* ret);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   131
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   132
  ciKlass* valid_type() const {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   133
    return valid_ciklass(type());
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   134
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   135
46542
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 29081
diff changeset
   136
  ProfilePtrKind ptr_kind() const {
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 29081
diff changeset
   137
    return ciTypeEntries::ptr_kind(type());
21099
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 21095
diff changeset
   138
  }
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 21095
diff changeset
   139
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   140
#ifndef PRODUCT
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   141
  void print_data_on(outputStream* st) const;
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   142
#endif
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   143
};
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   144
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   145
class ciCallTypeData : public CallTypeData {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   146
public:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   147
  ciCallTypeData(DataLayout* layout) : CallTypeData(layout) {}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   148
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   149
  ciTypeStackSlotEntries* args() const { return (ciTypeStackSlotEntries*)CallTypeData::args(); }
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   150
  ciReturnTypeEntry* ret() const { return (ciReturnTypeEntry*)CallTypeData::ret(); }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   151
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   152
  void translate_from(const ProfileData* data) {
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   153
    if (has_arguments()) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   154
      args()->translate_type_data_from(data->as_CallTypeData()->args());
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   155
    }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   156
    if (has_return()) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   157
      ret()->translate_type_data_from(data->as_CallTypeData()->ret());
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   158
    }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   159
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   160
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   161
  intptr_t argument_type(int i) const {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   162
    assert(has_arguments(), "no arg type profiling data");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   163
    return args()->type(i);
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   164
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   165
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   166
  ciKlass* valid_argument_type(int i) const {
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   167
    assert(has_arguments(), "no arg type profiling data");
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   168
    return args()->valid_type(i);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   169
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   170
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   171
  intptr_t return_type() const {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   172
    assert(has_return(), "no ret type profiling data");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   173
    return ret()->type();
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   174
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   175
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   176
  ciKlass* valid_return_type() const {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   177
    assert(has_return(), "no ret type profiling data");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   178
    return ret()->valid_type();
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   179
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   180
46542
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 29081
diff changeset
   181
  ProfilePtrKind argument_ptr_kind(int i) const {
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 29081
diff changeset
   182
    return args()->ptr_kind(i);
21099
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 21095
diff changeset
   183
  }
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 21095
diff changeset
   184
46542
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 29081
diff changeset
   185
  ProfilePtrKind return_ptr_kind() const {
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 29081
diff changeset
   186
    return ret()->ptr_kind();
21099
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 21095
diff changeset
   187
  }
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 21095
diff changeset
   188
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   189
#ifndef PRODUCT
24476
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 23491
diff changeset
   190
  void print_data_on(outputStream* st, const char* extra = NULL) const;
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   191
#endif
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   192
};
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   193
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
class ciReceiverTypeData : public ReceiverTypeData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  ciReceiverTypeData(DataLayout* layout) : ReceiverTypeData(layout) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  void set_receiver(uint row, ciKlass* recv) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
    assert((uint)row < row_limit(), "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
    set_intptr_at(receiver0_offset + row * receiver_type_row_cell_count,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
                  (intptr_t) recv);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   204
  ciKlass* receiver(uint row) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    assert((uint)row < row_limit(), "oob");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9638
diff changeset
   206
    ciKlass* recv = (ciKlass*)intptr_at(receiver0_offset + row * receiver_type_row_cell_count);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
    assert(recv == NULL || recv->is_klass(), "wrong type");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9638
diff changeset
   208
    return recv;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  // Copy & translate from oop based ReceiverTypeData
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   212
  virtual void translate_from(const ProfileData* data) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
    translate_receiver_data_from(data);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   215
  void translate_receiver_data_from(const ProfileData* data);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
#ifndef PRODUCT
24476
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 23491
diff changeset
   217
  void print_data_on(outputStream* st, const char* extra = NULL) const;
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   218
  void print_receiver_data_on(outputStream* st) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
class ciVirtualCallData : public VirtualCallData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  // Fake multiple inheritance...  It's a ciReceiverTypeData also.
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   224
  ciReceiverTypeData* rtd_super() const { return (ciReceiverTypeData*) this; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  ciVirtualCallData(DataLayout* layout) : VirtualCallData(layout) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  void set_receiver(uint row, ciKlass* recv) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    rtd_super()->set_receiver(row, recv);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  ciKlass* receiver(uint row) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
    return rtd_super()->receiver(row);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  // Copy & translate from oop based VirtualCallData
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   238
  virtual void translate_from(const ProfileData* data) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
    rtd_super()->translate_receiver_data_from(data);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
#ifndef PRODUCT
24476
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 23491
diff changeset
   242
  void print_data_on(outputStream* st, const char* extra = NULL) const;
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   243
#endif
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   244
};
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   245
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   246
class ciVirtualCallTypeData : public VirtualCallTypeData {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   247
private:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   248
  // Fake multiple inheritance...  It's a ciReceiverTypeData also.
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   249
  ciReceiverTypeData* rtd_super() const { return (ciReceiverTypeData*) this; }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   250
public:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   251
  ciVirtualCallTypeData(DataLayout* layout) : VirtualCallTypeData(layout) {}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   252
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   253
  void set_receiver(uint row, ciKlass* recv) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   254
    rtd_super()->set_receiver(row, recv);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   255
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   256
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   257
  ciKlass* receiver(uint row) const {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   258
    return rtd_super()->receiver(row);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   259
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   260
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   261
  ciTypeStackSlotEntries* args() const { return (ciTypeStackSlotEntries*)VirtualCallTypeData::args(); }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   262
  ciReturnTypeEntry* ret() const { return (ciReturnTypeEntry*)VirtualCallTypeData::ret(); }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   263
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   264
  // Copy & translate from oop based VirtualCallData
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   265
  virtual void translate_from(const ProfileData* data) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   266
    rtd_super()->translate_receiver_data_from(data);
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   267
    if (has_arguments()) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   268
      args()->translate_type_data_from(data->as_VirtualCallTypeData()->args());
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   269
    }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   270
    if (has_return()) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   271
      ret()->translate_type_data_from(data->as_VirtualCallTypeData()->ret());
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   272
    }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   273
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   274
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   275
  intptr_t argument_type(int i) const {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   276
    assert(has_arguments(), "no arg type profiling data");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   277
    return args()->type(i);
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   278
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   279
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   280
  ciKlass* valid_argument_type(int i) const {
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   281
    assert(has_arguments(), "no arg type profiling data");
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   282
    return args()->valid_type(i);
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
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   285
  intptr_t return_type() const {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   286
    assert(has_return(), "no ret type profiling data");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   287
    return ret()->type();
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   288
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   289
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   290
  ciKlass* valid_return_type() const {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   291
    assert(has_return(), "no ret type profiling data");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   292
    return ret()->valid_type();
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   293
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   294
46542
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 29081
diff changeset
   295
  ProfilePtrKind argument_ptr_kind(int i) const {
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 29081
diff changeset
   296
    return args()->ptr_kind(i);
21099
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 21095
diff changeset
   297
  }
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 21095
diff changeset
   298
46542
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 29081
diff changeset
   299
  ProfilePtrKind return_ptr_kind() const {
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 29081
diff changeset
   300
    return ret()->ptr_kind();
21099
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 21095
diff changeset
   301
  }
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 21095
diff changeset
   302
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   303
#ifndef PRODUCT
24476
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 23491
diff changeset
   304
  void print_data_on(outputStream* st, const char* extra = NULL) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
class ciRetData : public RetData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  ciRetData(DataLayout* layout) : RetData(layout) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
class ciBranchData : public BranchData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  ciBranchData(DataLayout* layout) : BranchData(layout) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
class ciArrayData : public ArrayData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  ciArrayData(DataLayout* layout) : ArrayData(layout) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
class ciMultiBranchData : public MultiBranchData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  ciMultiBranchData(DataLayout* layout) : MultiBranchData(layout) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   329
class ciArgInfoData : public ArgInfoData {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   330
public:
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   331
  ciArgInfoData(DataLayout* layout) : ArgInfoData(layout) {};
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   332
};
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   333
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   334
class ciParametersTypeData : public ParametersTypeData {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   335
public:
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   336
  ciParametersTypeData(DataLayout* layout) : ParametersTypeData(layout) {}
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   337
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   338
  virtual void translate_from(const ProfileData* data) {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   339
    parameters()->translate_type_data_from(data->as_ParametersTypeData()->parameters());
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   340
  }
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   341
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   342
  ciTypeStackSlotEntries* parameters() const { return (ciTypeStackSlotEntries*)ParametersTypeData::parameters(); }
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   343
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   344
  ciKlass* valid_parameter_type(int i) const {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   345
    return parameters()->valid_type(i);
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   346
  }
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   347
46542
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 29081
diff changeset
   348
  ProfilePtrKind parameter_ptr_kind(int i) const {
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 29081
diff changeset
   349
    return parameters()->ptr_kind(i);
21099
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 21095
diff changeset
   350
  }
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 21095
diff changeset
   351
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   352
#ifndef PRODUCT
24476
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 23491
diff changeset
   353
  void print_data_on(outputStream* st, const char* extra = NULL) const;
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   354
#endif
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   355
};
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   356
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   357
class ciSpeculativeTrapData : public SpeculativeTrapData {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   358
public:
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   359
  ciSpeculativeTrapData(DataLayout* layout) : SpeculativeTrapData(layout) {}
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   360
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   361
  virtual void translate_from(const ProfileData* data);
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   362
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   363
  ciMethod* method() const {
24476
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 23491
diff changeset
   364
    return (ciMethod*)intptr_at(speculative_trap_method);
22916
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
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   367
  void set_method(ciMethod* m) {
24476
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 23491
diff changeset
   368
    set_intptr_at(speculative_trap_method, (intptr_t)m);
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   369
  }
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   370
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   371
#ifndef PRODUCT
24476
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 23491
diff changeset
   372
  void print_data_on(outputStream* st, const char* extra = NULL) const;
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   373
#endif
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   374
};
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   375
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
// ciMethodData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
//
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9638
diff changeset
   378
// This class represents a MethodData* in the HotSpot virtual
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
// machine.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9638
diff changeset
   381
class ciMethodData : public ciMetadata {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  CI_PACKAGE_ACCESS
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   383
  friend class ciReplay;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  // Size in bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  int _data_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  int _extra_data_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  // Data entries
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  intptr_t* _data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  // Cached hint for data_before()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  int _hint_di;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  // Is data attached?  And is it mature?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  enum { empty_state, immature_state, mature_state };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  u_char _state;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  // Set this true if empty extra_data slots are ever witnessed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  u_char _saw_free_extra_data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  // Support for interprocedural escape analysis
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  intx              _eflags;          // flags on escape information
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  intx              _arg_local;       // bit set of non-escaping arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  intx              _arg_stack;       // bit set of stack-allocatable arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  intx              _arg_returned;    // bit set of returned arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  // Maturity of the oop when the snapshot is taken.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  int _current_mileage;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   412
  // These counters hold the age of MDO in tiered. In tiered we can have the same method
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   413
  // running at different compilation levels concurrently. So, in order to precisely measure
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   414
  // its maturity we need separate counters.
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   415
  int _invocation_counter;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   416
  int _backedge_counter;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   417
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  // Coherent snapshot of original header.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9638
diff changeset
   419
  MethodData _orig;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
24476
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 23491
diff changeset
   421
  // Area dedicated to parameters. NULL if no parameter profiling for
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 23491
diff changeset
   422
  // this method.
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   423
  DataLayout* _parameters;
26440
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25492
diff changeset
   424
  int parameters_size() const {
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25492
diff changeset
   425
    return _parameters == NULL ? 0 : parameters_type_data()->size_in_bytes();
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25492
diff changeset
   426
  }
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   427
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9638
diff changeset
   428
  ciMethodData(MethodData* md);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  ciMethodData();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  // Accessors
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   432
  int data_size() const { return _data_size; }
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   433
  int extra_data_size() const { return _extra_data_size; }
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   434
  intptr_t * data() const { return _data; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9638
diff changeset
   436
  MethodData* get_MethodData() const {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9638
diff changeset
   437
    return (MethodData*)_metadata;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  const char* type_string()                      { return "ciMethodData"; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  void print_impl(outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   444
  DataLayout* data_layout_at(int data_index) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
    assert(data_index % sizeof(intptr_t) == 0, "unaligned");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
    return (DataLayout*) (((address)_data) + data_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
  bool out_of_bounds(int data_index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
    return data_index >= data_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
  // hint accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
  int      hint_di() const  { return _hint_di; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
  void set_hint_di(int di)  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
    assert(!out_of_bounds(di), "hint_di out of bounds");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
    _hint_di = di;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  ciProfileData* data_before(int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
    // avoid SEGV on this edge case
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
    if (data_size() == 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
    int hint = hint_di();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
    if (data_layout_at(hint)->bci() <= bci)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
      return data_at(hint);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
    return first_data();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
  // What is the index of the first data entry?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
  int first_di() { return 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   473
  ciArgInfoData *arg_info() const;
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   474
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   475
  address data_base() const {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   476
    return (address) _data;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   477
  }
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   478
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   479
  void load_extra_data();
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   480
  ciProfileData* bci_to_extra_data(int bci, ciMethod* m, bool& two_free_slots);
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   481
24476
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 23491
diff changeset
   482
  void 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: 23491
diff changeset
   483
  template<class T> void 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: 23491
diff changeset
   484
  template<class T> void dump_replay_data_receiver_type_helper(outputStream* out, int round, int& count, T* call_type_data);
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 23491
diff changeset
   485
  void dump_replay_data_extra_data_helper(outputStream* out, int round, int& count);
912595db2e75 8026694: New type profiling points break compilation replay
roland
parents: 23491
diff changeset
   486
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
public:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9638
diff changeset
   488
  bool is_method_data() const { return true; }
9638
a9e79f5cd83b 6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents: 7397
diff changeset
   489
a9e79f5cd83b 6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents: 7397
diff changeset
   490
  bool is_empty()  { return _state == empty_state; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  bool is_mature() { return _state == mature_state; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
  int creation_mileage() { return _orig.creation_mileage(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  int current_mileage()  { return _current_mileage; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   496
  int invocation_count() { return _invocation_counter; }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   497
  int backedge_count()   { return _backedge_counter;   }
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22916
diff changeset
   498
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22916
diff changeset
   499
#if INCLUDE_RTM_OPT
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22916
diff changeset
   500
  // return cached value
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22916
diff changeset
   501
  int rtm_state() {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22916
diff changeset
   502
    if (is_empty()) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22916
diff changeset
   503
      return NoRTM;
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22916
diff changeset
   504
    } else {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22916
diff changeset
   505
      return get_MethodData()->rtm_state();
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22916
diff changeset
   506
    }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22916
diff changeset
   507
  }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22916
diff changeset
   508
#endif
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22916
diff changeset
   509
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9638
diff changeset
   510
  // Transfer information about the method to MethodData*.
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   511
  // would_profile means we would like to profile this method,
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   512
  // meaning it's not trivial.
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   513
  void set_would_profile(bool p);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   514
  // Also set the numer of loops and blocks in the method.
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   515
  // Again, this is used to determine if a method is trivial.
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   516
  void set_compilation_stats(short loops, short blocks);
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   517
  // If the compiler finds a profiled type that is known statically
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   518
  // for sure, set it in the MethodData
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   519
  void set_argument_type(int bci, int i, ciKlass* k);
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   520
  void set_parameter_type(int i, ciKlass* k);
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   521
  void set_return_type(int bci, ciKlass* k);
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   522
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
  void load_data();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  // Convert a dp (data pointer) to a di (data index).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  int dp_to_di(address dp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
    return dp - ((address)_data);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  // Get the data at an arbitrary (sort of) data index.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  ciProfileData* data_at(int data_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  // Walk through the data in order.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
  ciProfileData* first_data() { return data_at(first_di()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
  ciProfileData* next_data(ciProfileData* current);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  bool is_valid(ciProfileData* current) { return current != NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
26440
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25492
diff changeset
   538
  DataLayout* extra_data_base() const  { return data_layout_at(data_size()); }
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25492
diff changeset
   539
  DataLayout* args_data_limit() const  { return data_layout_at(data_size() + extra_data_size() -
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25492
diff changeset
   540
                                                               parameters_size()); }
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   541
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   542
  // Get the data at an arbitrary bci, or NULL if there is none. If m
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   543
  // is not NULL look for a SpeculativeTrapData if any first.
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   544
  ciProfileData* bci_to_data(int bci, ciMethod* m = NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
  uint overflow_trap_count() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
    return _orig.overflow_trap_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
  uint overflow_recompile_count() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
    return _orig.overflow_recompile_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
  uint decompile_count() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
    return _orig.decompile_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
  uint trap_count(int reason) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
    return _orig.trap_count(reason);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
  uint trap_reason_limit() const { return _orig.trap_reason_limit(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  uint trap_count_limit()  const { return _orig.trap_count_limit(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
  // Helpful query functions that decode trap_state.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
  int has_trap_at(ciProfileData* data, int reason);
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   563
  int has_trap_at(int bci, ciMethod* m, int reason) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   564
    assert((m != NULL) == Deoptimization::reason_is_speculate(reason), "inconsistent method/reason");
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   565
    return has_trap_at(bci_to_data(bci, m), reason);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  int trap_recompiled_at(ciProfileData* data);
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   568
  int trap_recompiled_at(int bci, ciMethod* m) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22234
diff changeset
   569
    return trap_recompiled_at(bci_to_data(bci, m));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
  void clear_escape_info();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  bool has_escape_info();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
  void update_escape_info();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9638
diff changeset
   576
  void set_eflag(MethodData::EscapeFlag f);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9638
diff changeset
   577
  void clear_eflag(MethodData::EscapeFlag f);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9638
diff changeset
   578
  bool eflag_set(MethodData::EscapeFlag f) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
  void set_arg_local(int i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
  void set_arg_stack(int i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
  void set_arg_returned(int i);
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   583
  void set_arg_modified(int arg, uint val);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
  bool is_arg_local(int i) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
  bool is_arg_stack(int i) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
  bool is_arg_returned(int i) const;
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   588
  uint arg_modified(int arg) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   590
  ciParametersTypeData* parameters_type_data() const {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   591
    return _parameters != NULL ? new ciParametersTypeData(_parameters) : NULL;
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   592
  }
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   593
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  // Code generation helper
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  ByteSize offset_of_slot(ciProfileData* data, ByteSize slot_offset_in_data);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
  int      byte_offset_of_slot(ciProfileData* data, ByteSize slot_offset_in_data) { return in_bytes(offset_of_slot(data, slot_offset_in_data)); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
  // printing support for method data
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
  void print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
  void print_data_on(outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
#endif
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   603
  void dump_replay_data(outputStream* out);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
   605
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
   606
#endif // SHARE_VM_CI_CIMETHODDATA_HPP