1 /*
  2  * Copyright (c) 1999, 2023, Oracle and/or its affiliates. All rights reserved.
  3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  4  *
  5  * This code is free software; you can redistribute it and/or modify it
  6  * under the terms of the GNU General Public License version 2 only, as
  7  * published by the Free Software Foundation.
  8  *
  9  * This code is distributed in the hope that it will be useful, but WITHOUT
 10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 12  * version 2 for more details (a copy is included in the LICENSE file that
 13  * accompanied this code).
 14  *
 15  * You should have received a copy of the GNU General Public License version
 16  * 2 along with this work; if not, write to the Free Software Foundation,
 17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 18  *
 19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 20  * or visit www.oracle.com if you need additional information or have any
 21  * questions.
 22  *
 23  */
 24 
 25 #ifndef SHARE_CI_CIMETADATA_HPP
 26 #define SHARE_CI_CIMETADATA_HPP
 27 
 28 #include "ci/ciBaseObject.hpp"
 29 #include "ci/ciClassList.hpp"
 30 #include "runtime/handles.hpp"
 31 
 32 // ciMetadata
 33 //
 34 // Compiler interface to metadata object in the VM, not Java object.
 35 
 36 class ciMetadata: public ciBaseObject {
 37   CI_PACKAGE_ACCESS
 38   friend class ciEnv;
 39 
 40  protected:
 41   Metadata* _metadata;
 42 
 43   ciMetadata(): _metadata(nullptr) {}
 44   ciMetadata(Metadata* o): _metadata(o) {}
 45 
 46   virtual bool is_classless() const;
 47  public:
 48   bool is_loaded() const { return _metadata != nullptr || is_classless(); }
 49 
 50   virtual bool is_metadata() const          { return true; }
 51 
 52   virtual bool is_type() const              { return false; }
 53   virtual bool is_return_address() const    { return false; }
 54   virtual bool is_method() const            { return false; }
 55   virtual bool is_method_data() const       { return false; }
 56   virtual bool is_klass() const             { return false; }
 57   virtual bool is_instance_klass() const    { return false; }
 58   virtual bool is_array_klass() const       { return false; }
 59   virtual bool is_obj_array_klass() const   { return false; }
 60   virtual bool is_type_array_klass() const  { return false; }
 61   virtual void dump_replay_data(outputStream* st) { /* do nothing */ }
 62 
 63   ciMethod*                as_method() {
 64     assert(is_method(), "bad cast");
 65     return (ciMethod*)this;
 66   }
 67   ciMethodData*            as_method_data() {
 68     assert(is_method_data(), "bad cast");
 69     return (ciMethodData*)this;
 70   }
 71   ciSymbol*                as_symbol() {
 72     assert(is_symbol(), "bad cast");
 73     return (ciSymbol*)this;
 74   }
 75   ciType*                  as_type() {
 76     assert(is_type(), "bad cast");
 77     return (ciType*)this;
 78   }
 79   ciReturnAddress*         as_return_address() {
 80     assert(is_return_address(), "bad cast");
 81     return (ciReturnAddress*)this;
 82   }
 83   ciKlass*                 as_klass() {
 84     assert(is_klass(), "bad cast");
 85     return (ciKlass*)this;
 86   }
 87   ciInstanceKlass*         as_instance_klass() {
 88     assert(is_instance_klass(), "bad cast");
 89     return (ciInstanceKlass*)this;
 90   }
 91   ciArrayKlass*            as_array_klass() {
 92     assert(is_array_klass(), "bad cast");
 93     return (ciArrayKlass*)this;
 94   }
 95   ciObjArrayKlass*         as_obj_array_klass() {
 96     assert(is_obj_array_klass(), "bad cast");
 97     return (ciObjArrayKlass*)this;
 98   }
 99   ciTypeArrayKlass*        as_type_array_klass() {
100     assert(is_type_array_klass(), "bad cast");
101     return (ciTypeArrayKlass*)this;
102   }
103 
104   Metadata* constant_encoding() { return _metadata; }
105 
106   bool equals(ciMetadata* obj) const { return (this == obj); }
107 
108   uint hash() { return ident() * 31; } // ???
109 
110   void print(outputStream* st);
111   virtual void print_impl(outputStream* st) {}
112   virtual const char* type_string() { return "ciMetadata"; }
113 
114   void print()  { print(tty); }
115   void print_metadata(outputStream* st = tty);
116 
117 };
118 #endif // SHARE_CI_CIMETADATA_HPP