hotspot/src/share/vm/interpreter/bytecodes.hpp
author twisti
Wed, 31 Aug 2011 01:40:45 -0700
changeset 10506 575ad9bccff5
parent 8107 78e5bd944384
child 13391 30245956af37
permissions -rw-r--r--
7078382: JSR 292: don't count method handle adapters against inlining budgets Reviewed-by: kvn, never
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
     2
 * Copyright (c) 1997, 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: 3261
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3261
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: 3261
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: 5882
diff changeset
    25
#ifndef SHARE_VM_INTERPRETER_BYTECODES_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    26
#define SHARE_VM_INTERPRETER_BYTECODES_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    28
#include "memory/allocation.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    29
#include "utilities/top.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    30
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// Bytecodes specifies all bytecodes used in the VM and
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// provides utility functions to get bytecode attributes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// NOTE: replicated in SA in vm/agent/sun/jvm/hotspot/interpreter/Bytecodes.java
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
class Bytecodes: AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  enum Code {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
    _illegal              =  -1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
    // Java bytecodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
    _nop                  =   0, // 0x00
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
    _aconst_null          =   1, // 0x01
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
    _iconst_m1            =   2, // 0x02
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
    _iconst_0             =   3, // 0x03
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
    _iconst_1             =   4, // 0x04
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
    _iconst_2             =   5, // 0x05
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
    _iconst_3             =   6, // 0x06
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    _iconst_4             =   7, // 0x07
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
    _iconst_5             =   8, // 0x08
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
    _lconst_0             =   9, // 0x09
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
    _lconst_1             =  10, // 0x0a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
    _fconst_0             =  11, // 0x0b
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
    _fconst_1             =  12, // 0x0c
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    _fconst_2             =  13, // 0x0d
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
    _dconst_0             =  14, // 0x0e
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
    _dconst_1             =  15, // 0x0f
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    _bipush               =  16, // 0x10
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
    _sipush               =  17, // 0x11
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    _ldc                  =  18, // 0x12
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    _ldc_w                =  19, // 0x13
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    _ldc2_w               =  20, // 0x14
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    _iload                =  21, // 0x15
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    _lload                =  22, // 0x16
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    _fload                =  23, // 0x17
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    _dload                =  24, // 0x18
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    _aload                =  25, // 0x19
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    _iload_0              =  26, // 0x1a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    _iload_1              =  27, // 0x1b
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    _iload_2              =  28, // 0x1c
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    _iload_3              =  29, // 0x1d
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    _lload_0              =  30, // 0x1e
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    _lload_1              =  31, // 0x1f
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    _lload_2              =  32, // 0x20
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    _lload_3              =  33, // 0x21
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    _fload_0              =  34, // 0x22
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    _fload_1              =  35, // 0x23
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    _fload_2              =  36, // 0x24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    _fload_3              =  37, // 0x25
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    _dload_0              =  38, // 0x26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    _dload_1              =  39, // 0x27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    _dload_2              =  40, // 0x28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    _dload_3              =  41, // 0x29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    _aload_0              =  42, // 0x2a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    _aload_1              =  43, // 0x2b
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    _aload_2              =  44, // 0x2c
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
    _aload_3              =  45, // 0x2d
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    _iaload               =  46, // 0x2e
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    _laload               =  47, // 0x2f
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    _faload               =  48, // 0x30
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    _daload               =  49, // 0x31
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    _aaload               =  50, // 0x32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    _baload               =  51, // 0x33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    _caload               =  52, // 0x34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    _saload               =  53, // 0x35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    _istore               =  54, // 0x36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    _lstore               =  55, // 0x37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    _fstore               =  56, // 0x38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    _dstore               =  57, // 0x39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    _astore               =  58, // 0x3a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    _istore_0             =  59, // 0x3b
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    _istore_1             =  60, // 0x3c
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    _istore_2             =  61, // 0x3d
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    _istore_3             =  62, // 0x3e
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    _lstore_0             =  63, // 0x3f
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    _lstore_1             =  64, // 0x40
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    _lstore_2             =  65, // 0x41
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    _lstore_3             =  66, // 0x42
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    _fstore_0             =  67, // 0x43
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    _fstore_1             =  68, // 0x44
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    _fstore_2             =  69, // 0x45
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    _fstore_3             =  70, // 0x46
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    _dstore_0             =  71, // 0x47
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    _dstore_1             =  72, // 0x48
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    _dstore_2             =  73, // 0x49
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    _dstore_3             =  74, // 0x4a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    _astore_0             =  75, // 0x4b
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    _astore_1             =  76, // 0x4c
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    _astore_2             =  77, // 0x4d
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    _astore_3             =  78, // 0x4e
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    _iastore              =  79, // 0x4f
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    _lastore              =  80, // 0x50
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    _fastore              =  81, // 0x51
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
    _dastore              =  82, // 0x52
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    _aastore              =  83, // 0x53
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    _bastore              =  84, // 0x54
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    _castore              =  85, // 0x55
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    _sastore              =  86, // 0x56
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    _pop                  =  87, // 0x57
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    _pop2                 =  88, // 0x58
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    _dup                  =  89, // 0x59
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    _dup_x1               =  90, // 0x5a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    _dup_x2               =  91, // 0x5b
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    _dup2                 =  92, // 0x5c
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    _dup2_x1              =  93, // 0x5d
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    _dup2_x2              =  94, // 0x5e
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    _swap                 =  95, // 0x5f
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
    _iadd                 =  96, // 0x60
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    _ladd                 =  97, // 0x61
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    _fadd                 =  98, // 0x62
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    _dadd                 =  99, // 0x63
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    _isub                 = 100, // 0x64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
    _lsub                 = 101, // 0x65
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    _fsub                 = 102, // 0x66
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    _dsub                 = 103, // 0x67
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    _imul                 = 104, // 0x68
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    _lmul                 = 105, // 0x69
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    _fmul                 = 106, // 0x6a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    _dmul                 = 107, // 0x6b
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
    _idiv                 = 108, // 0x6c
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
    _ldiv                 = 109, // 0x6d
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
    _fdiv                 = 110, // 0x6e
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
    _ddiv                 = 111, // 0x6f
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    _irem                 = 112, // 0x70
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
    _lrem                 = 113, // 0x71
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    _frem                 = 114, // 0x72
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
    _drem                 = 115, // 0x73
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    _ineg                 = 116, // 0x74
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    _lneg                 = 117, // 0x75
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    _fneg                 = 118, // 0x76
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    _dneg                 = 119, // 0x77
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    _ishl                 = 120, // 0x78
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    _lshl                 = 121, // 0x79
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    _ishr                 = 122, // 0x7a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
    _lshr                 = 123, // 0x7b
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    _iushr                = 124, // 0x7c
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
    _lushr                = 125, // 0x7d
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    _iand                 = 126, // 0x7e
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    _land                 = 127, // 0x7f
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    _ior                  = 128, // 0x80
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    _lor                  = 129, // 0x81
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    _ixor                 = 130, // 0x82
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    _lxor                 = 131, // 0x83
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    _iinc                 = 132, // 0x84
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    _i2l                  = 133, // 0x85
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    _i2f                  = 134, // 0x86
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    _i2d                  = 135, // 0x87
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    _l2i                  = 136, // 0x88
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    _l2f                  = 137, // 0x89
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
    _l2d                  = 138, // 0x8a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    _f2i                  = 139, // 0x8b
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
    _f2l                  = 140, // 0x8c
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    _f2d                  = 141, // 0x8d
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    _d2i                  = 142, // 0x8e
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    _d2l                  = 143, // 0x8f
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
    _d2f                  = 144, // 0x90
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    _i2b                  = 145, // 0x91
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
    _i2c                  = 146, // 0x92
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
    _i2s                  = 147, // 0x93
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
    _lcmp                 = 148, // 0x94
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
    _fcmpl                = 149, // 0x95
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
    _fcmpg                = 150, // 0x96
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
    _dcmpl                = 151, // 0x97
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    _dcmpg                = 152, // 0x98
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    _ifeq                 = 153, // 0x99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
    _ifne                 = 154, // 0x9a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
    _iflt                 = 155, // 0x9b
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    _ifge                 = 156, // 0x9c
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
    _ifgt                 = 157, // 0x9d
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
    _ifle                 = 158, // 0x9e
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
    _if_icmpeq            = 159, // 0x9f
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
    _if_icmpne            = 160, // 0xa0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
    _if_icmplt            = 161, // 0xa1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
    _if_icmpge            = 162, // 0xa2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
    _if_icmpgt            = 163, // 0xa3
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    _if_icmple            = 164, // 0xa4
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
    _if_acmpeq            = 165, // 0xa5
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
    _if_acmpne            = 166, // 0xa6
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
    _goto                 = 167, // 0xa7
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
    _jsr                  = 168, // 0xa8
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
    _ret                  = 169, // 0xa9
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
    _tableswitch          = 170, // 0xaa
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
    _lookupswitch         = 171, // 0xab
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
    _ireturn              = 172, // 0xac
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    _lreturn              = 173, // 0xad
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    _freturn              = 174, // 0xae
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
    _dreturn              = 175, // 0xaf
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
    _areturn              = 176, // 0xb0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
    _return               = 177, // 0xb1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
    _getstatic            = 178, // 0xb2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
    _putstatic            = 179, // 0xb3
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
    _getfield             = 180, // 0xb4
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
    _putfield             = 181, // 0xb5
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
    _invokevirtual        = 182, // 0xb6
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
    _invokespecial        = 183, // 0xb7
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    _invokestatic         = 184, // 0xb8
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
    _invokeinterface      = 185, // 0xb9
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1623
diff changeset
   227
    _invokedynamic        = 186, // 0xba     // if EnableInvokeDynamic
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
    _new                  = 187, // 0xbb
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
    _newarray             = 188, // 0xbc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    _anewarray            = 189, // 0xbd
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    _arraylength          = 190, // 0xbe
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
    _athrow               = 191, // 0xbf
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
    _checkcast            = 192, // 0xc0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
    _instanceof           = 193, // 0xc1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
    _monitorenter         = 194, // 0xc2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
    _monitorexit          = 195, // 0xc3
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    _wide                 = 196, // 0xc4
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
    _multianewarray       = 197, // 0xc5
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
    _ifnull               = 198, // 0xc6
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
    _ifnonnull            = 199, // 0xc7
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
    _goto_w               = 200, // 0xc8
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
    _jsr_w                = 201, // 0xc9
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
    _breakpoint           = 202, // 0xca
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
    number_of_java_codes,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
    // JVM bytecodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
    _fast_agetfield       = number_of_java_codes,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
    _fast_bgetfield       ,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
    _fast_cgetfield       ,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
    _fast_dgetfield       ,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    _fast_fgetfield       ,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
    _fast_igetfield       ,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
    _fast_lgetfield       ,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
    _fast_sgetfield       ,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
    _fast_aputfield       ,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
    _fast_bputfield       ,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
    _fast_cputfield       ,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
    _fast_dputfield       ,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
    _fast_fputfield       ,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
    _fast_iputfield       ,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
    _fast_lputfield       ,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
    _fast_sputfield       ,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
    _fast_aload_0         ,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
    _fast_iaccess_0       ,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
    _fast_aaccess_0       ,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
    _fast_faccess_0       ,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
    _fast_iload           ,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
    _fast_iload2          ,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
    _fast_icaload         ,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
    _fast_invokevfinal    ,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
    _fast_linearswitch    ,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
    _fast_binaryswitch    ,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   279
    // special handling of oop constants:
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   280
    _fast_aldc            ,
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   281
    _fast_aldc_w          ,
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   282
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
    _return_register_finalizer    ,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
    _shouldnotreachhere,      // For debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
    // Platform specific JVM bytecodes
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
   288
#ifdef TARGET_ARCH_x86
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
   289
# include "bytecodes_x86.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
   290
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
   291
#ifdef TARGET_ARCH_sparc
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
   292
# include "bytecodes_sparc.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
   293
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
   294
#ifdef TARGET_ARCH_zero
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
   295
# include "bytecodes_zero.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
   296
#endif
8107
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 7913
diff changeset
   297
#ifdef TARGET_ARCH_arm
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 7913
diff changeset
   298
# include "bytecodes_arm.hpp"
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 7913
diff changeset
   299
#endif
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 7913
diff changeset
   300
#ifdef TARGET_ARCH_ppc
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 7913
diff changeset
   301
# include "bytecodes_ppc.hpp"
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 7913
diff changeset
   302
#endif
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
   303
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
    number_of_codes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   308
  // Flag bits derived from format strings, can_trap, can_rewrite, etc.:
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   309
  enum Flags {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   310
    // semantic flags:
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   311
    _bc_can_trap      = 1<<0,     // bytecode execution can trap or block
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   312
    _bc_can_rewrite   = 1<<1,     // bytecode execution has an alternate form
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   313
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   314
    // format bits (determined only by the format string):
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   315
    _fmt_has_c        = 1<<2,     // constant, such as sipush "bcc"
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   316
    _fmt_has_j        = 1<<3,     // constant pool cache index, such as getfield "bjj"
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   317
    _fmt_has_k        = 1<<4,     // constant pool index, such as ldc "bk"
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   318
    _fmt_has_i        = 1<<5,     // local index, such as iload
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   319
    _fmt_has_o        = 1<<6,     // offset, such as ifeq
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   320
    _fmt_has_nbo      = 1<<7,     // contains native-order field(s)
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   321
    _fmt_has_u2       = 1<<8,     // contains double-byte field(s)
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   322
    _fmt_has_u4       = 1<<9,     // contains quad-byte field
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   323
    _fmt_not_variable = 1<<10,    // not of variable length (simple or wide)
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   324
    _fmt_not_simple   = 1<<11,    // either wide or variable length
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   325
    _all_fmt_bits     = (_fmt_not_simple*2 - _fmt_has_c),
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   326
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   327
    // Example derived format syndromes:
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   328
    _fmt_b      = _fmt_not_variable,
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   329
    _fmt_bc     = _fmt_b | _fmt_has_c,
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   330
    _fmt_bi     = _fmt_b | _fmt_has_i,
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   331
    _fmt_bkk    = _fmt_b | _fmt_has_k | _fmt_has_u2,
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   332
    _fmt_bJJ    = _fmt_b | _fmt_has_j | _fmt_has_u2 | _fmt_has_nbo,
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   333
    _fmt_bo2    = _fmt_b | _fmt_has_o | _fmt_has_u2,
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   334
    _fmt_bo4    = _fmt_b | _fmt_has_o | _fmt_has_u4
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   335
  };
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   336
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  static bool        _is_initialized;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  static const char* _name          [number_of_codes];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  static BasicType   _result_type   [number_of_codes];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  static s_char      _depth         [number_of_codes];
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   342
  static u_char      _lengths       [number_of_codes];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  static Code        _java_code     [number_of_codes];
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   344
  static jchar       _flags         [(1<<BitsPerByte)*2]; // all second page for wide formats
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  static void        def(Code code, const char* name, const char* format, const char* wide_format, BasicType result_type, int depth, bool can_trap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  static void        def(Code code, const char* name, const char* format, const char* wide_format, BasicType result_type, int depth, bool can_trap, Code java_code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  static void        pd_initialize();              // platform specific initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  static Code        pd_base_code_for(Code code);  // platform specific base_code_for implementation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   351
  // Verify that bcp points into method
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   352
#ifdef ASSERT
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   353
  static bool        check_method(const methodOopDesc* method, address bcp);
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   354
#endif
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   355
  static bool check_must_rewrite(Bytecodes::Code bc);
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   356
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  // Conversion
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  static void        check          (Code code)    { assert(is_defined(code), "illegal code"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  static void        wide_check     (Code code)    { assert(wide_is_defined(code), "illegal code"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  static Code        cast           (int  code)    { return (Code)code; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   364
  // Fetch a bytecode, hiding breakpoints as necessary.  The method
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   365
  // argument is used for conversion of breakpoints into the original
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   366
  // bytecode.  The CI uses these methods but guarantees that
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   367
  // breakpoints are hidden so the method argument should be passed as
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   368
  // NULL since in that case the bcp and methodOop are unrelated
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   369
  // memory.
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   370
  static Code       code_at(const methodOopDesc* method, address bcp) {
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   371
    assert(method == NULL || check_method(method, bcp), "bcp must point into method");
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   372
    Code code = cast(*bcp);
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   373
    assert(code != _breakpoint || method != NULL, "need methodOop to decode breakpoint");
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   374
    return (code != _breakpoint) ? code : non_breakpoint_code_at(method, bcp);
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   375
  }
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   376
  static Code       java_code_at(const methodOopDesc* method, address bcp) {
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   377
    return java_code(code_at(method, bcp));
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   378
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   380
  // Fetch a bytecode or a breakpoint:
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   381
  static Code       code_or_bp_at(address bcp)    { return (Code)cast(*bcp); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   383
  static Code       code_at(methodOop method, int bci);
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   384
  static bool       is_active_breakpoint_at(address bcp) { return (Code)*bcp == _breakpoint; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   386
  // find a bytecode, behind a breakpoint if necessary:
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   387
  static Code       non_breakpoint_code_at(const methodOopDesc* method, address bcp);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  // Bytecode attributes
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   390
  static bool        is_defined     (int  code)    { return 0 <= code && code < number_of_codes && flags(code, false) != 0; }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   391
  static bool        wide_is_defined(int  code)    { return is_defined(code) && flags(code, true) != 0; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  static const char* name           (Code code)    { check(code);      return _name          [code]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  static BasicType   result_type    (Code code)    { check(code);      return _result_type   [code]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  static int         depth          (Code code)    { check(code);      return _depth         [code]; }
5693
3015c564fcbc 6956164: nightly regressions from 6939207
jrose
parents: 5688
diff changeset
   395
  // Note: Length functions must return <=0 for invalid bytecodes.
3015c564fcbc 6956164: nightly regressions from 6939207
jrose
parents: 5688
diff changeset
   396
  // Calling check(code) in length functions would throw an unwanted assert.
3015c564fcbc 6956164: nightly regressions from 6939207
jrose
parents: 5688
diff changeset
   397
  static int         length_for     (Code code)    { /*no check*/      return _lengths       [code] & 0xF; }
3015c564fcbc 6956164: nightly regressions from 6939207
jrose
parents: 5688
diff changeset
   398
  static int         wide_length_for(Code code)    { /*no check*/      return _lengths       [code] >> 4; }
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   399
  static bool        can_trap       (Code code)    { check(code);      return has_all_flags(code, _bc_can_trap, false); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  static Code        java_code      (Code code)    { check(code);      return _java_code     [code]; }
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   401
  static bool        can_rewrite    (Code code)    { check(code);      return has_all_flags(code, _bc_can_rewrite, false); }
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   402
  static bool        must_rewrite(Bytecodes::Code code) { return can_rewrite(code) && check_must_rewrite(code); }
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   403
  static bool        native_byte_order(Code code)  { check(code);      return has_all_flags(code, _fmt_has_nbo, false); }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   404
  static bool        uses_cp_cache  (Code code)    { check(code);      return has_all_flags(code, _fmt_has_j, false); }
1493
7d2dc5fbfa8c 6756528: Bytecodes::special_length_at reads past end of code buffer
kamg
parents: 1
diff changeset
   405
  // if 'end' is provided, it indicates the end of the code buffer which
7d2dc5fbfa8c 6756528: Bytecodes::special_length_at reads past end of code buffer
kamg
parents: 1
diff changeset
   406
  // should not be read past when parsing.
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   407
  static int         special_length_at(Bytecodes::Code code, address bcp, address end = NULL);
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   408
  static int         special_length_at(methodOop method, address bcp, address end = NULL) { return special_length_at(code_at(method, bcp), bcp, end); }
1493
7d2dc5fbfa8c 6756528: Bytecodes::special_length_at reads past end of code buffer
kamg
parents: 1
diff changeset
   409
  static int         raw_special_length_at(address bcp, address end = NULL);
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   410
  static int         length_for_code_at(Bytecodes::Code code, address bcp)  { int l = length_for(code); return l > 0 ? l : special_length_at(code, bcp); }
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   411
  static int         length_at      (methodOop method, address bcp)  { return length_for_code_at(code_at(method, bcp), bcp); }
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   412
  static int         java_length_at (methodOop method, address bcp)  { return length_for_code_at(java_code_at(method, bcp), bcp); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  static bool        is_java_code   (Code code)    { return 0 <= code && code < number_of_java_codes; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  static bool        is_aload       (Code code)    { return (code == _aload  || code == _aload_0  || code == _aload_1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
                                                                             || code == _aload_2  || code == _aload_3); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  static bool        is_astore      (Code code)    { return (code == _astore || code == _astore_0 || code == _astore_1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
                                                                             || code == _astore_2 || code == _astore_3); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  static bool        is_zero_const  (Code code)    { return (code == _aconst_null || code == _iconst_0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
                                                           || code == _fconst_0 || code == _dconst_0); }
10506
575ad9bccff5 7078382: JSR 292: don't count method handle adapters against inlining budgets
twisti
parents: 8107
diff changeset
   422
  static bool        is_invoke      (Code code)    { return (_invokevirtual <= code && code <= _invokedynamic); }
575ad9bccff5 7078382: JSR 292: don't count method handle adapters against inlining budgets
twisti
parents: 8107
diff changeset
   423
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   424
  static int         compute_flags  (const char* format, int more_flags = 0);  // compute the flags
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   425
  static int         flags          (int code, bool is_wide) {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   426
    assert(code == (u_char)code, "must be a byte");
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   427
    return _flags[code + (is_wide ? (1<<BitsPerByte) : 0)];
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   428
  }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   429
  static int         format_bits    (Code code, bool is_wide) { return flags(code, is_wide) & _all_fmt_bits; }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   430
  static bool        has_all_flags  (Code code, int test_flags, bool is_wide) {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   431
    return (flags(code, is_wide) & test_flags) == test_flags;
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   432
  }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 3261
diff changeset
   433
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  // Initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  static void        initialize     ();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
   437
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
   438
#endif // SHARE_VM_INTERPRETER_BYTECODES_HPP