< prev index next >

src/share/vm/ci/ciValueKlass.hpp

Print this page




  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_VM_CI_CIVALUEKLASS_HPP
  26 #define SHARE_VM_CI_CIVALUEKLASS_HPP
  27 
  28 #include "ci/ciConstantPoolCache.hpp"
  29 #include "ci/ciFlags.hpp"
  30 #include "ci/ciInstanceKlass.hpp"
  31 #include "ci/ciSymbol.hpp"
  32 
  33 // ciValueKlass
  34 //
  35 // TODO
  36 class ciValueKlass : public ciInstanceKlass {
  37   CI_PACKAGE_ACCESS
  38 
  39 protected:
  40   ciValueKlass(KlassHandle h_k) : ciInstanceKlass(h_k) {
  41     assert(is_final(), "ValueKlass must be final");
  42   };
  43 
  44 public:
  45   bool is_valuetype() const { return true; }
  46   int field_size()          { return nonstatic_field_size(); }
  47   int field_count()         { return nof_nonstatic_fields(); }





  48   int       get_field_index_by_offset(int offset);
  49   int       get_field_offset_by_index(int index) const;
  50   BasicType get_field_type_by_index(int index) const;

  51 };
  52 
  53 #endif // SHARE_VM_CI_CIVALUEKLASS_HPP


  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_VM_CI_CIVALUEKLASS_HPP
  26 #define SHARE_VM_CI_CIVALUEKLASS_HPP
  27 
  28 #include "ci/ciConstantPoolCache.hpp"
  29 #include "ci/ciFlags.hpp"
  30 #include "ci/ciInstanceKlass.hpp"
  31 #include "ci/ciSymbol.hpp"
  32 
  33 // ciValueKlass
  34 //
  35 // Specialized ciInstanceKlass for value types.
  36 class ciValueKlass : public ciInstanceKlass {
  37   CI_PACKAGE_ACCESS
  38 
  39 protected:
  40   ciValueKlass(KlassHandle h_k) : ciInstanceKlass(h_k) {
  41     assert(is_final(), "ValueKlass must be final");
  42   };
  43 
  44 public:
  45   bool      is_valuetype() const { return true; }
  46 
  47   // Value type factory parameters
  48   int       param_count() const;
  49   int       param_size();
  50 
  51   // Value type fields ('index' refers to the value factory parameter index)
  52   int       get_field_count() { return nof_nonstatic_fields(); }
  53   int       get_field_index_by_offset(int offset);
  54   int       get_field_offset_by_index(int index) const;
  55   ciType*   get_field_type_by_index(int index);
  56   int       get_first_field_offset() const;
  57 };
  58 
  59 #endif // SHARE_VM_CI_CIVALUEKLASS_HPP
< prev index next >