src/hotspot/share/ci/ciObject.hpp
author coleenp
Thu, 10 Jan 2019 15:13:51 -0500
changeset 53244 9807daeb47c4
parent 49621 5ef28d560b6f
child 53546 63eb7e38ce84
permissions -rw-r--r--
8216167: Update include guards to reflect correct directories Summary: Use script and some manual fixup to fix directores names in include guards. Reviewed-by: lfoltan, eosterlund, kbarrett
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49621
diff changeset
     2
 * Copyright (c) 1999, 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: 4567
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4567
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: 4567
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
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49621
diff changeset
    25
#ifndef SHARE_CI_CIOBJECT_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49621
diff changeset
    26
#define SHARE_CI_CIOBJECT_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    28
#include "ci/ciBaseObject.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "ci/ciClassList.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "runtime/handles.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "runtime/jniHandles.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// ciObject
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// This class represents an oop in the HotSpot virtual machine.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// Its subclasses are structured in a hierarchy which mirrors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// an aggregate of the VM's oop and klass hierarchies (see
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// oopHierarchy.hpp).  Each instance of ciObject holds a handle
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// to a corresponding oop on the VM side and provides routines
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// for accessing the information in its oop.  By using the ciObject
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// hierarchy for accessing oops in the VM, the compiler ensures
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// that it is safe with respect to garbage collection; that is,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
// GC and compilation can proceed independently without
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
// interference.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
// Within the VM, the oop and klass hierarchies are separate.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
// The compiler interface does not preserve this separation --
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    48
// the distinction between `Klass*' and `Klass' are not
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
// reflected in the interface and instead the Klass hierarchy
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
// is directly modeled as the subclasses of ciKlass.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    51
class ciObject : public ciBaseObject {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  CI_PACKAGE_ACCESS
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  friend class ciEnv;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  // A JNI handle referring to an oop in the VM.  This
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  // handle may, in a small set of cases, correctly be NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  jobject  _handle;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  ciKlass* _klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  ciObject();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  ciObject(oop o);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  ciObject(Handle h);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  ciObject(ciKlass* klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  jobject      handle()  const { return _handle; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  // Get the VM oop that this object holds.
49192
6734eeef4283 8198474: Move JNIHandles::resolve into jniHandles.inline.hpp
kbarrett
parents: 47216
diff changeset
    69
  oop get_oop() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    71
  void init_flags_from(oop x);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  // Virtual behavior of the print() method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  virtual void print_impl(outputStream* st) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  virtual const char* type_string() { return "ciObject"; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  // The klass of this ciObject.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  ciKlass* klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  // Are two ciObjects equal?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  bool equals(ciObject* obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // A hash value for the convenience of compilers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  int hash();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
    88
  // Tells if this oop has an encoding as a constant.
9959
a6730101c2d0 7048030: is_scavengable changes causing compiler to embed more constants
kvn
parents: 8921
diff changeset
    89
  // True if is_perm is true.
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
    90
  // Also true if ScavengeRootsInCode is non-zero.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  // If it does not have an encoding, the compiler is responsible for
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  // making other arrangements for dealing with the oop.
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
    93
  // See ciEnv::make_array
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
    94
  bool can_be_constant();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
    95
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
    96
  // Tells if this oop should be made a constant.
9959
a6730101c2d0 7048030: is_scavengable changes causing compiler to embed more constants
kvn
parents: 8921
diff changeset
    97
  // True if is_perm is true or ScavengeRootsInCode > 1.
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
    98
  bool should_be_constant();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   100
  // Might this object possibly move during a scavenge operation?
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   101
  // If the answer is true and ScavengeRootsInCode==0, the oop cannot be embedded in code.
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   102
  bool is_scavengable() { return (_ident & SCAVENGABLE_FLAG) != 0; }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   103
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  // The address which the compiler should embed into the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  // generated code to represent this oop.  This address
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  // is not the true address of the oop -- it will get patched
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  // during nmethod creation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  // Usage note: no address arithmetic allowed.  Oop must
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  // be registered with the oopRecorder.
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1
diff changeset
   111
  jobject constant_encoding();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   113
  virtual bool is_object() const            { return true; }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   114
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  // What kind of ciObject is this?
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 9959
diff changeset
   116
  virtual bool is_null_object()       const { return false; }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 9959
diff changeset
   117
  virtual bool is_call_site()         const { return false; }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 9959
diff changeset
   118
  virtual bool is_cpcache()           const { return false; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  virtual bool is_instance()                { return false; }
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 9959
diff changeset
   120
  virtual bool is_member_name()       const { return false; }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 9959
diff changeset
   121
  virtual bool is_method_handle()     const { return false; }
13929
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13728
diff changeset
   122
  virtual bool is_method_type()       const { return false; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  virtual bool is_array()                   { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  virtual bool is_obj_array()               { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  virtual bool is_type_array()              { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  // Is this a type or value which has no associated class?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  // It is true of primitive types and null objects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  virtual bool is_classless() const         { return false; }
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13929
diff changeset
   130
  virtual void dump_replay_data(outputStream* st) { /* do nothing */ }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   132
  // Note: some ciObjects refer to oops which have yet to be created.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   133
  // We refer to these as "unloaded".  Specifically, there are
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   134
  // unloaded instances of java.lang.Class,
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   135
  // java.lang.invoke.MethodHandle, and java.lang.invoke.MethodType.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   136
  // By convention the ciNullObject is considered loaded, and
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   137
  // primitive types are considered loaded.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  bool is_loaded() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    return handle() != NULL || is_classless();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  // Subclass casting with assertions.
13929
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13728
diff changeset
   143
  ciNullObject* as_null_object() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    assert(is_null_object(), "bad cast");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    return (ciNullObject*)this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  }
13929
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13728
diff changeset
   147
  ciCallSite* as_call_site() {
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   148
    assert(is_call_site(), "bad cast");
13929
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13728
diff changeset
   149
    return (ciCallSite*)this;
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   150
  }
13929
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13728
diff changeset
   151
  ciInstance* as_instance() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
    assert(is_instance(), "bad cast");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    return (ciInstance*)this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  }
13929
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13728
diff changeset
   155
  ciMemberName* as_member_name() {
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 9959
diff changeset
   156
    assert(is_member_name(), "bad cast");
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 9959
diff changeset
   157
    return (ciMemberName*)this;
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 9959
diff changeset
   158
  }
13929
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13728
diff changeset
   159
  ciMethodHandle* as_method_handle() {
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   160
    assert(is_method_handle(), "bad cast");
13929
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13728
diff changeset
   161
    return (ciMethodHandle*)this;
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   162
  }
13929
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13728
diff changeset
   163
  ciMethodType* as_method_type() {
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13728
diff changeset
   164
    assert(is_method_type(), "bad cast");
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13728
diff changeset
   165
    return (ciMethodType*)this;
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13728
diff changeset
   166
  }
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13728
diff changeset
   167
  ciArray* as_array() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    assert(is_array(), "bad cast");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    return (ciArray*)this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  }
13929
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13728
diff changeset
   171
  ciObjArray* as_obj_array() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    assert(is_obj_array(), "bad cast");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    return (ciObjArray*)this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  }
13929
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13728
diff changeset
   175
  ciTypeArray* as_type_array() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    assert(is_type_array(), "bad cast");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    return (ciTypeArray*)this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  // Print debugging output about this ciObject.
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 9959
diff changeset
   181
  void print(outputStream* st);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 9959
diff changeset
   182
  void print() { print(tty); }  // GDB cannot handle default arguments
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  // Print debugging output about the oop this ciObject represents.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  void print_oop(outputStream* st = tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   187
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49621
diff changeset
   188
#endif // SHARE_CI_CIOBJECT_HPP