hotspot/src/share/vm/runtime/vmStructs.hpp
author twisti
Mon, 14 Dec 2015 17:02:02 -1000
changeset 35123 b0b89d83bcf5
parent 33160 c59f1676d27e
child 46343 3c2650b86bf7
permissions -rw-r--r--
8134994: use separate VMStructs databases for SA and JVMCI Reviewed-by: kbarrett
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
15432
9d976ca484d8 8000692: Remove old KERNEL code
zgu
parents: 14574
diff changeset
     2
 * Copyright (c) 2000, 2013, 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
#include "utilities/debug.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#ifdef COMPILER1
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "c1/c1_Runtime1.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// This table encapsulates the debugging information required by the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// serviceability agent in order to run. Specifically, we need to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// understand the layout of certain C data structures (offsets, in
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// bytes, of their fields.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// There are alternatives for the design of this mechanism, including
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// parsing platform-specific debugging symbols from a debug build into
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// a program database. While this current mechanism can be considered
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// to be a workaround for the inability to debug arbitrary C and C++
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// programs at the present time, it does have certain advantages.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
// First, it is platform-independent, which will vastly simplify the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
// initial bringup of the system both now and on future platforms.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
// Second, it is embedded within the VM, as opposed to being in a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
// separate program database; experience has shown that whenever
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
// portions of a system are decoupled, version skew is problematic.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
// Third, generating a program database, for example for a product
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
// build, would probably require two builds to be done: the desired
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
// product build as well as an intermediary build with the PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
// flag turned on but also compiled with -g, leading to a doubling of
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
// the time required to get a serviceability agent-debuggable product
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
// build. Fourth, and very significantly, this table probably
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
// preserves more information about field types than stabs do; for
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
// example, it preserves the fact that a field is a "jlong" rather
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
// than transforming the type according to the typedef in jni_md.h,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
// which allows the Java-side code to identify "Java-sized" fields in
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
// C++ data structures. If the symbol parsing mechanism was redone
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
// using stabs, it might still be necessary to have a table somewhere
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
// containing this information.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
// Do not change the sizes or signedness of the integer values in
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
// these data structures; they are fixed over in the serviceability
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
// agent's Java code (for bootstrapping).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
typedef struct {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  const char* typeName;            // The type name containing the given field (example: "Klass")
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  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
    69
  const char* typeString;          // Quoted name of the type of this field (example: "Symbol*";
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
                                   // parsed in Java to ensure type correctness
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  int32_t  isStatic;               // Indicates whether following field is an offset or an address
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  uint64_t offset;                 // Offset of field within structure; only used for nonstatic fields
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  void* address;                   // Address of field; only used for static fields
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
                                   // ("offset" can not be reused because of apparent SparcWorks compiler bug
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
                                   // in generation of initializer data)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
} VMStructEntry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
typedef struct {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8921
diff changeset
    79
  const char* typeName;            // Type name (example: "Method")
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  const char* superclassName;      // Superclass name, or null if none (example: "oopDesc")
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8921
diff changeset
    81
  int32_t isOopType;               // Does this type represent an oop typedef? (i.e., "Method*" or
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8921
diff changeset
    82
                                   // "Klass*", but NOT "Method")
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  int32_t isIntegerType;           // Does this type represent an integer type (of arbitrary size)?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  int32_t isUnsigned;              // If so, is it unsigned?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  uint64_t size;                   // Size, in bytes, of the type
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
} VMTypeEntry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
typedef struct {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  const char* name;                // Name of constant (example: "_thread_in_native")
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  int32_t value;                   // Value of constant
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
} VMIntConstantEntry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
typedef struct {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  const char* name;                // Name of constant (example: "_thread_in_native")
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  uint64_t value;                  // Value of constant
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
} VMLongConstantEntry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 15432
diff changeset
    98
typedef struct {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 15432
diff changeset
    99
  const char* name;                // Name of address (example: "SharedRuntime::register_finalizer")
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 15432
diff changeset
   100
  void* value;                     // Value of address
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 15432
diff changeset
   101
} VMAddressEntry;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 15432
diff changeset
   102
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
// This class is a friend of most classes, to be able to access
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
// private fields
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
class VMStructs {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  // The last entry is identified over in the serviceability agent by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // the fact that it has a NULL fieldName
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  static VMStructEntry localHotSpotVMStructs[];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  // The last entry is identified over in the serviceability agent by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  // the fact that it has a NULL typeName
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  static VMTypeEntry   localHotSpotVMTypes[];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  // Table of integer constants required by the serviceability agent.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  // The last entry is identified over in the serviceability agent by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  // the fact that it has a NULL typeName
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  static VMIntConstantEntry localHotSpotVMIntConstants[];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  // Table of long constants required by the serviceability agent.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  // The last entry is identified over in the serviceability agent by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  // the fact that it has a NULL typeName
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  static VMLongConstantEntry localHotSpotVMLongConstants[];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 15432
diff changeset
   125
  /**
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 15432
diff changeset
   126
   * Table of addresses.
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 15432
diff changeset
   127
   */
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 15432
diff changeset
   128
  static VMAddressEntry localHotSpotVMAddresses[];
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 15432
diff changeset
   129
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  // This is used to run any checking code necessary for validation of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  // the data structure (debug build only)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  static void init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
14574
1193d3742872 8003879: Duplicate definitions in vmStructs
mikael
parents: 13728
diff changeset
   134
#ifndef PRODUCT
1193d3742872 8003879: Duplicate definitions in vmStructs
mikael
parents: 13728
diff changeset
   135
  // Execute unit tests
1193d3742872 8003879: Duplicate definitions in vmStructs
mikael
parents: 13728
diff changeset
   136
  static void test();
1193d3742872 8003879: Duplicate definitions in vmStructs
mikael
parents: 13728
diff changeset
   137
#endif
1193d3742872 8003879: Duplicate definitions in vmStructs
mikael
parents: 13728
diff changeset
   138
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  // Look up a type in localHotSpotVMTypes using strcmp() (debug build only).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  // Returns 1 if found, 0 if not.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  //  debug_only(static int findType(const char* typeName);)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  static int findType(const char* typeName);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   145
35123
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   146
// This utility macro quotes the passed string
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   147
#define QUOTE(x) #x
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   148
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   149
//--------------------------------------------------------------------------------
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   150
// VMStructEntry macros
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   151
//
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   152
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   153
// This macro generates a VMStructEntry line for a nonstatic field
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   154
#define GENERATE_NONSTATIC_VM_STRUCT_ENTRY(typeName, fieldName, type)              \
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   155
 { QUOTE(typeName), QUOTE(fieldName), QUOTE(type), 0, offset_of(typeName, fieldName), NULL },
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   156
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   157
// This macro generates a VMStructEntry line for a static field
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   158
#define GENERATE_STATIC_VM_STRUCT_ENTRY(typeName, fieldName, type)                 \
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   159
 { QUOTE(typeName), QUOTE(fieldName), QUOTE(type), 1, 0, &typeName::fieldName },
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   160
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   161
// This macro generates a VMStructEntry line for a static pointer volatile field,
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   162
// e.g.: "static ObjectMonitor * volatile gBlockList;"
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   163
#define GENERATE_STATIC_PTR_VOLATILE_VM_STRUCT_ENTRY(typeName, fieldName, type)    \
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   164
 { QUOTE(typeName), QUOTE(fieldName), QUOTE(type), 1, 0, (void *)&typeName::fieldName },
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   165
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   166
// This macro generates a VMStructEntry line for an unchecked
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   167
// nonstatic field, in which the size of the type is also specified.
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   168
// The type string is given as NULL, indicating an "opaque" type.
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   169
#define GENERATE_UNCHECKED_NONSTATIC_VM_STRUCT_ENTRY(typeName, fieldName, size)    \
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   170
  { QUOTE(typeName), QUOTE(fieldName), NULL, 0, offset_of(typeName, fieldName), NULL },
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   171
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   172
// This macro generates a VMStructEntry line for an unchecked
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   173
// static field, in which the size of the type is also specified.
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   174
// The type string is given as NULL, indicating an "opaque" type.
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   175
#define GENERATE_UNCHECKED_STATIC_VM_STRUCT_ENTRY(typeName, fieldName, size)       \
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   176
 { QUOTE(typeName), QUOTE(fieldName), NULL, 1, 0, (void*) &typeName::fieldName },
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   177
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   178
// This macro generates the sentinel value indicating the end of the list
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   179
#define GENERATE_VM_STRUCT_LAST_ENTRY() \
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   180
 { NULL, NULL, NULL, 0, 0, NULL }
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   181
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   182
// This macro checks the type of a VMStructEntry by comparing pointer types
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   183
#define CHECK_NONSTATIC_VM_STRUCT_ENTRY(typeName, fieldName, type)                 \
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   184
 {typeName *dummyObj = NULL; type* dummy = &dummyObj->fieldName;                   \
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   185
  assert(offset_of(typeName, fieldName) < sizeof(typeName), "Illegal nonstatic struct entry, field offset too large"); }
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   186
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   187
// This macro checks the type of a volatile VMStructEntry by comparing pointer types
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   188
#define CHECK_VOLATILE_NONSTATIC_VM_STRUCT_ENTRY(typeName, fieldName, type)        \
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   189
 {typedef type dummyvtype; typeName *dummyObj = NULL; volatile dummyvtype* dummy = &dummyObj->fieldName; }
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   190
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   191
// This macro checks the type of a static VMStructEntry by comparing pointer types
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   192
#define CHECK_STATIC_VM_STRUCT_ENTRY(typeName, fieldName, type)                    \
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   193
 {type* dummy = &typeName::fieldName; }
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   194
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   195
// This macro checks the type of a static pointer volatile VMStructEntry by comparing pointer types,
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   196
// e.g.: "static ObjectMonitor * volatile gBlockList;"
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   197
#define CHECK_STATIC_PTR_VOLATILE_VM_STRUCT_ENTRY(typeName, fieldName, type)       \
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   198
 {type volatile * dummy = &typeName::fieldName; }
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   199
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   200
// This macro ensures the type of a field and its containing type are
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   201
// present in the type table. The assertion string is shorter than
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   202
// preferable because (incredibly) of a bug in Solstice NFS client
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   203
// which seems to prevent very long lines from compiling. This assertion
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   204
// means that an entry in VMStructs::localHotSpotVMStructs[] was not
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   205
// found in VMStructs::localHotSpotVMTypes[].
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   206
#define ENSURE_FIELD_TYPE_PRESENT(typeName, fieldName, type)                       \
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   207
 { assert(findType(QUOTE(typeName)) != 0, "type \"" QUOTE(typeName) "\" not found in type table"); \
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   208
   assert(findType(QUOTE(type)) != 0, "type \"" QUOTE(type) "\" not found in type table"); }
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   209
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   210
// This is a no-op macro for unchecked fields
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   211
#define CHECK_NO_OP(a, b, c)
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   212
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   213
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   214
//--------------------------------------------------------------------------------
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   215
// VMTypeEntry macros
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   216
//
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   217
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   218
#define GENERATE_VM_TYPE_ENTRY(type, superclass) \
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   219
 { QUOTE(type), QUOTE(superclass), 0, 0, 0, sizeof(type) },
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   220
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   221
#define GENERATE_TOPLEVEL_VM_TYPE_ENTRY(type) \
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   222
 { QUOTE(type), NULL,              0, 0, 0, sizeof(type) },
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   223
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   224
#define GENERATE_OOP_VM_TYPE_ENTRY(type) \
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   225
 { QUOTE(type), NULL,              1, 0, 0, sizeof(type) },
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   226
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   227
#define GENERATE_INTEGER_VM_TYPE_ENTRY(type) \
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   228
 { QUOTE(type), NULL,              0, 1, 0, sizeof(type) },
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   229
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   230
#define GENERATE_UNSIGNED_INTEGER_VM_TYPE_ENTRY(type) \
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   231
 { QUOTE(type), NULL,              0, 1, 1, sizeof(type) },
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   232
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   233
#define GENERATE_VM_TYPE_LAST_ENTRY() \
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   234
 { NULL, NULL, 0, 0, 0, 0 }
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   235
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   236
#define CHECK_VM_TYPE_ENTRY(type, superclass) \
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   237
 { type* dummyObj = NULL; superclass* dummySuperObj = dummyObj; }
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   238
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   239
#define CHECK_VM_TYPE_NO_OP(a)
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   240
#define CHECK_SINGLE_ARG_VM_TYPE_NO_OP(a)
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   241
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   242
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   243
//--------------------------------------------------------------------------------
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   244
// VMIntConstantEntry macros
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   245
//
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   246
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   247
#define GENERATE_VM_INT_CONSTANT_ENTRY(name) \
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   248
 { QUOTE(name), (int32_t) name },
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   249
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   250
#define GENERATE_VM_INT_CONSTANT_WITH_VALUE_ENTRY(name, value) \
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   251
 { (name), (int32_t)(value) },
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   252
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   253
#define GENERATE_PREPROCESSOR_VM_INT_CONSTANT_ENTRY(name, value) \
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   254
 { name, (int32_t) value },
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   255
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   256
// This macro generates the sentinel value indicating the end of the list
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   257
#define GENERATE_VM_INT_CONSTANT_LAST_ENTRY() \
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   258
 { NULL, 0 }
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   259
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   260
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   261
//--------------------------------------------------------------------------------
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   262
// VMLongConstantEntry macros
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   263
//
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   264
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   265
#define GENERATE_VM_LONG_CONSTANT_ENTRY(name) \
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   266
  { QUOTE(name), name },
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   267
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   268
#define GENERATE_PREPROCESSOR_VM_LONG_CONSTANT_ENTRY(name, value) \
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   269
  { name, value },
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   270
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   271
// This macro generates the sentinel value indicating the end of the list
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   272
#define GENERATE_VM_LONG_CONSTANT_LAST_ENTRY() \
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   273
 { NULL, 0 }
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   274
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   275
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   276
//--------------------------------------------------------------------------------
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   277
// VMAddressEntry macros
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   278
//
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   279
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   280
#define GENERATE_VM_ADDRESS_ENTRY(name) \
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   281
  { QUOTE(name), (void*) (name) },
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   282
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   283
#define GENERATE_PREPROCESSOR_VM_ADDRESS_ENTRY(name, value) \
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   284
  { name, (void*) (value) },
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   285
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   286
#define GENERATE_VM_FUNCTION_ENTRY(name) \
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   287
  { QUOTE(name), CAST_FROM_FN_PTR(void*, &(name)) },
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   288
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   289
// This macro generates the sentinel value indicating the end of the list
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   290
#define GENERATE_VM_ADDRESS_LAST_ENTRY() \
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   291
 { NULL, NULL }
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 33160
diff changeset
   292
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   293
#endif // SHARE_VM_RUNTIME_VMSTRUCTS_HPP