src/share/vm/ci/ciField.hpp

Wed, 12 Oct 2011 21:00:13 -0700

author
twisti
date
Wed, 12 Oct 2011 21:00:13 -0700
changeset 3197
5eb9169b1a14
parent 3107
7b5c767f229c
child 3854
e778c29768e6
permissions
-rw-r--r--

7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
Reviewed-by: jrose, never

     1 /*
     2  * Copyright (c) 1999, 2011, 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  */
    25 #ifndef SHARE_VM_CI_CIFIELD_HPP
    26 #define SHARE_VM_CI_CIFIELD_HPP
    28 #include "ci/ciClassList.hpp"
    29 #include "ci/ciConstant.hpp"
    30 #include "ci/ciFlags.hpp"
    31 #include "ci/ciInstance.hpp"
    33 // ciField
    34 //
    35 // This class represents the result of a field lookup in the VM.
    36 // The lookup may not succeed, in which case the information in
    37 // the ciField will be incomplete.
    38 class ciField : public ResourceObj {
    39   CI_PACKAGE_ACCESS
    40   friend class ciEnv;
    41   friend class ciInstanceKlass;
    42   friend class NonStaticFieldFiller;
    44 private:
    45   ciFlags          _flags;
    46   ciInstanceKlass* _holder;
    47   ciSymbol*        _name;
    48   ciSymbol*        _signature;
    49   ciType*          _type;
    50   int              _offset;
    51   bool             _is_constant;
    52   ciInstanceKlass* _known_to_link_with;
    53   ciConstant       _constant_value;
    55   // Used for will_link
    56   int              _cp_index;
    58   ciType* compute_type();
    59   ciType* compute_type_impl();
    61   ciField(ciInstanceKlass* klass, int index);
    62   ciField(fieldDescriptor* fd);
    64   // shared constructor code
    65   void initialize_from(fieldDescriptor* fd);
    67 public:
    68   ciFlags flags() { return _flags; }
    70   // Of which klass is this field a member?
    71   //
    72   // Usage note: the declared holder of a field is the class
    73   // referenced by name in the bytecodes.  The canonical holder
    74   // is the most general class which holds the field.  This
    75   // method returns the canonical holder.  The declared holder
    76   // can be accessed via a method in ciBytecodeStream.
    77   //
    78   // Ex.
    79   //     class A {
    80   //       public int f = 7;
    81   //     }
    82   //     class B extends A {
    83   //       public void test() {
    84   //         System.out.println(f);
    85   //       }
    86   //     }
    87   //
    88   //   A java compiler is permitted to compile the access to
    89   //   field f as:
    90   //
    91   //     getfield B.f
    92   //
    93   //   In that case the declared holder of f would be B and
    94   //   the canonical holder of f would be A.
    95   ciInstanceKlass* holder() { return _holder; }
    97   // Name of this field?
    98   ciSymbol* name() { return _name; }
   100   // Signature of this field?
   101   ciSymbol* signature() { return _signature; }
   103   // Of what type is this field?
   104   ciType* type() { return (_type == NULL) ? compute_type() : _type; }
   106   // How is this field actually stored in memory?
   107   BasicType layout_type() { return type2field[(_type == NULL) ? T_OBJECT : _type->basic_type()]; }
   109   // How big is this field in memory?
   110   int size_in_bytes() { return type2aelembytes(layout_type()); }
   112   // What is the offset of this field?
   113   int offset() {
   114     assert(_offset >= 1, "illegal call to offset()");
   115     return _offset;
   116   }
   118   // Same question, explicit units.  (Fields are aligned to the byte level.)
   119   int offset_in_bytes() {
   120     return offset();
   121   }
   123   // Is this field shared?
   124   bool is_shared() {
   125     // non-static fields of shared holders are cached
   126     return _holder->is_shared() && !is_static();
   127   }
   129   // Is this field a constant?
   130   //
   131   // Clarification: A field is considered constant if:
   132   //   1. The field is both static and final
   133   //   2. The canonical holder of the field has undergone
   134   //      static initialization.
   135   //   3. If the field is an object or array, then the oop
   136   //      in question is allocated in perm space.
   137   //   4. The field is not one of the special static/final
   138   //      non-constant fields.  These are java.lang.System.in
   139   //      and java.lang.System.out.  Abomination.
   140   //
   141   // Note: the check for case 4 is not yet implemented.
   142   bool is_constant() { return _is_constant; }
   144   // Get the constant value of this field.
   145   ciConstant constant_value() {
   146     assert(is_static() && is_constant(), "illegal call to constant_value()");
   147     return _constant_value;
   148   }
   150   // Get the constant value of non-static final field in the given
   151   // object.
   152   ciConstant constant_value_of(ciObject* object) {
   153     assert(!is_static() && is_constant(), "only if field is non-static constant");
   154     assert(object->is_instance(), "must be instance");
   155     return object->as_instance()->field_value(this);
   156   }
   158   // Check for link time errors.  Accessing a field from a
   159   // certain class via a certain bytecode may or may not be legal.
   160   // This call checks to see if an exception may be raised by
   161   // an access of this field.
   162   //
   163   // Usage note: if the same field is accessed multiple times
   164   // in the same compilation, will_link will need to be checked
   165   // at each point of access.
   166   bool will_link(ciInstanceKlass* accessing_klass,
   167                  Bytecodes::Code bc);
   169   // Java access flags
   170   bool is_public      () { return flags().is_public(); }
   171   bool is_private     () { return flags().is_private(); }
   172   bool is_protected   () { return flags().is_protected(); }
   173   bool is_static      () { return flags().is_static(); }
   174   bool is_final       () { return flags().is_final(); }
   175   bool is_volatile    () { return flags().is_volatile(); }
   176   bool is_transient   () { return flags().is_transient(); }
   178   bool is_call_site_target() {
   179     ciInstanceKlass* callsite_klass = CURRENT_ENV->CallSite_klass();
   180     if (callsite_klass == NULL)
   181       return false;
   182     return (holder()->is_subclass_of(callsite_klass) && (name() == ciSymbol::target_name()));
   183   }
   185   // Debugging output
   186   void print();
   187   void print_name_on(outputStream* st);
   188 };
   190 #endif // SHARE_VM_CI_CIFIELD_HPP

mercurial