hotspot/src/share/vm/asm/register.hpp
author coleenp
Mon, 14 Jan 2013 11:01:39 -0500
changeset 15194 a35093d73168
parent 14631 526804361522
child 24424 2658d7834c6e
permissions -rw-r--r--
8006005: Fix constant pool index validation and alignment trap for method parameter reflection Summary: This patch addresses an alignment trap due to the storage format of method parameters data in constMethod. It also adds code to validate constant pool indexes for method parameters data. Reviewed-by: jrose, dholmes Contributed-by: eric.mccorkle@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
13963
e5b53c306fb5 7197424: update copyright year to match last edit in jdk8 hotspot repository
mikael
parents: 13881
diff changeset
     2
 * Copyright (c) 2000, 2012, 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_ASM_REGISTER_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_ASM_REGISTER_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/top.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// Use AbstractRegister as shortcut
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
class AbstractRegisterImpl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
typedef AbstractRegisterImpl* AbstractRegister;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// The super class for platform specific registers. Instead of using value objects,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// registers are implemented as pointers. Subclassing is used so all registers can
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// use the debugging suport below. No virtual functions are used for efficiency.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// They are canonicalized; i.e., registers are equal if their pointers are equal,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// and vice versa. A concrete implementation may just map the register onto 'this'.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
class AbstractRegisterImpl {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  int value() const                              { return (int)(intx)this; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
// Macros for use in defining Register instances.  We'd like to be
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
// able to simply define const instances of the RegisterImpl* for each
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
// of the registers needed on a system in a header file.  However many
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
// compilers don't handle this very well and end up producing a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
// private definition in every file which includes the header file.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
// Along with the static constructors necessary for initialization it
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
// can consume a significant amount of space in the result library.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
// The following macros allow us to declare the instance in a .hpp and
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
// produce an enumeration value which has the same number.  Then in a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
// .cpp the the register instance can be defined using the enumeration
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
// value.  This avoids the use of static constructors and multiple
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
// definitions per .cpp.  In addition #defines for the register can be
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
// produced so that the constant registers can be inlined.  These
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
// macros should not be used inside other macros, because you may get
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
// multiple evaluations of the macros which can give bad results.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
// Here are some example uses and expansions.  Note that the macro
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
// invocation is terminated with a ;.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
// CONSTANT_REGISTER_DECLARATION(Register, G0, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
// extern const Register G0 ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
// enum { G0_RegisterEnumValue = 0 } ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
// REGISTER_DECLARATION(Register, Gmethod, G5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
// extern const Register Gmethod ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
// enum { Gmethod_RegisterEnumValue = G5_RegisterEnumValue } ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
// REGISTER_DEFINITION(Register, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
// const Register G0 = ( ( Register ) G0_RegisterEnumValue ) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
#define AS_REGISTER(type,name)         ((type)name##_##type##EnumValue)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
#define CONSTANT_REGISTER_DECLARATION(type, name, value) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
extern const type name;                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
enum { name##_##type##EnumValue = (value) }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
#define REGISTER_DECLARATION(type, name, value) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
extern const type name;                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
enum { name##_##type##EnumValue = value##_##type##EnumValue }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
#define REGISTER_DEFINITION(type, name) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
const type name = ((type)name##_##type##EnumValue)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
14631
526804361522 8003250: SPARC: move MacroAssembler into separate file
twisti
parents: 13963
diff changeset
    96
#ifdef TARGET_ARCH_x86
526804361522 8003250: SPARC: move MacroAssembler into separate file
twisti
parents: 13963
diff changeset
    97
# include "register_x86.hpp"
526804361522 8003250: SPARC: move MacroAssembler into separate file
twisti
parents: 13963
diff changeset
    98
#endif
526804361522 8003250: SPARC: move MacroAssembler into separate file
twisti
parents: 13963
diff changeset
    99
#ifdef TARGET_ARCH_sparc
526804361522 8003250: SPARC: move MacroAssembler into separate file
twisti
parents: 13963
diff changeset
   100
# include "register_sparc.hpp"
526804361522 8003250: SPARC: move MacroAssembler into separate file
twisti
parents: 13963
diff changeset
   101
#endif
526804361522 8003250: SPARC: move MacroAssembler into separate file
twisti
parents: 13963
diff changeset
   102
#ifdef TARGET_ARCH_zero
526804361522 8003250: SPARC: move MacroAssembler into separate file
twisti
parents: 13963
diff changeset
   103
# include "register_zero.hpp"
526804361522 8003250: SPARC: move MacroAssembler into separate file
twisti
parents: 13963
diff changeset
   104
#endif
526804361522 8003250: SPARC: move MacroAssembler into separate file
twisti
parents: 13963
diff changeset
   105
#ifdef TARGET_ARCH_arm
526804361522 8003250: SPARC: move MacroAssembler into separate file
twisti
parents: 13963
diff changeset
   106
# include "register_arm.hpp"
526804361522 8003250: SPARC: move MacroAssembler into separate file
twisti
parents: 13963
diff changeset
   107
#endif
526804361522 8003250: SPARC: move MacroAssembler into separate file
twisti
parents: 13963
diff changeset
   108
#ifdef TARGET_ARCH_ppc
526804361522 8003250: SPARC: move MacroAssembler into separate file
twisti
parents: 13963
diff changeset
   109
# include "register_ppc.hpp"
526804361522 8003250: SPARC: move MacroAssembler into separate file
twisti
parents: 13963
diff changeset
   110
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
// Debugging support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
inline void assert_different_registers(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  AbstractRegister a,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  AbstractRegister b
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  assert(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    a != b,
13881
a326d528f3e1 7196262: JSR 292: java/lang/invoke/PrivateInvokeTest.java fails on solaris-sparc
twisti
parents: 13391
diff changeset
   121
    err_msg_res("registers must be different: a=%d, b=%d",
a326d528f3e1 7196262: JSR 292: java/lang/invoke/PrivateInvokeTest.java fails on solaris-sparc
twisti
parents: 13391
diff changeset
   122
                a, b)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
inline void assert_different_registers(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  AbstractRegister a,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  AbstractRegister b,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  AbstractRegister c
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  assert(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    a != b && a != c
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
           && b != c,
13881
a326d528f3e1 7196262: JSR 292: java/lang/invoke/PrivateInvokeTest.java fails on solaris-sparc
twisti
parents: 13391
diff changeset
   135
    err_msg_res("registers must be different: a=%d, b=%d, c=%d",
a326d528f3e1 7196262: JSR 292: java/lang/invoke/PrivateInvokeTest.java fails on solaris-sparc
twisti
parents: 13391
diff changeset
   136
                a, b, c)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
inline void assert_different_registers(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  AbstractRegister a,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  AbstractRegister b,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  AbstractRegister c,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  AbstractRegister d
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  assert(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    a != b && a != c && a != d
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
           && b != c && b != d
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
                     && c != d,
13881
a326d528f3e1 7196262: JSR 292: java/lang/invoke/PrivateInvokeTest.java fails on solaris-sparc
twisti
parents: 13391
diff changeset
   151
    err_msg_res("registers must be different: a=%d, b=%d, c=%d, d=%d",
a326d528f3e1 7196262: JSR 292: java/lang/invoke/PrivateInvokeTest.java fails on solaris-sparc
twisti
parents: 13391
diff changeset
   152
                a, b, c, d)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
inline void assert_different_registers(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  AbstractRegister a,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  AbstractRegister b,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  AbstractRegister c,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  AbstractRegister d,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  AbstractRegister e
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  assert(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    a != b && a != c && a != d && a != e
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
           && b != c && b != d && b != e
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
                     && c != d && c != e
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
                               && d != e,
13881
a326d528f3e1 7196262: JSR 292: java/lang/invoke/PrivateInvokeTest.java fails on solaris-sparc
twisti
parents: 13391
diff changeset
   169
    err_msg_res("registers must be different: a=%d, b=%d, c=%d, d=%d, e=%d",
a326d528f3e1 7196262: JSR 292: java/lang/invoke/PrivateInvokeTest.java fails on solaris-sparc
twisti
parents: 13391
diff changeset
   170
                a, b, c, d, e)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
inline void assert_different_registers(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  AbstractRegister a,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  AbstractRegister b,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  AbstractRegister c,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  AbstractRegister d,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  AbstractRegister e,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  AbstractRegister f
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  assert(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    a != b && a != c && a != d && a != e && a != f
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
           && b != c && b != d && b != e && b != f
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
                     && c != d && c != e && c != f
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
                               && d != e && d != f
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
                                         && e != f,
13881
a326d528f3e1 7196262: JSR 292: java/lang/invoke/PrivateInvokeTest.java fails on solaris-sparc
twisti
parents: 13391
diff changeset
   189
    err_msg_res("registers must be different: a=%d, b=%d, c=%d, d=%d, e=%d, f=%d",
a326d528f3e1 7196262: JSR 292: java/lang/invoke/PrivateInvokeTest.java fails on solaris-sparc
twisti
parents: 13391
diff changeset
   190
                a, b, c, d, e, f)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
inline void assert_different_registers(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  AbstractRegister a,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  AbstractRegister b,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  AbstractRegister c,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  AbstractRegister d,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  AbstractRegister e,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  AbstractRegister f,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  AbstractRegister g
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  assert(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    a != b && a != c && a != d && a != e && a != f && a != g
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
           && b != c && b != d && b != e && b != f && b != g
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
                     && c != d && c != e && c != f && c != g
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
                               && d != e && d != f && d != g
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
                                         && e != f && e != g
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
                                                   && f != g,
13881
a326d528f3e1 7196262: JSR 292: java/lang/invoke/PrivateInvokeTest.java fails on solaris-sparc
twisti
parents: 13391
diff changeset
   211
    err_msg_res("registers must be different: a=%d, b=%d, c=%d, d=%d, e=%d, f=%d, g=%d",
a326d528f3e1 7196262: JSR 292: java/lang/invoke/PrivateInvokeTest.java fails on solaris-sparc
twisti
parents: 13391
diff changeset
   212
                a, b, c, d, e, f, g)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
inline void assert_different_registers(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  AbstractRegister a,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  AbstractRegister b,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  AbstractRegister c,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  AbstractRegister d,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  AbstractRegister e,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  AbstractRegister f,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  AbstractRegister g,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  AbstractRegister h
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  assert(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
    a != b && a != c && a != d && a != e && a != f && a != g && a != h
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
           && b != c && b != d && b != e && b != f && b != g && b != h
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
                     && c != d && c != e && c != f && c != g && c != h
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
                               && d != e && d != f && d != g && d != h
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
                                         && e != f && e != g && e != h
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
                                                   && f != g && f != h
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
                                                             && g != h,
13881
a326d528f3e1 7196262: JSR 292: java/lang/invoke/PrivateInvokeTest.java fails on solaris-sparc
twisti
parents: 13391
diff changeset
   235
    err_msg_res("registers must be different: a=%d, b=%d, c=%d, d=%d, e=%d, f=%d, g=%d, h=%d",
a326d528f3e1 7196262: JSR 292: java/lang/invoke/PrivateInvokeTest.java fails on solaris-sparc
twisti
parents: 13391
diff changeset
   236
                a, b, c, d, e, f, g, h)
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 7397
diff changeset
   237
  );
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 7397
diff changeset
   238
}
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 7397
diff changeset
   239
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 7397
diff changeset
   240
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 7397
diff changeset
   241
inline void assert_different_registers(
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 7397
diff changeset
   242
  AbstractRegister a,
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 7397
diff changeset
   243
  AbstractRegister b,
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 7397
diff changeset
   244
  AbstractRegister c,
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 7397
diff changeset
   245
  AbstractRegister d,
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 7397
diff changeset
   246
  AbstractRegister e,
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 7397
diff changeset
   247
  AbstractRegister f,
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 7397
diff changeset
   248
  AbstractRegister g,
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 7397
diff changeset
   249
  AbstractRegister h,
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 7397
diff changeset
   250
  AbstractRegister i
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 7397
diff changeset
   251
) {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 7397
diff changeset
   252
  assert(
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 7397
diff changeset
   253
    a != b && a != c && a != d && a != e && a != f && a != g && a != h && a != i
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 7397
diff changeset
   254
           && b != c && b != d && b != e && b != f && b != g && b != h && b != i
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 7397
diff changeset
   255
                     && c != d && c != e && c != f && c != g && c != h && c != i
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 7397
diff changeset
   256
                               && d != e && d != f && d != g && d != h && d != i
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 7397
diff changeset
   257
                                         && e != f && e != g && e != h && e != i
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 7397
diff changeset
   258
                                                   && f != g && f != h && f != i
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 7397
diff changeset
   259
                                                             && g != h && g != i
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 7397
diff changeset
   260
                                                                       && h != i,
13881
a326d528f3e1 7196262: JSR 292: java/lang/invoke/PrivateInvokeTest.java fails on solaris-sparc
twisti
parents: 13391
diff changeset
   261
    err_msg_res("registers must be different: a=%d, b=%d, c=%d, d=%d, e=%d, f=%d, g=%d, h=%d, i=%d",
a326d528f3e1 7196262: JSR 292: java/lang/invoke/PrivateInvokeTest.java fails on solaris-sparc
twisti
parents: 13391
diff changeset
   262
                a, b, c, d, e, f, g, h, i)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
}
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   265
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   266
#endif // SHARE_VM_ASM_REGISTER_HPP