hotspot/src/share/vm/runtime/vmStructs.hpp
author trims
Tue, 05 Apr 2011 14:12:31 -0700
changeset 8921 14bfe81f2a9d
parent 8076 96d498ec7ae1
child 13728 882756847a04
permissions -rw-r--r--
7010070: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - second pass Summary: Update the copyright to be 2010 on all changed files in OpenJDK Reviewed-by: ohair
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
8921
14bfe81f2a9d 7010070: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - second pass
trims
parents: 8076
diff changeset
     2
 * Copyright (c) 2000, 2011, 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: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
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: 1
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: 5547
diff changeset
    25
#ifndef SHARE_VM_RUNTIME_VMSTRUCTS_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_RUNTIME_VMSTRUCTS_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#ifndef VM_STRUCTS_KERNEL
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "utilities/debug.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#ifdef COMPILER1
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "c1/c1_Runtime1.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// This table encapsulates the debugging information required by the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// serviceability agent in order to run. Specifically, we need to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// understand the layout of certain C data structures (offsets, in
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// bytes, of their fields.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// There are alternatives for the design of this mechanism, including
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// parsing platform-specific debugging symbols from a debug build into
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// a program database. While this current mechanism can be considered
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
// to be a workaround for the inability to debug arbitrary C and C++
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
// programs at the present time, it does have certain advantages.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
// First, it is platform-independent, which will vastly simplify the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
// initial bringup of the system both now and on future platforms.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
// Second, it is embedded within the VM, as opposed to being in a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
// separate program database; experience has shown that whenever
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
// portions of a system are decoupled, version skew is problematic.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
// Third, generating a program database, for example for a product
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
// build, would probably require two builds to be done: the desired
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
// product build as well as an intermediary build with the PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
// flag turned on but also compiled with -g, leading to a doubling of
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
// the time required to get a serviceability agent-debuggable product
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
// build. Fourth, and very significantly, this table probably
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
// preserves more information about field types than stabs do; for
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
// example, it preserves the fact that a field is a "jlong" rather
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
// than transforming the type according to the typedef in jni_md.h,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
// which allows the Java-side code to identify "Java-sized" fields in
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
// C++ data structures. If the symbol parsing mechanism was redone
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
// using stabs, it might still be necessary to have a table somewhere
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
// containing this information.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
// Do not change the sizes or signedness of the integer values in
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
// these data structures; they are fixed over in the serviceability
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
// agent's Java code (for bootstrapping).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
typedef struct {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  const char* typeName;            // The type name containing the given field (example: "Klass")
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  const char* fieldName;           // The field name within the type           (example: "_name")
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    71
  const char* typeString;          // Quoted name of the type of this field (example: "Symbol*";
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
                                   // parsed in Java to ensure type correctness
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  int32_t  isStatic;               // Indicates whether following field is an offset or an address
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  uint64_t offset;                 // Offset of field within structure; only used for nonstatic fields
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  void* address;                   // Address of field; only used for static fields
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
                                   // ("offset" can not be reused because of apparent SparcWorks compiler bug
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
                                   // in generation of initializer data)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
} VMStructEntry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
typedef struct {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  const char* typeName;            // Type name (example: "methodOopDesc")
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  const char* superclassName;      // Superclass name, or null if none (example: "oopDesc")
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  int32_t isOopType;               // Does this type represent an oop typedef? (i.e., "methodOop" or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
                                   // "klassOop", but NOT "methodOopDesc")
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  int32_t isIntegerType;           // Does this type represent an integer type (of arbitrary size)?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  int32_t isUnsigned;              // If so, is it unsigned?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  uint64_t size;                   // Size, in bytes, of the type
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
} VMTypeEntry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
typedef struct {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  const char* name;                // Name of constant (example: "_thread_in_native")
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  int32_t value;                   // Value of constant
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
} VMIntConstantEntry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
typedef struct {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  const char* name;                // Name of constant (example: "_thread_in_native")
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  uint64_t value;                  // Value of constant
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
} VMLongConstantEntry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
// This class is a friend of most classes, to be able to access
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
// private fields
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
class VMStructs {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  // The last entry is identified over in the serviceability agent by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  // the fact that it has a NULL fieldName
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  static VMStructEntry localHotSpotVMStructs[];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // The last entry is identified over in the serviceability agent by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  // the fact that it has a NULL typeName
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  static VMTypeEntry   localHotSpotVMTypes[];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  // Table of integer constants required by the serviceability agent.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  // The last entry is identified over in the serviceability agent by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  // the fact that it has a NULL typeName
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  static VMIntConstantEntry localHotSpotVMIntConstants[];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  // Table of long constants required by the serviceability agent.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  // The last entry is identified over in the serviceability agent by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  // the fact that it has a NULL typeName
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  static VMLongConstantEntry localHotSpotVMLongConstants[];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  // This is used to run any checking code necessary for validation of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  // the data structure (debug build only)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  static void init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  // Look up a type in localHotSpotVMTypes using strcmp() (debug build only).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  // Returns 1 if found, 0 if not.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  //  debug_only(static int findType(const char* typeName);)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  static int findType(const char* typeName);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   132
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   133
#endif // SHARE_VM_RUNTIME_VMSTRUCTS_HPP