hotspot/src/cpu/sparc/vm/sparc.ad
author twisti
Tue, 21 Apr 2009 11:16:30 -0700
changeset 2571 d602ad6538bd
parent 2348 4e71ed4c2709
child 2576 a3babdbbca51
permissions -rw-r--r--
6822110: Add AddressLiteral class on SPARC Summary: The Address class on SPARC currently handles both, addresses and address literals, what makes the Address class more complicated than it has to be. Reviewed-by: never, kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
//
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
     2
// Copyright 1998-2009 Sun Microsystems, Inc.  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
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
// Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
// CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
// have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
// SPARC Architecture Description File
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
//----------REGISTER DEFINITION BLOCK------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
// This information is used by the matcher and the register allocator to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
// describe individual registers and classes of registers within the target
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// archtecture.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
register %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
//----------Architecture Description Register Definitions----------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// General Registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// "reg_def"  name ( register save type, C convention save type,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
//                   ideal register type, encoding, vm name );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// Register Save Types:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// NS  = No-Save:       The register allocator assumes that these registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
//                      can be used without saving upon entry to the method, &
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
//                      that they do not need to be saved at call sites.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// SOC = Save-On-Call:  The register allocator assumes that these registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
//                      can be used without saving upon entry to the method,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
//                      but that they must be saved at call sites.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
// SOE = Save-On-Entry: The register allocator assumes that these registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
//                      must be saved before using them upon entry to the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
//                      method, but they do not need to be saved at call
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
//                      sites.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
// AS  = Always-Save:   The register allocator assumes that these registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
//                      must be saved before using them upon entry to the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
//                      method, & that they must be saved at call sites.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
// Ideal Register Type is used to determine how to save & restore a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
// register.  Op_RegI will get spilled with LoadI/StoreI, Op_RegP will get
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
// spilled with LoadP/StoreP.  If the register supports both, use Op_RegI.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
// The encoding number is the actual bit-pattern placed into the opcodes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
// ----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
// Integer/Long Registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
// ----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
// Need to expose the hi/lo aspect of 64-bit registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
// This register set is used for both the 64-bit build and
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
// the 32-bit build with 1-register longs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
// Global Registers 0-7
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
reg_def R_G0H( NS,  NS, Op_RegI,128, G0->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
reg_def R_G0 ( NS,  NS, Op_RegI,  0, G0->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
reg_def R_G1H(SOC, SOC, Op_RegI,129, G1->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
reg_def R_G1 (SOC, SOC, Op_RegI,  1, G1->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
reg_def R_G2H( NS,  NS, Op_RegI,130, G2->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
reg_def R_G2 ( NS,  NS, Op_RegI,  2, G2->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
reg_def R_G3H(SOC, SOC, Op_RegI,131, G3->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
reg_def R_G3 (SOC, SOC, Op_RegI,  3, G3->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
reg_def R_G4H(SOC, SOC, Op_RegI,132, G4->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
reg_def R_G4 (SOC, SOC, Op_RegI,  4, G4->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
reg_def R_G5H(SOC, SOC, Op_RegI,133, G5->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
reg_def R_G5 (SOC, SOC, Op_RegI,  5, G5->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
reg_def R_G6H( NS,  NS, Op_RegI,134, G6->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
reg_def R_G6 ( NS,  NS, Op_RegI,  6, G6->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
reg_def R_G7H( NS,  NS, Op_RegI,135, G7->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
reg_def R_G7 ( NS,  NS, Op_RegI,  7, G7->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
// Output Registers 0-7
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
reg_def R_O0H(SOC, SOC, Op_RegI,136, O0->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
reg_def R_O0 (SOC, SOC, Op_RegI,  8, O0->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
reg_def R_O1H(SOC, SOC, Op_RegI,137, O1->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
reg_def R_O1 (SOC, SOC, Op_RegI,  9, O1->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
reg_def R_O2H(SOC, SOC, Op_RegI,138, O2->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
reg_def R_O2 (SOC, SOC, Op_RegI, 10, O2->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
reg_def R_O3H(SOC, SOC, Op_RegI,139, O3->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
reg_def R_O3 (SOC, SOC, Op_RegI, 11, O3->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
reg_def R_O4H(SOC, SOC, Op_RegI,140, O4->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
reg_def R_O4 (SOC, SOC, Op_RegI, 12, O4->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
reg_def R_O5H(SOC, SOC, Op_RegI,141, O5->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
reg_def R_O5 (SOC, SOC, Op_RegI, 13, O5->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
reg_def R_SPH( NS,  NS, Op_RegI,142, SP->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
reg_def R_SP ( NS,  NS, Op_RegI, 14, SP->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
reg_def R_O7H(SOC, SOC, Op_RegI,143, O7->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
reg_def R_O7 (SOC, SOC, Op_RegI, 15, O7->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
// Local Registers 0-7
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
reg_def R_L0H( NS,  NS, Op_RegI,144, L0->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
reg_def R_L0 ( NS,  NS, Op_RegI, 16, L0->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
reg_def R_L1H( NS,  NS, Op_RegI,145, L1->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
reg_def R_L1 ( NS,  NS, Op_RegI, 17, L1->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
reg_def R_L2H( NS,  NS, Op_RegI,146, L2->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
reg_def R_L2 ( NS,  NS, Op_RegI, 18, L2->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
reg_def R_L3H( NS,  NS, Op_RegI,147, L3->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
reg_def R_L3 ( NS,  NS, Op_RegI, 19, L3->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
reg_def R_L4H( NS,  NS, Op_RegI,148, L4->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
reg_def R_L4 ( NS,  NS, Op_RegI, 20, L4->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
reg_def R_L5H( NS,  NS, Op_RegI,149, L5->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
reg_def R_L5 ( NS,  NS, Op_RegI, 21, L5->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
reg_def R_L6H( NS,  NS, Op_RegI,150, L6->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
reg_def R_L6 ( NS,  NS, Op_RegI, 22, L6->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
reg_def R_L7H( NS,  NS, Op_RegI,151, L7->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
reg_def R_L7 ( NS,  NS, Op_RegI, 23, L7->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
// Input Registers 0-7
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
reg_def R_I0H( NS,  NS, Op_RegI,152, I0->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
reg_def R_I0 ( NS,  NS, Op_RegI, 24, I0->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
reg_def R_I1H( NS,  NS, Op_RegI,153, I1->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
reg_def R_I1 ( NS,  NS, Op_RegI, 25, I1->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
reg_def R_I2H( NS,  NS, Op_RegI,154, I2->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
reg_def R_I2 ( NS,  NS, Op_RegI, 26, I2->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
reg_def R_I3H( NS,  NS, Op_RegI,155, I3->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
reg_def R_I3 ( NS,  NS, Op_RegI, 27, I3->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
reg_def R_I4H( NS,  NS, Op_RegI,156, I4->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
reg_def R_I4 ( NS,  NS, Op_RegI, 28, I4->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
reg_def R_I5H( NS,  NS, Op_RegI,157, I5->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
reg_def R_I5 ( NS,  NS, Op_RegI, 29, I5->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
reg_def R_FPH( NS,  NS, Op_RegI,158, FP->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
reg_def R_FP ( NS,  NS, Op_RegI, 30, FP->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
reg_def R_I7H( NS,  NS, Op_RegI,159, I7->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
reg_def R_I7 ( NS,  NS, Op_RegI, 31, I7->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
// ----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
// Float/Double Registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
// ----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
// Float Registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
reg_def R_F0 ( SOC, SOC, Op_RegF,  0, F0->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
reg_def R_F1 ( SOC, SOC, Op_RegF,  1, F1->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
reg_def R_F2 ( SOC, SOC, Op_RegF,  2, F2->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
reg_def R_F3 ( SOC, SOC, Op_RegF,  3, F3->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
reg_def R_F4 ( SOC, SOC, Op_RegF,  4, F4->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
reg_def R_F5 ( SOC, SOC, Op_RegF,  5, F5->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
reg_def R_F6 ( SOC, SOC, Op_RegF,  6, F6->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
reg_def R_F7 ( SOC, SOC, Op_RegF,  7, F7->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
reg_def R_F8 ( SOC, SOC, Op_RegF,  8, F8->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
reg_def R_F9 ( SOC, SOC, Op_RegF,  9, F9->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
reg_def R_F10( SOC, SOC, Op_RegF, 10, F10->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
reg_def R_F11( SOC, SOC, Op_RegF, 11, F11->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
reg_def R_F12( SOC, SOC, Op_RegF, 12, F12->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
reg_def R_F13( SOC, SOC, Op_RegF, 13, F13->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
reg_def R_F14( SOC, SOC, Op_RegF, 14, F14->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
reg_def R_F15( SOC, SOC, Op_RegF, 15, F15->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
reg_def R_F16( SOC, SOC, Op_RegF, 16, F16->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
reg_def R_F17( SOC, SOC, Op_RegF, 17, F17->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
reg_def R_F18( SOC, SOC, Op_RegF, 18, F18->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
reg_def R_F19( SOC, SOC, Op_RegF, 19, F19->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
reg_def R_F20( SOC, SOC, Op_RegF, 20, F20->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
reg_def R_F21( SOC, SOC, Op_RegF, 21, F21->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
reg_def R_F22( SOC, SOC, Op_RegF, 22, F22->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
reg_def R_F23( SOC, SOC, Op_RegF, 23, F23->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
reg_def R_F24( SOC, SOC, Op_RegF, 24, F24->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
reg_def R_F25( SOC, SOC, Op_RegF, 25, F25->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
reg_def R_F26( SOC, SOC, Op_RegF, 26, F26->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
reg_def R_F27( SOC, SOC, Op_RegF, 27, F27->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
reg_def R_F28( SOC, SOC, Op_RegF, 28, F28->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
reg_def R_F29( SOC, SOC, Op_RegF, 29, F29->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
reg_def R_F30( SOC, SOC, Op_RegF, 30, F30->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
reg_def R_F31( SOC, SOC, Op_RegF, 31, F31->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
// Double Registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
// The rules of ADL require that double registers be defined in pairs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
// Each pair must be two 32-bit values, but not necessarily a pair of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
// single float registers.  In each pair, ADLC-assigned register numbers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
// must be adjacent, with the lower number even.  Finally, when the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
// CPU stores such a register pair to memory, the word associated with
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
// the lower ADLC-assigned number must be stored to the lower address.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
// These definitions specify the actual bit encodings of the sparc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
// double fp register numbers.  FloatRegisterImpl in register_sparc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
// wants 0-63, so we have to convert every time we want to use fp regs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
// with the macroassembler, using reg_to_DoubleFloatRegister_object().
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 2022
diff changeset
   192
// 255 is a flag meaning "don't go here".
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
// I believe we can't handle callee-save doubles D32 and up until
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
// the place in the sparc stack crawler that asserts on the 255 is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
// fixed up.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
reg_def R_D32x(SOC, SOC, Op_RegD,255, F32->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
reg_def R_D32 (SOC, SOC, Op_RegD,  1, F32->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
reg_def R_D34x(SOC, SOC, Op_RegD,255, F34->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
reg_def R_D34 (SOC, SOC, Op_RegD,  3, F34->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
reg_def R_D36x(SOC, SOC, Op_RegD,255, F36->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
reg_def R_D36 (SOC, SOC, Op_RegD,  5, F36->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
reg_def R_D38x(SOC, SOC, Op_RegD,255, F38->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
reg_def R_D38 (SOC, SOC, Op_RegD,  7, F38->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
reg_def R_D40x(SOC, SOC, Op_RegD,255, F40->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
reg_def R_D40 (SOC, SOC, Op_RegD,  9, F40->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
reg_def R_D42x(SOC, SOC, Op_RegD,255, F42->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
reg_def R_D42 (SOC, SOC, Op_RegD, 11, F42->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
reg_def R_D44x(SOC, SOC, Op_RegD,255, F44->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
reg_def R_D44 (SOC, SOC, Op_RegD, 13, F44->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
reg_def R_D46x(SOC, SOC, Op_RegD,255, F46->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
reg_def R_D46 (SOC, SOC, Op_RegD, 15, F46->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
reg_def R_D48x(SOC, SOC, Op_RegD,255, F48->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
reg_def R_D48 (SOC, SOC, Op_RegD, 17, F48->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
reg_def R_D50x(SOC, SOC, Op_RegD,255, F50->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
reg_def R_D50 (SOC, SOC, Op_RegD, 19, F50->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
reg_def R_D52x(SOC, SOC, Op_RegD,255, F52->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
reg_def R_D52 (SOC, SOC, Op_RegD, 21, F52->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
reg_def R_D54x(SOC, SOC, Op_RegD,255, F54->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
reg_def R_D54 (SOC, SOC, Op_RegD, 23, F54->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
reg_def R_D56x(SOC, SOC, Op_RegD,255, F56->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
reg_def R_D56 (SOC, SOC, Op_RegD, 25, F56->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
reg_def R_D58x(SOC, SOC, Op_RegD,255, F58->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
reg_def R_D58 (SOC, SOC, Op_RegD, 27, F58->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
reg_def R_D60x(SOC, SOC, Op_RegD,255, F60->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
reg_def R_D60 (SOC, SOC, Op_RegD, 29, F60->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
reg_def R_D62x(SOC, SOC, Op_RegD,255, F62->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
reg_def R_D62 (SOC, SOC, Op_RegD, 31, F62->as_VMReg()->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
// ----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
// Special Registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
// Condition Codes Flag Registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
// I tried to break out ICC and XCC but it's not very pretty.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
// Every Sparc instruction which defs/kills one also kills the other.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
// Hence every compare instruction which defs one kind of flags ends
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
// up needing a kill of the other.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
reg_def CCR (SOC, SOC,  Op_RegFlags, 0, VMRegImpl::Bad());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
reg_def FCC0(SOC, SOC,  Op_RegFlags, 0, VMRegImpl::Bad());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
reg_def FCC1(SOC, SOC,  Op_RegFlags, 1, VMRegImpl::Bad());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
reg_def FCC2(SOC, SOC,  Op_RegFlags, 2, VMRegImpl::Bad());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
reg_def FCC3(SOC, SOC,  Op_RegFlags, 3, VMRegImpl::Bad());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
// ----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
// Specify the enum values for the registers.  These enums are only used by the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
// OptoReg "class". We can convert these enum values at will to VMReg when needed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
// for visibility to the rest of the vm. The order of this enum influences the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
// register allocator so having the freedom to set this order and not be stuck
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
// with the order that is natural for the rest of the vm is worth it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
alloc_class chunk0(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  R_L0,R_L0H, R_L1,R_L1H, R_L2,R_L2H, R_L3,R_L3H, R_L4,R_L4H, R_L5,R_L5H, R_L6,R_L6H, R_L7,R_L7H,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  R_G0,R_G0H, R_G1,R_G1H, R_G2,R_G2H, R_G3,R_G3H, R_G4,R_G4H, R_G5,R_G5H, R_G6,R_G6H, R_G7,R_G7H,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  R_O7,R_O7H, R_SP,R_SPH, R_O0,R_O0H, R_O1,R_O1H, R_O2,R_O2H, R_O3,R_O3H, R_O4,R_O4H, R_O5,R_O5H,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  R_I0,R_I0H, R_I1,R_I1H, R_I2,R_I2H, R_I3,R_I3H, R_I4,R_I4H, R_I5,R_I5H, R_FP,R_FPH, R_I7,R_I7H);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
// Note that a register is not allocatable unless it is also mentioned
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
// in a widely-used reg_class below.  Thus, R_G7 and R_G0 are outside i_reg.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
alloc_class chunk1(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  // The first registers listed here are those most likely to be used
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  // as temporaries.  We move F0..F7 away from the front of the list,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  // to reduce the likelihood of interferences with parameters and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  // return values.  Likewise, we avoid using F0/F1 for parameters,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  // since they are used for return values.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  // This FPU fine-tuning is worth about 1% on the SPEC geomean.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  R_F8 ,R_F9 ,R_F10,R_F11,R_F12,R_F13,R_F14,R_F15,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  R_F16,R_F17,R_F18,R_F19,R_F20,R_F21,R_F22,R_F23,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  R_F24,R_F25,R_F26,R_F27,R_F28,R_F29,R_F30,R_F31,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  R_F0 ,R_F1 ,R_F2 ,R_F3 ,R_F4 ,R_F5 ,R_F6 ,R_F7 , // used for arguments and return values
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  R_D32,R_D32x,R_D34,R_D34x,R_D36,R_D36x,R_D38,R_D38x,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  R_D40,R_D40x,R_D42,R_D42x,R_D44,R_D44x,R_D46,R_D46x,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  R_D48,R_D48x,R_D50,R_D50x,R_D52,R_D52x,R_D54,R_D54x,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  R_D56,R_D56x,R_D58,R_D58x,R_D60,R_D60x,R_D62,R_D62x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
alloc_class chunk2(CCR, FCC0, FCC1, FCC2, FCC3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
//----------Architecture Description Register Classes--------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
// Several register classes are automatically defined based upon information in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
// this architecture description.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
// 1) reg_class inline_cache_reg           ( as defined in frame section )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
// 2) reg_class interpreter_method_oop_reg ( as defined in frame section )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
// 3) reg_class stack_slots( /* one chunk of stack-based "registers" */ )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
// G0 is not included in integer class since it has special meaning.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
reg_class g0_reg(R_G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
// ----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
// Integer Register Classes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
// ----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
// Exclusions from i_reg:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
// R_G0: hardwired zero
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
// R_G2: reserved by HotSpot to the TLS register (invariant within Java)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
// R_G6: reserved by Solaris ABI to tools
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
// R_G7: reserved by Solaris ABI to libthread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
// R_O7: Used as a temp in many encodings
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
reg_class int_reg(R_G1,R_G3,R_G4,R_G5,R_O0,R_O1,R_O2,R_O3,R_O4,R_O5,R_L0,R_L1,R_L2,R_L3,R_L4,R_L5,R_L6,R_L7,R_I0,R_I1,R_I2,R_I3,R_I4,R_I5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
// Class for all integer registers, except the G registers.  This is used for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
// encodings which use G registers as temps.  The regular inputs to such
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
// instructions use a "notemp_" prefix, as a hack to ensure that the allocator
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
// will not put an input into a temp register.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
reg_class notemp_int_reg(R_O0,R_O1,R_O2,R_O3,R_O4,R_O5,R_L0,R_L1,R_L2,R_L3,R_L4,R_L5,R_L6,R_L7,R_I0,R_I1,R_I2,R_I3,R_I4,R_I5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
reg_class g1_regI(R_G1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
reg_class g3_regI(R_G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
reg_class g4_regI(R_G4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
reg_class o0_regI(R_O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
reg_class o7_regI(R_O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
// ----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
// Pointer Register Classes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
// ----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
// 64-bit build means 64-bit pointers means hi/lo pairs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
reg_class ptr_reg(            R_G1H,R_G1,             R_G3H,R_G3, R_G4H,R_G4, R_G5H,R_G5,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
                  R_O0H,R_O0, R_O1H,R_O1, R_O2H,R_O2, R_O3H,R_O3, R_O4H,R_O4, R_O5H,R_O5,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
                  R_L0H,R_L0, R_L1H,R_L1, R_L2H,R_L2, R_L3H,R_L3, R_L4H,R_L4, R_L5H,R_L5, R_L6H,R_L6, R_L7H,R_L7,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
                  R_I0H,R_I0, R_I1H,R_I1, R_I2H,R_I2, R_I3H,R_I3, R_I4H,R_I4, R_I5H,R_I5 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
// Lock encodings use G3 and G4 internally
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
reg_class lock_ptr_reg(       R_G1H,R_G1,                                     R_G5H,R_G5,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
                  R_O0H,R_O0, R_O1H,R_O1, R_O2H,R_O2, R_O3H,R_O3, R_O4H,R_O4, R_O5H,R_O5,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
                  R_L0H,R_L0, R_L1H,R_L1, R_L2H,R_L2, R_L3H,R_L3, R_L4H,R_L4, R_L5H,R_L5, R_L6H,R_L6, R_L7H,R_L7,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
                  R_I0H,R_I0, R_I1H,R_I1, R_I2H,R_I2, R_I3H,R_I3, R_I4H,R_I4, R_I5H,R_I5 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
// Special class for storeP instructions, which can store SP or RPC to TLS.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
// It is also used for memory addressing, allowing direct TLS addressing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
reg_class sp_ptr_reg(         R_G1H,R_G1, R_G2H,R_G2, R_G3H,R_G3, R_G4H,R_G4, R_G5H,R_G5,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
                  R_O0H,R_O0, R_O1H,R_O1, R_O2H,R_O2, R_O3H,R_O3, R_O4H,R_O4, R_O5H,R_O5, R_SPH,R_SP,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
                  R_L0H,R_L0, R_L1H,R_L1, R_L2H,R_L2, R_L3H,R_L3, R_L4H,R_L4, R_L5H,R_L5, R_L6H,R_L6, R_L7H,R_L7,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
                  R_I0H,R_I0, R_I1H,R_I1, R_I2H,R_I2, R_I3H,R_I3, R_I4H,R_I4, R_I5H,R_I5, R_FPH,R_FP );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
// R_L7 is the lowest-priority callee-save (i.e., NS) register
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
// We use it to save R_G2 across calls out of Java.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
reg_class l7_regP(R_L7H,R_L7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
// Other special pointer regs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
reg_class g1_regP(R_G1H,R_G1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
reg_class g2_regP(R_G2H,R_G2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
reg_class g3_regP(R_G3H,R_G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
reg_class g4_regP(R_G4H,R_G4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
reg_class g5_regP(R_G5H,R_G5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
reg_class i0_regP(R_I0H,R_I0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
reg_class o0_regP(R_O0H,R_O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
reg_class o1_regP(R_O1H,R_O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
reg_class o2_regP(R_O2H,R_O2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
reg_class o7_regP(R_O7H,R_O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
#else // _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
// 32-bit build means 32-bit pointers means 1 register.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
reg_class ptr_reg(     R_G1,     R_G3,R_G4,R_G5,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
                  R_O0,R_O1,R_O2,R_O3,R_O4,R_O5,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
                  R_L0,R_L1,R_L2,R_L3,R_L4,R_L5,R_L6,R_L7,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
                  R_I0,R_I1,R_I2,R_I3,R_I4,R_I5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
// Lock encodings use G3 and G4 internally
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
reg_class lock_ptr_reg(R_G1,               R_G5,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
                  R_O0,R_O1,R_O2,R_O3,R_O4,R_O5,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
                  R_L0,R_L1,R_L2,R_L3,R_L4,R_L5,R_L6,R_L7,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
                  R_I0,R_I1,R_I2,R_I3,R_I4,R_I5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
// Special class for storeP instructions, which can store SP or RPC to TLS.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
// It is also used for memory addressing, allowing direct TLS addressing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
reg_class sp_ptr_reg(  R_G1,R_G2,R_G3,R_G4,R_G5,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
                  R_O0,R_O1,R_O2,R_O3,R_O4,R_O5,R_SP,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
                  R_L0,R_L1,R_L2,R_L3,R_L4,R_L5,R_L6,R_L7,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
                  R_I0,R_I1,R_I2,R_I3,R_I4,R_I5,R_FP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
// R_L7 is the lowest-priority callee-save (i.e., NS) register
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
// We use it to save R_G2 across calls out of Java.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
reg_class l7_regP(R_L7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
// Other special pointer regs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
reg_class g1_regP(R_G1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
reg_class g2_regP(R_G2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
reg_class g3_regP(R_G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
reg_class g4_regP(R_G4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
reg_class g5_regP(R_G5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
reg_class i0_regP(R_I0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
reg_class o0_regP(R_O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
reg_class o1_regP(R_O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
reg_class o2_regP(R_O2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
reg_class o7_regP(R_O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
#endif // _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
// ----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
// Long Register Classes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
// ----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
// Longs in 1 register.  Aligned adjacent hi/lo pairs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
// Note:  O7 is never in this class; it is sometimes used as an encoding temp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
reg_class long_reg(             R_G1H,R_G1,             R_G3H,R_G3, R_G4H,R_G4, R_G5H,R_G5
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
                   ,R_O0H,R_O0, R_O1H,R_O1, R_O2H,R_O2, R_O3H,R_O3, R_O4H,R_O4, R_O5H,R_O5
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
// 64-bit, longs in 1 register: use all 64-bit integer registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
// 32-bit, longs in 1 register: cannot use I's and L's.  Restrict to O's and G's.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
                   ,R_L0H,R_L0, R_L1H,R_L1, R_L2H,R_L2, R_L3H,R_L3, R_L4H,R_L4, R_L5H,R_L5, R_L6H,R_L6, R_L7H,R_L7
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
                   ,R_I0H,R_I0, R_I1H,R_I1, R_I2H,R_I2, R_I3H,R_I3, R_I4H,R_I4, R_I5H,R_I5
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
#endif // _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
                  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
reg_class g1_regL(R_G1H,R_G1);
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
   398
reg_class g3_regL(R_G3H,R_G3);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
reg_class o2_regL(R_O2H,R_O2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
reg_class o7_regL(R_O7H,R_O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
// ----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
// Special Class for Condition Code Flags Register
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
reg_class int_flags(CCR);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
reg_class float_flags(FCC0,FCC1,FCC2,FCC3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
reg_class float_flag0(FCC0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
// ----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
// Float Point Register Classes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
// ----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
// Skip F30/F31, they are reserved for mem-mem copies
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
reg_class sflt_reg(R_F0,R_F1,R_F2,R_F3,R_F4,R_F5,R_F6,R_F7,R_F8,R_F9,R_F10,R_F11,R_F12,R_F13,R_F14,R_F15,R_F16,R_F17,R_F18,R_F19,R_F20,R_F21,R_F22,R_F23,R_F24,R_F25,R_F26,R_F27,R_F28,R_F29);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
// Paired floating point registers--they show up in the same order as the floats,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
// but they are used with the "Op_RegD" type, and always occur in even/odd pairs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
reg_class dflt_reg(R_F0, R_F1, R_F2, R_F3, R_F4, R_F5, R_F6, R_F7, R_F8, R_F9, R_F10,R_F11,R_F12,R_F13,R_F14,R_F15,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
                   R_F16,R_F17,R_F18,R_F19,R_F20,R_F21,R_F22,R_F23,R_F24,R_F25,R_F26,R_F27,R_F28,R_F29,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
                   /* Use extra V9 double registers; this AD file does not support V8 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
                   R_D32,R_D32x,R_D34,R_D34x,R_D36,R_D36x,R_D38,R_D38x,R_D40,R_D40x,R_D42,R_D42x,R_D44,R_D44x,R_D46,R_D46x,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
                   R_D48,R_D48x,R_D50,R_D50x,R_D52,R_D52x,R_D54,R_D54x,R_D56,R_D56x,R_D58,R_D58x,R_D60,R_D60x,R_D62,R_D62x
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
                   );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
// Paired floating point registers--they show up in the same order as the floats,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
// but they are used with the "Op_RegD" type, and always occur in even/odd pairs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
// This class is usable for mis-aligned loads as happen in I2C adapters.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
reg_class dflt_low_reg(R_F0, R_F1, R_F2, R_F3, R_F4, R_F5, R_F6, R_F7, R_F8, R_F9, R_F10,R_F11,R_F12,R_F13,R_F14,R_F15,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
                   R_F16,R_F17,R_F18,R_F19,R_F20,R_F21,R_F22,R_F23,R_F24,R_F25,R_F26,R_F27,R_F28,R_F29,R_F30,R_F31 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
//----------DEFINITION BLOCK---------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
// Define name --> value mappings to inform the ADLC of an integer valued name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
// Current support includes integer values in the range [0, 0x7FFFFFFF]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
// Format:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
//        int_def  <name>         ( <int_value>, <expression>);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
// Generated Code in ad_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
//        #define  <name>   (<expression>)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
//        // value == <int_value>
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
// Generated code in ad_<arch>.cpp adlc_verification()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
//        assert( <name> == <int_value>, "Expect (<expression>) to equal <int_value>");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
definitions %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
// The default cost (of an ALU instruction).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  int_def DEFAULT_COST      (    100,     100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  int_def HUGE_COST         (1000000, 1000000);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
// Memory refs are twice as expensive as run-of-the-mill.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
  int_def MEMORY_REF_COST   (    200, DEFAULT_COST * 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
// Branches are even more expensive.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  int_def BRANCH_COST       (    300, DEFAULT_COST * 3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  int_def CALL_COST         (    300, DEFAULT_COST * 3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
//----------SOURCE BLOCK-------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
// This is a block of C++ code which provides values, functions, and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
// definitions necessary in the rest of the architecture description
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
source_hpp %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
// Must be visible to the DFA in dfa_sparc.cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
extern bool can_branch_register( Node *bol, Node *cmp );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
// Macros to extract hi & lo halves from a long pair.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
// G0 is not part of any long pair, so assert on that.
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 2022
diff changeset
   465
// Prevents accidentally using G1 instead of G0.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
#define LONG_HI_REG(x) (x)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
#define LONG_LO_REG(x) (x)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
source %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
#define __ _masm.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
// tertiary op of a LoadP or StoreP encoding
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
#define REGP_OP true
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
static FloatRegister reg_to_SingleFloatRegister_object(int register_encoding);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
static FloatRegister reg_to_DoubleFloatRegister_object(int register_encoding);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
static Register reg_to_register_object(int register_encoding);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
// Used by the DFA in dfa_sparc.cpp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
// Check for being able to use a V9 branch-on-register.  Requires a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
// compare-vs-zero, equal/not-equal, of a value which was zero- or sign-
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
// extended.  Doesn't work following an integer ADD, for example, because of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
// overflow (-1 incremented yields 0 plus a carry in the high-order word).  On
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
// 32-bit V9 systems, interrupts currently blow away the high-order 32 bits and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
// replace them with zero, which could become sign-extension in a different OS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
// release.  There's no obvious reason why an interrupt will ever fill these
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
// bits with non-zero junk (the registers are reloaded with standard LD
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
// instructions which either zero-fill or sign-fill).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
bool can_branch_register( Node *bol, Node *cmp ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
  if( !BranchOnRegister ) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  if( cmp->Opcode() == Op_CmpP )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
    return true;  // No problems with pointer compares
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  if( cmp->Opcode() == Op_CmpL )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
    return true;  // No problems with long compares
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  if( !SparcV9RegsHiBitsZero ) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
  if( bol->as_Bool()->_test._test != BoolTest::ne &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
      bol->as_Bool()->_test._test != BoolTest::eq )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
     return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
  // Check for comparing against a 'safe' value.  Any operation which
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  // clears out the high word is safe.  Thus, loads and certain shifts
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
  // are safe, as are non-negative constants.  Any operation which
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  // preserves zero bits in the high word is safe as long as each of its
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
  // inputs are safe.  Thus, phis and bitwise booleans are safe if their
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
  // inputs are safe.  At present, the only important case to recognize
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  // seems to be loads.  Constants should fold away, and shifts &
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  // logicals can use the 'cc' forms.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
  Node *x = cmp->in(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  if( x->is_Load() ) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  if( x->is_Phi() ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
    for( uint i = 1; i < x->req(); i++ )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
      if( !x->in(i)->is_Load() )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
        return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
// ****************************************************************************
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
// REQUIRED FUNCTIONALITY
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
// !!!!! Special hack to get all type of calls to specify the byte offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
//       from the start of the call to the point where the return address
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
//       will point.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
//       The "return address" is the address of the call instruction, plus 8.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
int MachCallStaticJavaNode::ret_addr_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
  return NativeCall::instruction_size;  // call; delay slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
int MachCallDynamicJavaNode::ret_addr_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
  int vtable_index = this->_vtable_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  if (vtable_index < 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
    // must be invalid_vtable_index, not nonvirtual_vtable_index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
    assert(vtable_index == methodOopDesc::invalid_vtable_index, "correct sentinel value");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
    return (NativeMovConstReg::instruction_size +
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
           NativeCall::instruction_size);  // sethi; setlo; call; delay slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
    assert(!UseInlineCaches, "expect vtable calls only if not using ICs");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
    int entry_offset = instanceKlass::vtable_start_offset() + vtable_index*vtableEntry::size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
    int v_off = entry_offset*wordSize + vtableEntry::method_offset_in_bytes();
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
   548
    int klass_load_size;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
   549
    if (UseCompressedOops) {
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2150
diff changeset
   550
      assert(Universe::heap() != NULL, "java heap should be initialized");
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2150
diff changeset
   551
      if (Universe::narrow_oop_base() == NULL)
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2150
diff changeset
   552
        klass_load_size = 2*BytesPerInstWord; // see MacroAssembler::load_klass()
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2150
diff changeset
   553
      else
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2150
diff changeset
   554
        klass_load_size = 3*BytesPerInstWord;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
   555
    } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
   556
      klass_load_size = 1*BytesPerInstWord;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
   557
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
    if( Assembler::is_simm13(v_off) ) {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
   559
      return klass_load_size +
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
   560
             (2*BytesPerInstWord +           // ld_ptr, ld_ptr
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
             NativeCall::instruction_size);  // call; delay slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
    } else {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
   563
      return klass_load_size +
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
   564
             (4*BytesPerInstWord +           // set_hi, set, ld_ptr, ld_ptr
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
             NativeCall::instruction_size);  // call; delay slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
int MachCallRuntimeNode::ret_addr_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
  return NativeFarCall::instruction_size;  // farcall; delay slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
  return NativeCall::instruction_size;  // call; delay slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
// Indicate if the safepoint node needs the polling page as an input.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
// Since Sparc does not have absolute addressing, it does.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
bool SafePointNode::needs_polling_address_input() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
// emit an interrupt that is caught by the debugger (for debugging compiler)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
void emit_break(CodeBuffer &cbuf) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
  MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
  __ breakpoint_trap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
void MachBreakpointNode::format( PhaseRegAlloc *, outputStream *st ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  st->print("TA");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
void MachBreakpointNode::emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
  emit_break(cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
uint MachBreakpointNode::size(PhaseRegAlloc *ra_) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
  return MachNode::size(ra_);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
// Traceable jump
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
void  emit_jmpl(CodeBuffer &cbuf, int jump_target) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
  MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  Register rdest = reg_to_register_object(jump_target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
  __ JMP(rdest, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
  __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
// Traceable jump and set exception pc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
void  emit_jmpl_set_exception_pc(CodeBuffer &cbuf, int jump_target) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
  MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
  Register rdest = reg_to_register_object(jump_target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  __ JMP(rdest, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
  __ delayed()->add(O7, frame::pc_return_offset, Oissuing_pc );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
void emit_nop(CodeBuffer &cbuf) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
  MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
  __ nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
void emit_illtrap(CodeBuffer &cbuf) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
  MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
  __ illtrap(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
intptr_t get_offset_from_base(const MachNode* n, const TypePtr* atype, int disp32) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
  assert(n->rule() != loadUB_rule, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
  intptr_t offset = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
  const TypePtr *adr_type = TYPE_PTR_SENTINAL;  // Check for base==RegI, disp==immP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
  const Node* addr = n->get_base_and_disp(offset, adr_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
  assert(adr_type == (const TypePtr*)-1, "VerifyOops: no support for sparc operands with base==RegI, disp==immP");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
  assert(addr != NULL && addr != (Node*)-1, "invalid addr");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
  assert(addr->bottom_type()->isa_oopptr() == atype, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
  atype = atype->add_offset(offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
  assert(disp32 == offset, "wrong disp32");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
  return atype->_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
intptr_t get_offset_from_base_2(const MachNode* n, const TypePtr* atype, int disp32) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
  assert(n->rule() != loadUB_rule, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  intptr_t offset = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
  Node* addr = n->in(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
  assert(addr->bottom_type()->isa_oopptr() == atype, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
  if (addr->is_Mach() && addr->as_Mach()->ideal_Opcode() == Op_AddP) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
    Node* a = addr->in(2/*AddPNode::Address*/);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
    Node* o = addr->in(3/*AddPNode::Offset*/);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
    offset = o->is_Con() ? o->bottom_type()->is_intptr_t()->get_con() : Type::OffsetBot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
    atype = a->bottom_type()->is_ptr()->add_offset(offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
    assert(atype->isa_oop_ptr(), "still an oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
  offset = atype->is_ptr()->_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
  if (offset != Type::OffsetBot)  offset += disp32;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
  return offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
// Standard Sparc opcode form2 field breakdown
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
static inline void emit2_19(CodeBuffer &cbuf, int f30, int f29, int f25, int f22, int f20, int f19, int f0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
  f0 &= (1<<19)-1;     // Mask displacement to 19 bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
  int op = (f30 << 30) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
           (f29 << 29) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
           (f25 << 25) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
           (f22 << 22) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
           (f20 << 20) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
           (f19 << 19) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
           (f0  <<  0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
  *((int*)(cbuf.code_end())) = op;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
  cbuf.set_code_end(cbuf.code_end() + BytesPerInstWord);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
// Standard Sparc opcode form2 field breakdown
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
static inline void emit2_22(CodeBuffer &cbuf, int f30, int f25, int f22, int f0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
  f0 >>= 10;           // Drop 10 bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
  f0 &= (1<<22)-1;     // Mask displacement to 22 bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
  int op = (f30 << 30) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
           (f25 << 25) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
           (f22 << 22) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
           (f0  <<  0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
  *((int*)(cbuf.code_end())) = op;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
  cbuf.set_code_end(cbuf.code_end() + BytesPerInstWord);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
// Standard Sparc opcode form3 field breakdown
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
static inline void emit3(CodeBuffer &cbuf, int f30, int f25, int f19, int f14, int f5, int f0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
  int op = (f30 << 30) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
           (f25 << 25) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
           (f19 << 19) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
           (f14 << 14) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
           (f5  <<  5) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
           (f0  <<  0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
  *((int*)(cbuf.code_end())) = op;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
  cbuf.set_code_end(cbuf.code_end() + BytesPerInstWord);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
// Standard Sparc opcode form3 field breakdown
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
static inline void emit3_simm13(CodeBuffer &cbuf, int f30, int f25, int f19, int f14, int simm13 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
  simm13 &= (1<<13)-1; // Mask to 13 bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
  int op = (f30 << 30) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
           (f25 << 25) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
           (f19 << 19) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
           (f14 << 14) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
           (1   << 13) | // bit to indicate immediate-mode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
           (simm13<<0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
  *((int*)(cbuf.code_end())) = op;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
  cbuf.set_code_end(cbuf.code_end() + BytesPerInstWord);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
static inline void emit3_simm10(CodeBuffer &cbuf, int f30, int f25, int f19, int f14, int simm10 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
  simm10 &= (1<<10)-1; // Mask to 10 bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
  emit3_simm13(cbuf,f30,f25,f19,f14,simm10);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
// Helper function for VerifyOops in emit_form3_mem_reg
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
void verify_oops_warning(const MachNode *n, int ideal_op, int mem_op) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
  warning("VerifyOops encountered unexpected instruction:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
  n->dump(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
  warning("Instruction has ideal_Opcode==Op_%s and op_ld==Op_%s \n", NodeClassNames[ideal_op], NodeClassNames[mem_op]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
void emit_form3_mem_reg(CodeBuffer &cbuf, const MachNode* n, int primary, int tertiary,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
                        int src1_enc, int disp32, int src2_enc, int dst_enc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
  // The following code implements the +VerifyOops feature.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
  // It verifies oop values which are loaded into or stored out of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
  // the current method activation.  +VerifyOops complements techniques
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
  // like ScavengeALot, because it eagerly inspects oops in transit,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
  // as they enter or leave the stack, as opposed to ScavengeALot,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
  // which inspects oops "at rest", in the stack or heap, at safepoints.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
  // For this reason, +VerifyOops can sometimes detect bugs very close
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
  // to their point of creation.  It can also serve as a cross-check
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
  // on the validity of oop maps, when used toegether with ScavengeALot.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
  // It would be good to verify oops at other points, especially
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
  // when an oop is used as a base pointer for a load or store.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
  // This is presently difficult, because it is hard to know when
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
  // a base address is biased or not.  (If we had such information,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
  // it would be easy and useful to make a two-argument version of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
  // verify_oop which unbiases the base, and performs verification.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
  assert((uint)tertiary == 0xFFFFFFFF || tertiary == REGP_OP, "valid tertiary");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
  bool is_verified_oop_base  = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
  bool is_verified_oop_load  = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
  bool is_verified_oop_store = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
  int tmp_enc = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
  if (VerifyOops && src1_enc != R_SP_enc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
    // classify the op, mainly for an assert check
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
    int st_op = 0, ld_op = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
    switch (primary) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
    case Assembler::stb_op3:  st_op = Op_StoreB; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
    case Assembler::sth_op3:  st_op = Op_StoreC; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
    case Assembler::stx_op3:  // may become StoreP or stay StoreI or StoreD0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
    case Assembler::stw_op3:  st_op = Op_StoreI; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
    case Assembler::std_op3:  st_op = Op_StoreL; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
    case Assembler::stf_op3:  st_op = Op_StoreF; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
    case Assembler::stdf_op3: st_op = Op_StoreD; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
    case Assembler::ldsb_op3: ld_op = Op_LoadB; break;
2022
28ce8115a91d 6796746: rename LoadC (char) opcode class to LoadUS (unsigned short)
twisti
parents: 2015
diff changeset
   769
    case Assembler::lduh_op3: ld_op = Op_LoadUS; break;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
    case Assembler::ldsh_op3: ld_op = Op_LoadS; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
    case Assembler::ldx_op3:  // may become LoadP or stay LoadI
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
    case Assembler::ldsw_op3: // may become LoadP or stay LoadI
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
    case Assembler::lduw_op3: ld_op = Op_LoadI; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
    case Assembler::ldd_op3:  ld_op = Op_LoadL; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
    case Assembler::ldf_op3:  ld_op = Op_LoadF; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
    case Assembler::lddf_op3: ld_op = Op_LoadD; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
    case Assembler::ldub_op3: ld_op = Op_LoadB; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
    case Assembler::prefetch_op3: ld_op = Op_LoadI; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
    default: ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
    if (tertiary == REGP_OP) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
      if      (st_op == Op_StoreI)  st_op = Op_StoreP;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
      else if (ld_op == Op_LoadI)   ld_op = Op_LoadP;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
      else                          ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
      if (st_op) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
        // a store
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
        // inputs are (0:control, 1:memory, 2:address, 3:value)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
        Node* n2 = n->in(3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
        if (n2 != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
          const Type* t = n2->bottom_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
          is_verified_oop_store = t->isa_oop_ptr() ? (t->is_ptr()->_offset==0) : false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
        // a load
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
        const Type* t = n->bottom_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
        is_verified_oop_load = t->isa_oop_ptr() ? (t->is_ptr()->_offset==0) : false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
    if (ld_op) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
      // a Load
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
      // inputs are (0:control, 1:memory, 2:address)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
      if (!(n->ideal_Opcode()==ld_op)       && // Following are special cases
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
          !(n->ideal_Opcode()==Op_LoadLLocked && ld_op==Op_LoadI) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
          !(n->ideal_Opcode()==Op_LoadPLocked && ld_op==Op_LoadP) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
          !(n->ideal_Opcode()==Op_LoadI     && ld_op==Op_LoadF) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
          !(n->ideal_Opcode()==Op_LoadF     && ld_op==Op_LoadI) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
          !(n->ideal_Opcode()==Op_LoadRange && ld_op==Op_LoadI) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
          !(n->ideal_Opcode()==Op_LoadKlass && ld_op==Op_LoadP) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
          !(n->ideal_Opcode()==Op_LoadL     && ld_op==Op_LoadI) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
          !(n->ideal_Opcode()==Op_LoadL_unaligned && ld_op==Op_LoadI) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
          !(n->ideal_Opcode()==Op_LoadD_unaligned && ld_op==Op_LoadF) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
          !(n->ideal_Opcode()==Op_ConvI2F   && ld_op==Op_LoadF) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
          !(n->ideal_Opcode()==Op_ConvI2D   && ld_op==Op_LoadF) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
          !(n->ideal_Opcode()==Op_PrefetchRead  && ld_op==Op_LoadI) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
          !(n->ideal_Opcode()==Op_PrefetchWrite && ld_op==Op_LoadI) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
          !(n->rule() == loadUB_rule)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
        verify_oops_warning(n, n->ideal_Opcode(), ld_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
    } else if (st_op) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
      // a Store
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
      // inputs are (0:control, 1:memory, 2:address, 3:value)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
      if (!(n->ideal_Opcode()==st_op)    && // Following are special cases
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
          !(n->ideal_Opcode()==Op_StoreCM && st_op==Op_StoreB) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
          !(n->ideal_Opcode()==Op_StoreI && st_op==Op_StoreF) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
          !(n->ideal_Opcode()==Op_StoreF && st_op==Op_StoreI) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
          !(n->ideal_Opcode()==Op_StoreL && st_op==Op_StoreI) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
          !(n->ideal_Opcode()==Op_StoreD && st_op==Op_StoreI && n->rule() == storeD0_rule)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
        verify_oops_warning(n, n->ideal_Opcode(), st_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
    if (src2_enc == R_G0_enc && n->rule() != loadUB_rule && n->ideal_Opcode() != Op_StoreCM ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
      Node* addr = n->in(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
      if (!(addr->is_Mach() && addr->as_Mach()->ideal_Opcode() == Op_AddP)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
        const TypeOopPtr* atype = addr->bottom_type()->isa_instptr();  // %%% oopptr?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
        if (atype != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
          intptr_t offset = get_offset_from_base(n, atype, disp32);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
          intptr_t offset_2 = get_offset_from_base_2(n, atype, disp32);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
          if (offset != offset_2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
            get_offset_from_base(n, atype, disp32);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
            get_offset_from_base_2(n, atype, disp32);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
          assert(offset == offset_2, "different offsets");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
          if (offset == disp32) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
            // we now know that src1 is a true oop pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
            is_verified_oop_base = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
            if (ld_op && src1_enc == dst_enc && ld_op != Op_LoadF && ld_op != Op_LoadD) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
              if( primary == Assembler::ldd_op3 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
                is_verified_oop_base = false; // Cannot 'ldd' into O7
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
              } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
                tmp_enc = dst_enc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
                dst_enc = R_O7_enc; // Load into O7; preserve source oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
                assert(src1_enc != dst_enc, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
              }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
          if (st_op && (( offset == oopDesc::klass_offset_in_bytes())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
                       || offset == oopDesc::mark_offset_in_bytes())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
                      // loading the mark should not be allowed either, but
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
                      // we don't check this since it conflicts with InlineObjectHash
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
                      // usage of LoadINode to get the mark. We could keep the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
                      // check if we create a new LoadMarkNode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
            // but do not verify the object before its header is initialized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
            ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
  uint instr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
  instr = (Assembler::ldst_op << 30)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
        | (dst_enc        << 25)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
        | (primary        << 19)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
        | (src1_enc       << 14);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
  uint index = src2_enc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
  int disp = disp32;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
  if (src1_enc == R_SP_enc || src1_enc == R_FP_enc)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
    disp += STACK_BIAS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
  // We should have a compiler bailout here rather than a guarantee.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
  // Better yet would be some mechanism to handle variable-size matches correctly.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
  guarantee(Assembler::is_simm13(disp), "Do not match large constant offsets" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
  if( disp == 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
    // use reg-reg form
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
    // bit 13 is already zero
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
    instr |= index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
    // use reg-imm form
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
    instr |= 0x00002000;          // set bit 13 to one
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
    instr |= disp & 0x1FFF;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
  uint *code = (uint*)cbuf.code_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
  *code = instr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
  cbuf.set_code_end(cbuf.code_end() + BytesPerInstWord);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
    if (is_verified_oop_base) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
      __ verify_oop(reg_to_register_object(src1_enc));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
    if (is_verified_oop_store) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
      __ verify_oop(reg_to_register_object(dst_enc));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
    if (tmp_enc != -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
      __ mov(O7, reg_to_register_object(tmp_enc));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
    if (is_verified_oop_load) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
      __ verify_oop(reg_to_register_object(dst_enc));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
void emit_form3_mem_reg_asi(CodeBuffer &cbuf, const MachNode* n, int primary, int tertiary,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
                        int src1_enc, int disp32, int src2_enc, int dst_enc, int asi) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
  uint instr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
  instr = (Assembler::ldst_op << 30)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
        | (dst_enc        << 25)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
        | (primary        << 19)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
        | (src1_enc       << 14);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
  int disp = disp32;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
  int index    = src2_enc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
  if (src1_enc == R_SP_enc || src1_enc == R_FP_enc)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
    disp += STACK_BIAS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
  // We should have a compiler bailout here rather than a guarantee.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
  // Better yet would be some mechanism to handle variable-size matches correctly.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
  guarantee(Assembler::is_simm13(disp), "Do not match large constant offsets" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
  if( disp != 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
    // use reg-reg form
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
    // set src2=R_O7 contains offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
    index = R_O7_enc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
    emit3_simm13( cbuf, Assembler::arith_op, index, Assembler::or_op3, 0, disp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
  instr |= (asi << 5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
  instr |= index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
  uint *code = (uint*)cbuf.code_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
  *code = instr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
  cbuf.set_code_end(cbuf.code_end() + BytesPerInstWord);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
void emit_call_reloc(CodeBuffer &cbuf, intptr_t entry_point, relocInfo::relocType rtype, bool preserve_g2 = false, bool force_far_call = false) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
  // The method which records debug information at every safepoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
  // expects the call to be the first instruction in the snippet as
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
  // it creates a PcDesc structure which tracks the offset of a call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
  // from the start of the codeBlob. This offset is computed as
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
  // code_end() - code_begin() of the code which has been emitted
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
  // so far.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
  // In this particular case we have skirted around the problem by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
  // putting the "mov" instruction in the delay slot but the problem
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
  // may bite us again at some other point and a cleaner/generic
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
  // solution using relocations would be needed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
  MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
  __ set_inst_mark();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
  // We flush the current window just so that there is a valid stack copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
  // the fact that the current window becomes active again instantly is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
  // not a problem there is nothing live in it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
  int startpos = __ offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
#endif /* ASSERT */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
  // Calls to the runtime or native may not be reachable from compiled code,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
  // so we generate the far call sequence on 64 bit sparc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
  // This code sequence is relocatable to any address, even on LP64.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
  if ( force_far_call ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
    __ relocate(rtype);
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
   983
    AddressLiteral dest(entry_point);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
   984
    __ jumpl_to(dest, O7, O7);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
  else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
     __ call((address)entry_point, rtype);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
  if (preserve_g2)   __ delayed()->mov(G2, L7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
  else __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
  if (preserve_g2)   __ mov(L7, G2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
  if (preserve_g2 && (VerifyCompiledCode || VerifyOops)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
    // Trash argument dump slots.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
    __ set(0xb0b8ac0db0b8ac0d, G1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
    __ mov(G1, G5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
    __ stx(G1, SP, STACK_BIAS + 0x80);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
    __ stx(G1, SP, STACK_BIAS + 0x88);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
    __ stx(G1, SP, STACK_BIAS + 0x90);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
    __ stx(G1, SP, STACK_BIAS + 0x98);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
    __ stx(G1, SP, STACK_BIAS + 0xA0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
    __ stx(G1, SP, STACK_BIAS + 0xA8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
#else // _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
    // this is also a native call, so smash the first 7 stack locations,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
    // and the various registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
    // Note:  [SP+0x40] is sp[callee_aggregate_return_pointer_sp_offset],
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
    // while [SP+0x44..0x58] are the argument dump slots.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
    __ set((intptr_t)0xbaadf00d, G1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
    __ mov(G1, G5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
    __ sllx(G1, 32, G1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
    __ or3(G1, G5, G1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
    __ mov(G1, G5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
    __ stx(G1, SP, 0x40);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
    __ stx(G1, SP, 0x48);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
    __ stx(G1, SP, 0x50);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
    __ stw(G1, SP, 0x58); // Do not trash [SP+0x5C] which is a usable spill slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
#endif // _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
#endif /*ASSERT*/
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
// REQUIRED FUNCTIONALITY for encoding
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
void emit_lo(CodeBuffer &cbuf, int val) {  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
void emit_hi(CodeBuffer &cbuf, int val) {  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
void MachPrologNode::format( PhaseRegAlloc *ra_, outputStream *st ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
  Compile* C = ra_->C;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
  for (int i = 0; i < OptoPrologueNops; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
    st->print_cr("NOP"); st->print("\t");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
  if( VerifyThread ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
    st->print_cr("Verify_Thread"); st->print("\t");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
  size_t framesize = C->frame_slots() << LogBytesPerInt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
  // Calls to C2R adapters often do not accept exceptional returns.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
  // We require that their callers must bang for them.  But be careful, because
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
  // some VM calls (such as call site linkage) can use several kilobytes of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
  // stack.  But the stack safety zone should account for that.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
  // See bugs 4446381, 4468289, 4497237.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
  if (C->need_stack_bang(framesize)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
    st->print_cr("! stack bang"); st->print("\t");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
  if (Assembler::is_simm13(-framesize)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
    st->print   ("SAVE   R_SP,-%d,R_SP",framesize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
    st->print_cr("SETHI  R_SP,hi%%(-%d),R_G3",framesize); st->print("\t");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
    st->print_cr("ADD    R_G3,lo%%(-%d),R_G3",framesize); st->print("\t");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
    st->print   ("SAVE   R_SP,R_G3,R_SP");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
void MachPrologNode::emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
  Compile* C = ra_->C;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
  MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
  for (int i = 0; i < OptoPrologueNops; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
    __ nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
  __ verify_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
  size_t framesize = C->frame_slots() << LogBytesPerInt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
  assert(framesize >= 16*wordSize, "must have room for reg. save area");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
  assert(framesize%(2*wordSize) == 0, "must preserve 2*wordSize alignment");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
  // Calls to C2R adapters often do not accept exceptional returns.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
  // We require that their callers must bang for them.  But be careful, because
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
  // some VM calls (such as call site linkage) can use several kilobytes of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
  // stack.  But the stack safety zone should account for that.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
  // See bugs 4446381, 4468289, 4497237.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
  if (C->need_stack_bang(framesize)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
    __ generate_stack_overflow_check(framesize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
  if (Assembler::is_simm13(-framesize)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
    __ save(SP, -framesize, SP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
    __ sethi(-framesize & ~0x3ff, G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
    __ add(G3, -framesize & 0x3ff, G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
    __ save(SP, G3, SP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
  C->set_frame_complete( __ offset() );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
uint MachPrologNode::size(PhaseRegAlloc *ra_) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
  return MachNode::size(ra_);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
int MachPrologNode::reloc() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
  return 10; // a large enough number
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1110
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1111
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1114
void MachEpilogNode::format( PhaseRegAlloc *ra_, outputStream *st ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1115
  Compile* C = ra_->C;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1116
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1117
  if( do_polling() && ra_->C->is_method_compilation() ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
    st->print("SETHI  #PollAddr,L0\t! Load Polling address\n\t");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1119
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
    st->print("LDX    [L0],G0\t!Poll for Safepointing\n\t");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
    st->print("LDUW   [L0],G0\t!Poll for Safepointing\n\t");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1124
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
  if( do_polling() )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1127
    st->print("RET\n\t");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1128
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1129
  st->print("RESTORE");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1131
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1132
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
void MachEpilogNode::emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1134
  MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1135
  Compile* C = ra_->C;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1136
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
  __ verify_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1139
  // If this does safepoint polling, then do it here
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
  if( do_polling() && ra_->C->is_method_compilation() ) {
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  1141
    AddressLiteral polling_page(os::get_polling_page());
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  1142
    __ sethi(polling_page, L0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
    __ relocate(relocInfo::poll_return_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
    __ ld_ptr( L0, 0, G0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
  // If this is a return, then stuff the restore in the delay slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1148
  if( do_polling() ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1149
    __ ret();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1150
    __ delayed()->restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
    __ restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1153
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1154
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1155
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1156
uint MachEpilogNode::size(PhaseRegAlloc *ra_) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1157
  return MachNode::size(ra_);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1158
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1159
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1160
int MachEpilogNode::reloc() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1161
  return 16; // a large enough number
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1163
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1164
const Pipeline * MachEpilogNode::pipeline() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1165
  return MachNode::pipeline_class();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1166
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1167
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1168
int MachEpilogNode::safepoint_offset() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1169
  assert( do_polling(), "no return for this epilog node");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1170
  return MacroAssembler::size_of_sethi(os::get_polling_page());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1171
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1172
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1175
// Figure out which register class each belongs in: rc_int, rc_float, rc_stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
enum RC { rc_bad, rc_int, rc_float, rc_stack };
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1177
static enum RC rc_class( OptoReg::Name reg ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1178
  if( !OptoReg::is_valid(reg)  ) return rc_bad;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1179
  if (OptoReg::is_stack(reg)) return rc_stack;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
  VMReg r = OptoReg::as_VMReg(reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1181
  if (r->is_Register()) return rc_int;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1182
  assert(r->is_FloatRegister(), "must be");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1183
  return rc_float;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1185
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1186
static int impl_helper( const MachNode *mach, CodeBuffer *cbuf, PhaseRegAlloc *ra_, bool do_size, bool is_load, int offset, int reg, int opcode, const char *op_str, int size, outputStream* st ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1187
  if( cbuf ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1188
    // Better yet would be some mechanism to handle variable-size matches correctly
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
    if (!Assembler::is_simm13(offset + STACK_BIAS)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
      ra_->C->record_method_not_compilable("unable to handle large constant offsets");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1191
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1192
      emit_form3_mem_reg(*cbuf, mach, opcode, -1, R_SP_enc, offset, 0, Matcher::_regEncode[reg]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1194
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1195
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1196
  else if( !do_size ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1197
    if( size != 0 ) st->print("\n\t");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1198
    if( is_load ) st->print("%s   [R_SP + #%d],R_%s\t! spill",op_str,offset,OptoReg::regname(reg));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1199
    else          st->print("%s   R_%s,[R_SP + #%d]\t! spill",op_str,OptoReg::regname(reg),offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1200
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1201
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1202
  return size+4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1203
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1204
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1205
static int impl_mov_helper( CodeBuffer *cbuf, bool do_size, int src, int dst, int op1, int op2, const char *op_str, int size, outputStream* st ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1206
  if( cbuf ) emit3( *cbuf, Assembler::arith_op, Matcher::_regEncode[dst], op1, 0, op2, Matcher::_regEncode[src] );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1207
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1208
  else if( !do_size ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1209
    if( size != 0 ) st->print("\n\t");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1210
    st->print("%s  R_%s,R_%s\t! spill",op_str,OptoReg::regname(src),OptoReg::regname(dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1211
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1212
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1213
  return size+4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1214
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1215
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1216
uint MachSpillCopyNode::implementation( CodeBuffer *cbuf,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1217
                                        PhaseRegAlloc *ra_,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1218
                                        bool do_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1219
                                        outputStream* st ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1220
  // Get registers to move
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1221
  OptoReg::Name src_second = ra_->get_reg_second(in(1));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1222
  OptoReg::Name src_first = ra_->get_reg_first(in(1));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1223
  OptoReg::Name dst_second = ra_->get_reg_second(this );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1224
  OptoReg::Name dst_first = ra_->get_reg_first(this );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1225
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1226
  enum RC src_second_rc = rc_class(src_second);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
  enum RC src_first_rc = rc_class(src_first);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
  enum RC dst_second_rc = rc_class(dst_second);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1229
  enum RC dst_first_rc = rc_class(dst_first);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1230
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1231
  assert( OptoReg::is_valid(src_first) && OptoReg::is_valid(dst_first), "must move at least 1 register" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1232
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1233
  // Generate spill code!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1234
  int size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1235
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1236
  if( src_first == dst_first && src_second == dst_second )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1237
    return size;            // Self copy, no move
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1238
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1239
  // --------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1240
  // Check for mem-mem move.  Load into unused float registers and fall into
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1241
  // the float-store case.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1242
  if( src_first_rc == rc_stack && dst_first_rc == rc_stack ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1243
    int offset = ra_->reg2offset(src_first);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1244
    // Further check for aligned-adjacent pair, so we can use a double load
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1245
    if( (src_first&1)==0 && src_first+1 == src_second ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1246
      src_second    = OptoReg::Name(R_F31_num);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1247
      src_second_rc = rc_float;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1248
      size = impl_helper(this,cbuf,ra_,do_size,true,offset,R_F30_num,Assembler::lddf_op3,"LDDF",size, st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1249
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1250
      size = impl_helper(this,cbuf,ra_,do_size,true,offset,R_F30_num,Assembler::ldf_op3 ,"LDF ",size, st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1251
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1252
    src_first    = OptoReg::Name(R_F30_num);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1253
    src_first_rc = rc_float;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1254
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1255
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1256
  if( src_second_rc == rc_stack && dst_second_rc == rc_stack ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1257
    int offset = ra_->reg2offset(src_second);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1258
    size = impl_helper(this,cbuf,ra_,do_size,true,offset,R_F31_num,Assembler::ldf_op3,"LDF ",size, st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1259
    src_second    = OptoReg::Name(R_F31_num);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1260
    src_second_rc = rc_float;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1261
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1262
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1263
  // --------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1264
  // Check for float->int copy; requires a trip through memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1265
  if( src_first_rc == rc_float && dst_first_rc == rc_int ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1266
    int offset = frame::register_save_words*wordSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1267
    if( cbuf ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1268
      emit3_simm13( *cbuf, Assembler::arith_op, R_SP_enc, Assembler::sub_op3, R_SP_enc, 16 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1269
      impl_helper(this,cbuf,ra_,do_size,false,offset,src_first,Assembler::stf_op3 ,"STF ",size, st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1270
      impl_helper(this,cbuf,ra_,do_size,true ,offset,dst_first,Assembler::lduw_op3,"LDUW",size, st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1271
      emit3_simm13( *cbuf, Assembler::arith_op, R_SP_enc, Assembler::add_op3, R_SP_enc, 16 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1272
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1273
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1274
    else if( !do_size ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1275
      if( size != 0 ) st->print("\n\t");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1276
      st->print(  "SUB    R_SP,16,R_SP\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1277
      impl_helper(this,cbuf,ra_,do_size,false,offset,src_first,Assembler::stf_op3 ,"STF ",size, st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1278
      impl_helper(this,cbuf,ra_,do_size,true ,offset,dst_first,Assembler::lduw_op3,"LDUW",size, st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1279
      st->print("\tADD    R_SP,16,R_SP\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1280
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1281
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1282
    size += 16;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1283
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1284
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1285
  // --------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1286
  // In the 32-bit 1-reg-longs build ONLY, I see mis-aligned long destinations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1287
  // In such cases, I have to do the big-endian swap.  For aligned targets, the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1288
  // hardware does the flop for me.  Doubles are always aligned, so no problem
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1289
  // there.  Misaligned sources only come from native-long-returns (handled
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1290
  // special below).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1291
#ifndef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1292
  if( src_first_rc == rc_int &&     // source is already big-endian
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1293
      src_second_rc != rc_bad &&    // 64-bit move
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1294
      ((dst_first&1)!=0 || dst_second != dst_first+1) ) { // misaligned dst
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1295
    assert( (src_first&1)==0 && src_second == src_first+1, "source must be aligned" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1296
    // Do the big-endian flop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1297
    OptoReg::Name tmp    = dst_first   ; dst_first    = dst_second   ; dst_second    = tmp   ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1298
    enum RC       tmp_rc = dst_first_rc; dst_first_rc = dst_second_rc; dst_second_rc = tmp_rc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1299
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1300
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1301
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1302
  // --------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1303
  // Check for integer reg-reg copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1304
  if( src_first_rc == rc_int && dst_first_rc == rc_int ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1305
#ifndef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1306
    if( src_first == R_O0_num && src_second == R_O1_num ) {  // Check for the evil O0/O1 native long-return case
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1307
      // Note: The _first and _second suffixes refer to the addresses of the the 2 halves of the 64-bit value
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1308
      //       as stored in memory.  On a big-endian machine like SPARC, this means that the _second
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1309
      //       operand contains the least significant word of the 64-bit value and vice versa.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1310
      OptoReg::Name tmp = OptoReg::Name(R_O7_num);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1311
      assert( (dst_first&1)==0 && dst_second == dst_first+1, "return a native O0/O1 long to an aligned-adjacent 64-bit reg" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1312
      // Shift O0 left in-place, zero-extend O1, then OR them into the dst
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1313
      if( cbuf ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1314
        emit3_simm13( *cbuf, Assembler::arith_op, Matcher::_regEncode[tmp], Assembler::sllx_op3, Matcher::_regEncode[src_first], 0x1020 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1315
        emit3_simm13( *cbuf, Assembler::arith_op, Matcher::_regEncode[src_second], Assembler::srl_op3, Matcher::_regEncode[src_second], 0x0000 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1316
        emit3       ( *cbuf, Assembler::arith_op, Matcher::_regEncode[dst_first], Assembler:: or_op3, Matcher::_regEncode[tmp], 0, Matcher::_regEncode[src_second] );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1317
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1318
      } else if( !do_size ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1319
        if( size != 0 ) st->print("\n\t");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1320
        st->print("SLLX   R_%s,32,R_%s\t! Move O0-first to O7-high\n\t", OptoReg::regname(src_first), OptoReg::regname(tmp));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1321
        st->print("SRL    R_%s, 0,R_%s\t! Zero-extend O1\n\t", OptoReg::regname(src_second), OptoReg::regname(src_second));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1322
        st->print("OR     R_%s,R_%s,R_%s\t! spill",OptoReg::regname(tmp), OptoReg::regname(src_second), OptoReg::regname(dst_first));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1323
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1324
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1325
      return size+12;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1326
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1327
    else if( dst_first == R_I0_num && dst_second == R_I1_num ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1328
      // returning a long value in I0/I1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1329
      // a SpillCopy must be able to target a return instruction's reg_class
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1330
      // Note: The _first and _second suffixes refer to the addresses of the the 2 halves of the 64-bit value
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1331
      //       as stored in memory.  On a big-endian machine like SPARC, this means that the _second
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1332
      //       operand contains the least significant word of the 64-bit value and vice versa.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1333
      OptoReg::Name tdest = dst_first;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1334
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1335
      if (src_first == dst_first) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1336
        tdest = OptoReg::Name(R_O7_num);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1337
        size += 4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1338
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1339
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1340
      if( cbuf ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1341
        assert( (src_first&1) == 0 && (src_first+1) == src_second, "return value was in an aligned-adjacent 64-bit reg");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1342
        // Shift value in upper 32-bits of src to lower 32-bits of I0; move lower 32-bits to I1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1343
        // ShrL_reg_imm6
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1344
        emit3_simm13( *cbuf, Assembler::arith_op, Matcher::_regEncode[tdest], Assembler::srlx_op3, Matcher::_regEncode[src_second], 32 | 0x1000 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1345
        // ShrR_reg_imm6  src, 0, dst
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1346
        emit3_simm13( *cbuf, Assembler::arith_op, Matcher::_regEncode[dst_second], Assembler::srl_op3, Matcher::_regEncode[src_first], 0x0000 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1347
        if (tdest != dst_first) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1348
          emit3     ( *cbuf, Assembler::arith_op, Matcher::_regEncode[dst_first], Assembler::or_op3, 0/*G0*/, 0/*op2*/, Matcher::_regEncode[tdest] );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1349
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1350
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1351
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1352
      else if( !do_size ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1353
        if( size != 0 ) st->print("\n\t");  // %%%%% !!!!!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1354
        st->print("SRLX   R_%s,32,R_%s\t! Extract MSW\n\t",OptoReg::regname(src_second),OptoReg::regname(tdest));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1355
        st->print("SRL    R_%s, 0,R_%s\t! Extract LSW\n\t",OptoReg::regname(src_first),OptoReg::regname(dst_second));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1356
        if (tdest != dst_first) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1357
          st->print("MOV    R_%s,R_%s\t! spill\n\t", OptoReg::regname(tdest), OptoReg::regname(dst_first));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1358
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1359
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1360
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1361
      return size+8;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1362
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1363
#endif // !_LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1364
    // Else normal reg-reg copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1365
    assert( src_second != dst_first, "smashed second before evacuating it" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1366
    size = impl_mov_helper(cbuf,do_size,src_first,dst_first,Assembler::or_op3,0,"MOV  ",size, st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1367
    assert( (src_first&1) == 0 && (dst_first&1) == 0, "never move second-halves of int registers" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1368
    // This moves an aligned adjacent pair.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1369
    // See if we are done.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1370
    if( src_first+1 == src_second && dst_first+1 == dst_second )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1371
      return size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1372
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1373
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1374
  // Check for integer store
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1375
  if( src_first_rc == rc_int && dst_first_rc == rc_stack ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1376
    int offset = ra_->reg2offset(dst_first);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1377
    // Further check for aligned-adjacent pair, so we can use a double store
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1378
    if( (src_first&1)==0 && src_first+1 == src_second && (dst_first&1)==0 && dst_first+1 == dst_second )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1379
      return impl_helper(this,cbuf,ra_,do_size,false,offset,src_first,Assembler::stx_op3,"STX ",size, st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1380
    size  =  impl_helper(this,cbuf,ra_,do_size,false,offset,src_first,Assembler::stw_op3,"STW ",size, st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1381
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1382
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1383
  // Check for integer load
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1384
  if( dst_first_rc == rc_int && src_first_rc == rc_stack ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1385
    int offset = ra_->reg2offset(src_first);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1386
    // Further check for aligned-adjacent pair, so we can use a double load
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1387
    if( (src_first&1)==0 && src_first+1 == src_second && (dst_first&1)==0 && dst_first+1 == dst_second )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1388
      return impl_helper(this,cbuf,ra_,do_size,true,offset,dst_first,Assembler::ldx_op3 ,"LDX ",size, st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1389
    size  =  impl_helper(this,cbuf,ra_,do_size,true,offset,dst_first,Assembler::lduw_op3,"LDUW",size, st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1390
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1391
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1392
  // Check for float reg-reg copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1393
  if( src_first_rc == rc_float && dst_first_rc == rc_float ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1394
    // Further check for aligned-adjacent pair, so we can use a double move
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1395
    if( (src_first&1)==0 && src_first+1 == src_second && (dst_first&1)==0 && dst_first+1 == dst_second )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1396
      return impl_mov_helper(cbuf,do_size,src_first,dst_first,Assembler::fpop1_op3,Assembler::fmovd_opf,"FMOVD",size, st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1397
    size  =  impl_mov_helper(cbuf,do_size,src_first,dst_first,Assembler::fpop1_op3,Assembler::fmovs_opf,"FMOVS",size, st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1398
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1399
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1400
  // Check for float store
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1401
  if( src_first_rc == rc_float && dst_first_rc == rc_stack ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1402
    int offset = ra_->reg2offset(dst_first);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1403
    // Further check for aligned-adjacent pair, so we can use a double store
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1404
    if( (src_first&1)==0 && src_first+1 == src_second && (dst_first&1)==0 && dst_first+1 == dst_second )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1405
      return impl_helper(this,cbuf,ra_,do_size,false,offset,src_first,Assembler::stdf_op3,"STDF",size, st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1406
    size  =  impl_helper(this,cbuf,ra_,do_size,false,offset,src_first,Assembler::stf_op3 ,"STF ",size, st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1407
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1408
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1409
  // Check for float load
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1410
  if( dst_first_rc == rc_float && src_first_rc == rc_stack ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1411
    int offset = ra_->reg2offset(src_first);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1412
    // Further check for aligned-adjacent pair, so we can use a double load
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1413
    if( (src_first&1)==0 && src_first+1 == src_second && (dst_first&1)==0 && dst_first+1 == dst_second )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1414
      return impl_helper(this,cbuf,ra_,do_size,true,offset,dst_first,Assembler::lddf_op3,"LDDF",size, st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1415
    size  =  impl_helper(this,cbuf,ra_,do_size,true,offset,dst_first,Assembler::ldf_op3 ,"LDF ",size, st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1416
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1417
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1418
  // --------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1419
  // Check for hi bits still needing moving.  Only happens for misaligned
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1420
  // arguments to native calls.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1421
  if( src_second == dst_second )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1422
    return size;               // Self copy; no move
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1423
  assert( src_second_rc != rc_bad && dst_second_rc != rc_bad, "src_second & dst_second cannot be Bad" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1424
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1425
#ifndef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1426
  // In the LP64 build, all registers can be moved as aligned/adjacent
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 2022
diff changeset
  1427
  // pairs, so there's never any need to move the high bits separately.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1428
  // The 32-bit builds have to deal with the 32-bit ABI which can force
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1429
  // all sorts of silly alignment problems.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1430
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1431
  // Check for integer reg-reg copy.  Hi bits are stuck up in the top
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1432
  // 32-bits of a 64-bit register, but are needed in low bits of another
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1433
  // register (else it's a hi-bits-to-hi-bits copy which should have
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1434
  // happened already as part of a 64-bit move)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1435
  if( src_second_rc == rc_int && dst_second_rc == rc_int ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1436
    assert( (src_second&1)==1, "its the evil O0/O1 native return case" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1437
    assert( (dst_second&1)==0, "should have moved with 1 64-bit move" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1438
    // Shift src_second down to dst_second's low bits.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1439
    if( cbuf ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1440
      emit3_simm13( *cbuf, Assembler::arith_op, Matcher::_regEncode[dst_second], Assembler::srlx_op3, Matcher::_regEncode[src_second-1], 0x1020 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1441
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1442
    } else if( !do_size ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1443
      if( size != 0 ) st->print("\n\t");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1444
      st->print("SRLX   R_%s,32,R_%s\t! spill: Move high bits down low",OptoReg::regname(src_second-1),OptoReg::regname(dst_second));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1445
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1446
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1447
    return size+4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1448
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1449
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1450
  // Check for high word integer store.  Must down-shift the hi bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1451
  // into a temp register, then fall into the case of storing int bits.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1452
  if( src_second_rc == rc_int && dst_second_rc == rc_stack && (src_second&1)==1 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1453
    // Shift src_second down to dst_second's low bits.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1454
    if( cbuf ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1455
      emit3_simm13( *cbuf, Assembler::arith_op, Matcher::_regEncode[R_O7_num], Assembler::srlx_op3, Matcher::_regEncode[src_second-1], 0x1020 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1456
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1457
    } else if( !do_size ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1458
      if( size != 0 ) st->print("\n\t");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1459
      st->print("SRLX   R_%s,32,R_%s\t! spill: Move high bits down low",OptoReg::regname(src_second-1),OptoReg::regname(R_O7_num));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1460
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1461
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1462
    size+=4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1463
    src_second = OptoReg::Name(R_O7_num); // Not R_O7H_num!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1464
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1465
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1466
  // Check for high word integer load
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1467
  if( dst_second_rc == rc_int && src_second_rc == rc_stack )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1468
    return impl_helper(this,cbuf,ra_,do_size,true ,ra_->reg2offset(src_second),dst_second,Assembler::lduw_op3,"LDUW",size, st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1469
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1470
  // Check for high word integer store
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1471
  if( src_second_rc == rc_int && dst_second_rc == rc_stack )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1472
    return impl_helper(this,cbuf,ra_,do_size,false,ra_->reg2offset(dst_second),src_second,Assembler::stw_op3 ,"STW ",size, st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1473
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1474
  // Check for high word float store
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1475
  if( src_second_rc == rc_float && dst_second_rc == rc_stack )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1476
    return impl_helper(this,cbuf,ra_,do_size,false,ra_->reg2offset(dst_second),src_second,Assembler::stf_op3 ,"STF ",size, st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1477
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1478
#endif // !_LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1479
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1480
  Unimplemented();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1481
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1482
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1483
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1484
void MachSpillCopyNode::format( PhaseRegAlloc *ra_, outputStream *st ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1485
  implementation( NULL, ra_, false, st );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1486
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1487
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1488
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1489
void MachSpillCopyNode::emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1490
  implementation( &cbuf, ra_, false, NULL );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1491
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1492
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1493
uint MachSpillCopyNode::size(PhaseRegAlloc *ra_) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1494
  return implementation( NULL, ra_, true, NULL );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1495
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1496
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1497
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1498
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1499
void MachNopNode::format( PhaseRegAlloc *, outputStream *st ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1500
  st->print("NOP \t# %d bytes pad for loops and calls", 4 * _count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1501
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1502
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1503
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1504
void MachNopNode::emit(CodeBuffer &cbuf, PhaseRegAlloc * ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1505
  MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1506
  for(int i = 0; i < _count; i += 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1507
    __ nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1508
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1509
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1510
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1511
uint MachNopNode::size(PhaseRegAlloc *ra_) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1512
  return 4 * _count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1513
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1514
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1515
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1516
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1517
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1518
void BoxLockNode::format( PhaseRegAlloc *ra_, outputStream *st ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1519
  int offset = ra_->reg2offset(in_RegMask(0).find_first_elem());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1520
  int reg = ra_->get_reg_first(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1521
  st->print("LEA    [R_SP+#%d+BIAS],%s",offset,Matcher::regName[reg]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1522
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1523
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1524
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1525
void BoxLockNode::emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1526
  MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1527
  int offset = ra_->reg2offset(in_RegMask(0).find_first_elem()) + STACK_BIAS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1528
  int reg = ra_->get_encode(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1529
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1530
  if (Assembler::is_simm13(offset)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1531
     __ add(SP, offset, reg_to_register_object(reg));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1532
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1533
     __ set(offset, O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1534
     __ add(SP, O7, reg_to_register_object(reg));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1535
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1536
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1537
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1538
uint BoxLockNode::size(PhaseRegAlloc *ra_) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1539
  // BoxLockNode is not a MachNode, so we can't just call MachNode::size(ra_)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1540
  assert(ra_ == ra_->C->regalloc(), "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1541
  return ra_->C->scratch_emit_size(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1542
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1543
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1544
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1545
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1546
// emit call stub, compiled java to interpretor
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1547
void emit_java_to_interp(CodeBuffer &cbuf ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1548
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1549
  // Stub is fixed up when the corresponding call is converted from calling
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1550
  // compiled code to calling interpreted code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1551
  // set (empty), G5
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1552
  // jmp -1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1553
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1554
  address mark = cbuf.inst_mark();  // get mark within main instrs section
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1555
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1556
  MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1557
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1558
  address base =
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1559
  __ start_a_stub(Compile::MAX_stubs_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1560
  if (base == NULL)  return;  // CodeBuffer::expand failed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1561
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1562
  // static stub relocation stores the instruction address of the call
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1563
  __ relocate(static_stub_Relocation::spec(mark));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1564
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1565
  __ set_oop(NULL, reg_to_register_object(Matcher::inline_cache_reg_encode()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1566
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1567
  __ set_inst_mark();
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  1568
  AddressLiteral addrlit(-1);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  1569
  __ JUMP(addrlit, G3, 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1570
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1571
  __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1572
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1573
  // Update current stubs pointer and restore code_end.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1574
  __ end_a_stub();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1575
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1576
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1577
// size of call stub, compiled java to interpretor
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1578
uint size_java_to_interp() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1579
  // This doesn't need to be accurate but it must be larger or equal to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1580
  // the real size of the stub.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1581
  return (NativeMovConstReg::instruction_size +  // sethi/setlo;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1582
          NativeJump::instruction_size + // sethi; jmp; nop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1583
          (TraceJumps ? 20 * BytesPerInstWord : 0) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1584
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1585
// relocation entries for call stub, compiled java to interpretor
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1586
uint reloc_java_to_interp() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1587
  return 10;  // 4 in emit_java_to_interp + 1 in Java_Static_Call
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1588
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1589
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1590
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1591
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1592
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1593
void MachUEPNode::format( PhaseRegAlloc *ra_, outputStream *st ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1594
  st->print_cr("\nUEP:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1595
#ifdef    _LP64
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  1596
  if (UseCompressedOops) {
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2150
diff changeset
  1597
    assert(Universe::heap() != NULL, "java heap should be initialized");
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  1598
    st->print_cr("\tLDUW   [R_O0 + oopDesc::klass_offset_in_bytes],R_G5\t! Inline cache check - compressed klass");
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  1599
    st->print_cr("\tSLL    R_G5,3,R_G5");
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2150
diff changeset
  1600
    if (Universe::narrow_oop_base() != NULL)
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2150
diff changeset
  1601
      st->print_cr("\tADD    R_G5,R_G6_heap_base,R_G5");
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  1602
  } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  1603
    st->print_cr("\tLDX    [R_O0 + oopDesc::klass_offset_in_bytes],R_G5\t! Inline cache check");
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  1604
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1605
  st->print_cr("\tCMP    R_G5,R_G3" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1606
  st->print   ("\tTne    xcc,R_G0+ST_RESERVED_FOR_USER_0+2");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1607
#else  // _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1608
  st->print_cr("\tLDUW   [R_O0 + oopDesc::klass_offset_in_bytes],R_G5\t! Inline cache check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1609
  st->print_cr("\tCMP    R_G5,R_G3" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1610
  st->print   ("\tTne    icc,R_G0+ST_RESERVED_FOR_USER_0+2");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1611
#endif // _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1612
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1613
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1614
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1615
void MachUEPNode::emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1616
  MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1617
  Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1618
  Register G5_ic_reg  = reg_to_register_object(Matcher::inline_cache_reg_encode());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1619
  Register temp_reg   = G3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1620
  assert( G5_ic_reg != temp_reg, "conflicting registers" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1621
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 2022
diff changeset
  1622
  // Load klass from receiver
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  1623
  __ load_klass(O0, temp_reg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1624
  // Compare against expected klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1625
  __ cmp(temp_reg, G5_ic_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1626
  // Branch to miss code, checks xcc or icc depending
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1627
  __ trap(Assembler::notEqual, Assembler::ptr_cc, G0, ST_RESERVED_FOR_USER_0+2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1628
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1629
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1630
uint MachUEPNode::size(PhaseRegAlloc *ra_) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1631
  return MachNode::size(ra_);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1632
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1633
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1634
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1635
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1636
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1637
uint size_exception_handler() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1638
  if (TraceJumps) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1639
    return (400); // just a guess
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1640
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1641
  return ( NativeJump::instruction_size ); // sethi;jmp;nop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1642
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1643
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1644
uint size_deopt_handler() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1645
  if (TraceJumps) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1646
    return (400); // just a guess
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1647
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1648
  return ( 4+  NativeJump::instruction_size ); // save;sethi;jmp;restore
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1649
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1650
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1651
// Emit exception handler code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1652
int emit_exception_handler(CodeBuffer& cbuf) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1653
  Register temp_reg = G3;
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  1654
  AddressLiteral exception_blob(OptoRuntime::exception_blob()->instructions_begin());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1655
  MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1656
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1657
  address base =
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1658
  __ start_a_stub(size_exception_handler());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1659
  if (base == NULL)  return 0;  // CodeBuffer::expand failed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1660
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1661
  int offset = __ offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1662
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  1663
  __ JUMP(exception_blob, temp_reg, 0); // sethi;jmp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1664
  __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1665
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1666
  assert(__ offset() - offset <= (int) size_exception_handler(), "overflow");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1667
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1668
  __ end_a_stub();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1669
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1670
  return offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1671
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1672
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1673
int emit_deopt_handler(CodeBuffer& cbuf) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1674
  // Can't use any of the current frame's registers as we may have deopted
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1675
  // at a poll and everything (including G3) can be live.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1676
  Register temp_reg = L0;
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  1677
  AddressLiteral deopt_blob(SharedRuntime::deopt_blob()->unpack());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1678
  MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1679
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1680
  address base =
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1681
  __ start_a_stub(size_deopt_handler());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1682
  if (base == NULL)  return 0;  // CodeBuffer::expand failed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1683
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1684
  int offset = __ offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1685
  __ save_frame(0);
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  1686
  __ JUMP(deopt_blob, temp_reg, 0); // sethi;jmp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1687
  __ delayed()->restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1688
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1689
  assert(__ offset() - offset <= (int) size_deopt_handler(), "overflow");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1690
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1691
  __ end_a_stub();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1692
  return offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1693
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1694
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1695
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1696
// Given a register encoding, produce a Integer Register object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1697
static Register reg_to_register_object(int register_encoding) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1698
  assert(L5->encoding() == R_L5_enc && G1->encoding() == R_G1_enc, "right coding");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1699
  return as_Register(register_encoding);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1700
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1701
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1702
// Given a register encoding, produce a single-precision Float Register object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1703
static FloatRegister reg_to_SingleFloatRegister_object(int register_encoding) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1704
  assert(F5->encoding(FloatRegisterImpl::S) == R_F5_enc && F12->encoding(FloatRegisterImpl::S) == R_F12_enc, "right coding");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1705
  return as_SingleFloatRegister(register_encoding);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1706
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1707
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1708
// Given a register encoding, produce a double-precision Float Register object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1709
static FloatRegister reg_to_DoubleFloatRegister_object(int register_encoding) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1710
  assert(F4->encoding(FloatRegisterImpl::D) == R_F4_enc, "right coding");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1711
  assert(F32->encoding(FloatRegisterImpl::D) == R_D32_enc, "right coding");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1712
  return as_DoubleFloatRegister(register_encoding);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1713
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1714
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1715
int Matcher::regnum_to_fpu_offset(int regnum) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1716
  return regnum - 32; // The FP registers are in the second chunk
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1717
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1718
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1719
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1720
address last_rethrow = NULL;  // debugging aid for Rethrow encoding
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1721
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1722
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1723
// Vector width in bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1724
const uint Matcher::vector_width_in_bytes(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1725
  return 8;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1726
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1727
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1728
// Vector ideal reg
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1729
const uint Matcher::vector_ideal_reg(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1730
  return Op_RegD;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1731
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1732
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1733
// USII supports fxtof through the whole range of number, USIII doesn't
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1734
const bool Matcher::convL2FSupported(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1735
  return VM_Version::has_fast_fxtof();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1736
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1737
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1738
// Is this branch offset short enough that a short branch can be used?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1739
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1740
// NOTE: If the platform does not provide any short branch variants, then
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1741
//       this method should return false for offset 0.
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  1742
bool Matcher::is_short_branch_offset(int rule, int offset) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1743
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1744
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1745
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1746
const bool Matcher::isSimpleConstant64(jlong value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1747
  // Will one (StoreL ConL) be cheaper than two (StoreI ConI)?.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1748
  // Depends on optimizations in MacroAssembler::setx.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1749
  int hi = (int)(value >> 32);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1750
  int lo = (int)(value & ~0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1751
  return (hi == 0) || (hi == -1) || (lo == 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1752
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1753
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1754
// No scaling for the parameter the ClearArray node.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1755
const bool Matcher::init_array_count_is_in_bytes = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1756
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1757
// Threshold size for cleararray.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1758
const int Matcher::init_array_short_size = 8 * BytesPerLong;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1759
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1760
// Should the Matcher clone shifts on addressing modes, expecting them to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1761
// be subsumed into complex addressing expressions or compute them into
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1762
// registers?  True for Intel but false for most RISCs
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1763
const bool Matcher::clone_shift_expressions = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1764
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1765
// Is it better to copy float constants, or load them directly from memory?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1766
// Intel can load a float constant from a direct address, requiring no
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1767
// extra registers.  Most RISCs will have to materialize an address into a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1768
// register first, so they would do better to copy the constant from stack.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1769
const bool Matcher::rematerialize_float_constants = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1770
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1771
// If CPU can load and store mis-aligned doubles directly then no fixup is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1772
// needed.  Else we split the double into 2 integer pieces and move it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1773
// piece-by-piece.  Only happens when passing doubles into C code as the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1774
// Java calling convention forces doubles to be aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1775
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1776
const bool Matcher::misaligned_doubles_ok = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1777
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1778
const bool Matcher::misaligned_doubles_ok = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1779
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1780
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1781
// No-op on SPARC.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1782
void Matcher::pd_implicit_null_fixup(MachNode *node, uint idx) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1783
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1784
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1785
// Advertise here if the CPU requires explicit rounding operations
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1786
// to implement the UseStrictFP mode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1787
const bool Matcher::strict_fp_requires_explicit_rounding = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1788
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1789
// Do floats take an entire double register or just half?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1790
const bool Matcher::float_in_double = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1791
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1792
// Do ints take an entire long register or just half?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1793
// Note that we if-def off of _LP64.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1794
// The relevant question is how the int is callee-saved.  In _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1795
// the whole long is written but de-opt'ing will have to extract
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1796
// the relevant 32 bits, in not-_LP64 only the low 32 bits is written.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1797
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1798
const bool Matcher::int_in_long = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1799
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1800
const bool Matcher::int_in_long = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1801
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1802
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1803
// Return whether or not this register is ever used as an argument.  This
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1804
// function is used on startup to build the trampoline stubs in generateOptoStub.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1805
// Registers not mentioned will be killed by the VM call in the trampoline, and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1806
// arguments in those registers not be available to the callee.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1807
bool Matcher::can_be_java_arg( int reg ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1808
  // Standard sparc 6 args in registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1809
  if( reg == R_I0_num ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1810
      reg == R_I1_num ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1811
      reg == R_I2_num ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1812
      reg == R_I3_num ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1813
      reg == R_I4_num ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1814
      reg == R_I5_num ) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1815
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1816
  // 64-bit builds can pass 64-bit pointers and longs in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1817
  // the high I registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1818
  if( reg == R_I0H_num ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1819
      reg == R_I1H_num ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1820
      reg == R_I2H_num ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1821
      reg == R_I3H_num ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1822
      reg == R_I4H_num ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1823
      reg == R_I5H_num ) return true;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  1824
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  1825
  if ((UseCompressedOops) && (reg == R_G6_num || reg == R_G6H_num)) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  1826
    return true;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  1827
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  1828
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1829
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1830
  // 32-bit builds with longs-in-one-entry pass longs in G1 & G4.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1831
  // Longs cannot be passed in O regs, because O regs become I regs
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1832
  // after a 'save' and I regs get their high bits chopped off on
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1833
  // interrupt.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1834
  if( reg == R_G1H_num || reg == R_G1_num ) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1835
  if( reg == R_G4H_num || reg == R_G4_num ) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1836
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1837
  // A few float args in registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1838
  if( reg >= R_F0_num && reg <= R_F7_num ) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1839
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1840
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1841
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1842
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1843
bool Matcher::is_spillable_arg( int reg ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1844
  return can_be_java_arg(reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1845
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1846
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1847
// Register for DIVI projection of divmodI
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1848
RegMask Matcher::divI_proj_mask() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1849
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1850
  return RegMask();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1851
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1852
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1853
// Register for MODI projection of divmodI
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1854
RegMask Matcher::modI_proj_mask() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1855
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1856
  return RegMask();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1857
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1858
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1859
// Register for DIVL projection of divmodL
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1860
RegMask Matcher::divL_proj_mask() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1861
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1862
  return RegMask();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1863
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1864
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1865
// Register for MODL projection of divmodL
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1866
RegMask Matcher::modL_proj_mask() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1867
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1868
  return RegMask();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1869
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1870
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1871
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1872
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1873
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1874
// The intptr_t operand types, defined by textual substitution.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1875
// (Cf. opto/type.hpp.  This lets us avoid many, many other ifdefs.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1876
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1877
#define immX    immL
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1878
#define immX13  immL13
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1879
#define iRegX   iRegL
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1880
#define g1RegX  g1RegL
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1881
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1882
#define immX    immI
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1883
#define immX13  immI13
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1884
#define iRegX   iRegI
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1885
#define g1RegX  g1RegI
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1886
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1887
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1888
//----------ENCODING BLOCK-----------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1889
// This block specifies the encoding classes used by the compiler to output
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1890
// byte streams.  Encoding classes are parameterized macros used by
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1891
// Machine Instruction Nodes in order to generate the bit encoding of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1892
// instruction.  Operands specify their base encoding interface with the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1893
// interface keyword.  There are currently supported four interfaces,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1894
// REG_INTER, CONST_INTER, MEMORY_INTER, & COND_INTER.  REG_INTER causes an
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1895
// operand to generate a function which returns its register number when
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1896
// queried.   CONST_INTER causes an operand to generate a function which
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1897
// returns the value of the constant when queried.  MEMORY_INTER causes an
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1898
// operand to generate four functions which return the Base Register, the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1899
// Index Register, the Scale Value, and the Offset Value of the operand when
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1900
// queried.  COND_INTER causes an operand to generate six functions which
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1901
// return the encoding code (ie - encoding bits for the instruction)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1902
// associated with each basic boolean condition for a conditional instruction.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1903
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1904
// Instructions specify two basic values for encoding.  Again, a function
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1905
// is available to check if the constant displacement is an oop. They use the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1906
// ins_encode keyword to specify their encoding classes (which must be
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1907
// a sequence of enc_class names, and their parameters, specified in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1908
// the encoding block), and they use the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1909
// opcode keyword to specify, in order, their primary, secondary, and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1910
// tertiary opcode.  Only the opcode sections which a particular instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1911
// needs for encoding need to be specified.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1912
encode %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1913
  enc_class enc_untested %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1914
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1915
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1916
    __ untested("encoding");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1917
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1918
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1919
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1920
  enc_class form3_mem_reg( memory mem, iRegI dst ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1921
    emit_form3_mem_reg(cbuf, this, $primary, $tertiary,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1922
                       $mem$$base, $mem$$disp, $mem$$index, $dst$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1923
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1924
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  1925
  enc_class simple_form3_mem_reg( memory mem, iRegI dst ) %{
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  1926
    emit_form3_mem_reg(cbuf, this, $primary, -1,
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  1927
                       $mem$$base, $mem$$disp, $mem$$index, $dst$$reg);
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  1928
  %}
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  1929
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1930
  enc_class form3_mem_reg_little( memory mem, iRegI dst) %{
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  1931
    emit_form3_mem_reg_asi(cbuf, this, $primary, -1,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1932
                     $mem$$base, $mem$$disp, $mem$$index, $dst$$reg, Assembler::ASI_PRIMARY_LITTLE);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1933
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1934
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1935
  enc_class form3_mem_prefetch_read( memory mem ) %{
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  1936
    emit_form3_mem_reg(cbuf, this, $primary, -1,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1937
                       $mem$$base, $mem$$disp, $mem$$index, 0/*prefetch function many-reads*/);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1938
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1939
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1940
  enc_class form3_mem_prefetch_write( memory mem ) %{
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  1941
    emit_form3_mem_reg(cbuf, this, $primary, -1,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1942
                       $mem$$base, $mem$$disp, $mem$$index, 2/*prefetch function many-writes*/);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1943
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1944
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1945
  enc_class form3_mem_reg_long_unaligned_marshal( memory mem, iRegL reg ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1946
    assert( Assembler::is_simm13($mem$$disp  ), "need disp and disp+4" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1947
    assert( Assembler::is_simm13($mem$$disp+4), "need disp and disp+4" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1948
    guarantee($mem$$index == R_G0_enc, "double index?");
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  1949
    emit_form3_mem_reg(cbuf, this, $primary, -1, $mem$$base, $mem$$disp+4, R_G0_enc, R_O7_enc );
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  1950
    emit_form3_mem_reg(cbuf, this, $primary, -1, $mem$$base, $mem$$disp,   R_G0_enc, $reg$$reg );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1951
    emit3_simm13( cbuf, Assembler::arith_op, $reg$$reg, Assembler::sllx_op3, $reg$$reg, 0x1020 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1952
    emit3( cbuf, Assembler::arith_op, $reg$$reg, Assembler::or_op3, $reg$$reg, 0, R_O7_enc );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1953
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1954
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1955
  enc_class form3_mem_reg_double_unaligned( memory mem, RegD_low reg ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1956
    assert( Assembler::is_simm13($mem$$disp  ), "need disp and disp+4" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1957
    assert( Assembler::is_simm13($mem$$disp+4), "need disp and disp+4" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1958
    guarantee($mem$$index == R_G0_enc, "double index?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1959
    // Load long with 2 instructions
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  1960
    emit_form3_mem_reg(cbuf, this, $primary, -1, $mem$$base, $mem$$disp,   R_G0_enc, $reg$$reg+0 );
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  1961
    emit_form3_mem_reg(cbuf, this, $primary, -1, $mem$$base, $mem$$disp+4, R_G0_enc, $reg$$reg+1 );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1962
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1963
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1964
  //%%% form3_mem_plus_4_reg is a hack--get rid of it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1965
  enc_class form3_mem_plus_4_reg( memory mem, iRegI dst ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1966
    guarantee($mem$$disp, "cannot offset a reg-reg operand by 4");
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  1967
    emit_form3_mem_reg(cbuf, this, $primary, -1, $mem$$base, $mem$$disp + 4, $mem$$index, $dst$$reg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1968
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1969
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1970
  enc_class form3_g0_rs2_rd_move( iRegI rs2, iRegI rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1971
    // Encode a reg-reg copy.  If it is useless, then empty encoding.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1972
    if( $rs2$$reg != $rd$$reg )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1973
      emit3( cbuf, Assembler::arith_op, $rd$$reg, Assembler::or_op3, 0, 0, $rs2$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1974
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1975
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1976
  // Target lo half of long
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1977
  enc_class form3_g0_rs2_rd_move_lo( iRegI rs2, iRegL rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1978
    // Encode a reg-reg copy.  If it is useless, then empty encoding.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1979
    if( $rs2$$reg != LONG_LO_REG($rd$$reg) )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1980
      emit3( cbuf, Assembler::arith_op, LONG_LO_REG($rd$$reg), Assembler::or_op3, 0, 0, $rs2$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1981
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1982
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1983
  // Source lo half of long
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1984
  enc_class form3_g0_rs2_rd_move_lo2( iRegL rs2, iRegI rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1985
    // Encode a reg-reg copy.  If it is useless, then empty encoding.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1986
    if( LONG_LO_REG($rs2$$reg) != $rd$$reg )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1987
      emit3( cbuf, Assembler::arith_op, $rd$$reg, Assembler::or_op3, 0, 0, LONG_LO_REG($rs2$$reg) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1988
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1989
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1990
  // Target hi half of long
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1991
  enc_class form3_rs1_rd_copysign_hi( iRegI rs1, iRegL rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1992
    emit3_simm13( cbuf, Assembler::arith_op, $rd$$reg, Assembler::sra_op3, $rs1$$reg, 31 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1993
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1994
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1995
  // Source lo half of long, and leave it sign extended.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1996
  enc_class form3_rs1_rd_signextend_lo1( iRegL rs1, iRegI rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1997
    // Sign extend low half
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1998
    emit3( cbuf, Assembler::arith_op, $rd$$reg, Assembler::sra_op3, $rs1$$reg, 0, 0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1999
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2000
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2001
  // Source hi half of long, and leave it sign extended.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2002
  enc_class form3_rs1_rd_copy_hi1( iRegL rs1, iRegI rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2003
    // Shift high half to low half
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2004
    emit3_simm13( cbuf, Assembler::arith_op, $rd$$reg, Assembler::srlx_op3, $rs1$$reg, 32 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2005
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2006
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2007
  // Source hi half of long
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2008
  enc_class form3_g0_rs2_rd_move_hi2( iRegL rs2, iRegI rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2009
    // Encode a reg-reg copy.  If it is useless, then empty encoding.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2010
    if( LONG_HI_REG($rs2$$reg) != $rd$$reg )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2011
      emit3( cbuf, Assembler::arith_op, $rd$$reg, Assembler::or_op3, 0, 0, LONG_HI_REG($rs2$$reg) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2012
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2013
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2014
  enc_class form3_rs1_rs2_rd( iRegI rs1, iRegI rs2, iRegI rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2015
    emit3( cbuf, $secondary, $rd$$reg, $primary, $rs1$$reg, 0, $rs2$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2016
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2017
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2018
  enc_class enc_to_bool( iRegI src, iRegI dst ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2019
    emit3       ( cbuf, Assembler::arith_op,         0, Assembler::subcc_op3, 0, 0, $src$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2020
    emit3_simm13( cbuf, Assembler::arith_op, $dst$$reg, Assembler::addc_op3 , 0, 0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2021
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2022
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2023
  enc_class enc_ltmask( iRegI p, iRegI q, iRegI dst ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2024
    emit3       ( cbuf, Assembler::arith_op,         0, Assembler::subcc_op3, $p$$reg, 0, $q$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2025
    // clear if nothing else is happening
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2026
    emit3_simm13( cbuf, Assembler::arith_op, $dst$$reg, Assembler::or_op3, 0,  0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2027
    // blt,a,pn done
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2028
    emit2_19    ( cbuf, Assembler::branch_op, 1/*annul*/, Assembler::less, Assembler::bp_op2, Assembler::icc, 0/*predict not taken*/, 2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2029
    // mov dst,-1 in delay slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2030
    emit3_simm13( cbuf, Assembler::arith_op, $dst$$reg, Assembler::or_op3, 0, -1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2031
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2032
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2033
  enc_class form3_rs1_imm5_rd( iRegI rs1, immU5 imm5, iRegI rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2034
    emit3_simm13( cbuf, $secondary, $rd$$reg, $primary, $rs1$$reg, $imm5$$constant & 0x1F );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2035
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2036
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2037
  enc_class form3_sd_rs1_imm6_rd( iRegL rs1, immU6 imm6, iRegL rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2038
    emit3_simm13( cbuf, $secondary, $rd$$reg, $primary, $rs1$$reg, ($imm6$$constant & 0x3F) | 0x1000 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2039
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2040
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2041
  enc_class form3_sd_rs1_rs2_rd( iRegL rs1, iRegI rs2, iRegL rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2042
    emit3( cbuf, $secondary, $rd$$reg, $primary, $rs1$$reg, 0x80, $rs2$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2043
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2044
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2045
  enc_class form3_rs1_simm13_rd( iRegI rs1, immI13 simm13, iRegI rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2046
    emit3_simm13( cbuf, $secondary, $rd$$reg, $primary, $rs1$$reg, $simm13$$constant );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2047
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2048
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2049
  enc_class move_return_pc_to_o1() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2050
    emit3_simm13( cbuf, Assembler::arith_op, R_O1_enc, Assembler::add_op3, R_O7_enc, frame::pc_return_offset );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2051
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2052
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2053
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2054
  /* %%% merge with enc_to_bool */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2055
  enc_class enc_convP2B( iRegI dst, iRegP src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2056
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2057
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2058
    Register   src_reg = reg_to_register_object($src$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2059
    Register   dst_reg = reg_to_register_object($dst$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2060
    __ movr(Assembler::rc_nz, src_reg, 1, dst_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2061
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2062
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2063
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2064
  enc_class enc_cadd_cmpLTMask( iRegI p, iRegI q, iRegI y, iRegI tmp ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2065
    // (Set p (AddI (AndI (CmpLTMask p q) y) (SubI p q)))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2066
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2067
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2068
    Register   p_reg = reg_to_register_object($p$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2069
    Register   q_reg = reg_to_register_object($q$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2070
    Register   y_reg = reg_to_register_object($y$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2071
    Register tmp_reg = reg_to_register_object($tmp$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2072
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2073
    __ subcc( p_reg, q_reg,   p_reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2074
    __ add  ( p_reg, y_reg, tmp_reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2075
    __ movcc( Assembler::less, false, Assembler::icc, tmp_reg, p_reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2076
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2077
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2078
  enc_class form_d2i_helper(regD src, regF dst) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2079
    // fcmp %fcc0,$src,$src
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2080
    emit3( cbuf, Assembler::arith_op , Assembler::fcc0, Assembler::fpop2_op3, $src$$reg, Assembler::fcmpd_opf, $src$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2081
    // branch %fcc0 not-nan, predict taken
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2082
    emit2_19( cbuf, Assembler::branch_op, 0/*annul*/, Assembler::f_ordered, Assembler::fbp_op2, Assembler::fcc0, 1/*predict taken*/, 4 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2083
    // fdtoi $src,$dst
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2084
    emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3,         0, Assembler::fdtoi_opf, $src$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2085
    // fitos $dst,$dst (if nan)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2086
    emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3,         0, Assembler::fitos_opf, $dst$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2087
    // clear $dst (if nan)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2088
    emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3, $dst$$reg, Assembler::fsubs_opf, $dst$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2089
    // carry on here...
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2090
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2091
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2092
  enc_class form_d2l_helper(regD src, regD dst) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2093
    // fcmp %fcc0,$src,$src  check for NAN
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2094
    emit3( cbuf, Assembler::arith_op , Assembler::fcc0, Assembler::fpop2_op3, $src$$reg, Assembler::fcmpd_opf, $src$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2095
    // branch %fcc0 not-nan, predict taken
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2096
    emit2_19( cbuf, Assembler::branch_op, 0/*annul*/, Assembler::f_ordered, Assembler::fbp_op2, Assembler::fcc0, 1/*predict taken*/, 4 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2097
    // fdtox $src,$dst   convert in delay slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2098
    emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3,         0, Assembler::fdtox_opf, $src$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2099
    // fxtod $dst,$dst  (if nan)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2100
    emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3,         0, Assembler::fxtod_opf, $dst$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2101
    // clear $dst (if nan)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2102
    emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3, $dst$$reg, Assembler::fsubd_opf, $dst$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2103
    // carry on here...
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2104
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2105
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2106
  enc_class form_f2i_helper(regF src, regF dst) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2107
    // fcmps %fcc0,$src,$src
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2108
    emit3( cbuf, Assembler::arith_op , Assembler::fcc0, Assembler::fpop2_op3, $src$$reg, Assembler::fcmps_opf, $src$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2109
    // branch %fcc0 not-nan, predict taken
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2110
    emit2_19( cbuf, Assembler::branch_op, 0/*annul*/, Assembler::f_ordered, Assembler::fbp_op2, Assembler::fcc0, 1/*predict taken*/, 4 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2111
    // fstoi $src,$dst
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2112
    emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3,         0, Assembler::fstoi_opf, $src$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2113
    // fitos $dst,$dst (if nan)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2114
    emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3,         0, Assembler::fitos_opf, $dst$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2115
    // clear $dst (if nan)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2116
    emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3, $dst$$reg, Assembler::fsubs_opf, $dst$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2117
    // carry on here...
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2118
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2119
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2120
  enc_class form_f2l_helper(regF src, regD dst) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2121
    // fcmps %fcc0,$src,$src
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2122
    emit3( cbuf, Assembler::arith_op , Assembler::fcc0, Assembler::fpop2_op3, $src$$reg, Assembler::fcmps_opf, $src$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2123
    // branch %fcc0 not-nan, predict taken
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2124
    emit2_19( cbuf, Assembler::branch_op, 0/*annul*/, Assembler::f_ordered, Assembler::fbp_op2, Assembler::fcc0, 1/*predict taken*/, 4 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2125
    // fstox $src,$dst
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2126
    emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3,         0, Assembler::fstox_opf, $src$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2127
    // fxtod $dst,$dst (if nan)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2128
    emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3,         0, Assembler::fxtod_opf, $dst$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2129
    // clear $dst (if nan)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2130
    emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3, $dst$$reg, Assembler::fsubd_opf, $dst$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2131
    // carry on here...
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2132
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2133
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2134
  enc_class form3_opf_rs2F_rdF(regF rs2, regF rd) %{ emit3(cbuf,$secondary,$rd$$reg,$primary,0,$tertiary,$rs2$$reg); %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2135
  enc_class form3_opf_rs2F_rdD(regF rs2, regD rd) %{ emit3(cbuf,$secondary,$rd$$reg,$primary,0,$tertiary,$rs2$$reg); %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2136
  enc_class form3_opf_rs2D_rdF(regD rs2, regF rd) %{ emit3(cbuf,$secondary,$rd$$reg,$primary,0,$tertiary,$rs2$$reg); %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2137
  enc_class form3_opf_rs2D_rdD(regD rs2, regD rd) %{ emit3(cbuf,$secondary,$rd$$reg,$primary,0,$tertiary,$rs2$$reg); %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2138
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2139
  enc_class form3_opf_rs2D_lo_rdF(regD rs2, regF rd) %{ emit3(cbuf,$secondary,$rd$$reg,$primary,0,$tertiary,$rs2$$reg+1); %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2140
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2141
  enc_class form3_opf_rs2D_hi_rdD_hi(regD rs2, regD rd) %{ emit3(cbuf,$secondary,$rd$$reg,$primary,0,$tertiary,$rs2$$reg); %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2142
  enc_class form3_opf_rs2D_lo_rdD_lo(regD rs2, regD rd) %{ emit3(cbuf,$secondary,$rd$$reg+1,$primary,0,$tertiary,$rs2$$reg+1); %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2143
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2144
  enc_class form3_opf_rs1F_rs2F_rdF( regF rs1, regF rs2, regF rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2145
    emit3( cbuf, $secondary, $rd$$reg, $primary, $rs1$$reg, $tertiary, $rs2$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2146
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2147
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2148
  enc_class form3_opf_rs1D_rs2D_rdD( regD rs1, regD rs2, regD rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2149
    emit3( cbuf, $secondary, $rd$$reg, $primary, $rs1$$reg, $tertiary, $rs2$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2150
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2151
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2152
  enc_class form3_opf_rs1F_rs2F_fcc( regF rs1, regF rs2, flagsRegF fcc ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2153
    emit3( cbuf, $secondary, $fcc$$reg, $primary, $rs1$$reg, $tertiary, $rs2$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2154
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2155
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2156
  enc_class form3_opf_rs1D_rs2D_fcc( regD rs1, regD rs2, flagsRegF fcc ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2157
    emit3( cbuf, $secondary, $fcc$$reg, $primary, $rs1$$reg, $tertiary, $rs2$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2158
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2159
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2160
  enc_class form3_convI2F(regF rs2, regF rd) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2161
    emit3(cbuf,Assembler::arith_op,$rd$$reg,Assembler::fpop1_op3,0,$secondary,$rs2$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2162
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2163
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2164
  // Encloding class for traceable jumps
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2165
  enc_class form_jmpl(g3RegP dest) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2166
    emit_jmpl(cbuf, $dest$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2167
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2168
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2169
  enc_class form_jmpl_set_exception_pc(g1RegP dest) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2170
    emit_jmpl_set_exception_pc(cbuf, $dest$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2171
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2172
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2173
  enc_class form2_nop() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2174
    emit_nop(cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2175
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2176
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2177
  enc_class form2_illtrap() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2178
    emit_illtrap(cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2179
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2180
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2181
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2182
  // Compare longs and convert into -1, 0, 1.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2183
  enc_class cmpl_flag( iRegL src1, iRegL src2, iRegI dst ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2184
    // CMP $src1,$src2
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2185
    emit3( cbuf, Assembler::arith_op, 0, Assembler::subcc_op3, $src1$$reg, 0, $src2$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2186
    // blt,a,pn done
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2187
    emit2_19( cbuf, Assembler::branch_op, 1/*annul*/, Assembler::less   , Assembler::bp_op2, Assembler::xcc, 0/*predict not taken*/, 5 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2188
    // mov dst,-1 in delay slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2189
    emit3_simm13( cbuf, Assembler::arith_op, $dst$$reg, Assembler::or_op3, 0, -1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2190
    // bgt,a,pn done
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2191
    emit2_19( cbuf, Assembler::branch_op, 1/*annul*/, Assembler::greater, Assembler::bp_op2, Assembler::xcc, 0/*predict not taken*/, 3 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2192
    // mov dst,1 in delay slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2193
    emit3_simm13( cbuf, Assembler::arith_op, $dst$$reg, Assembler::or_op3, 0,  1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2194
    // CLR    $dst
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2195
    emit3( cbuf, Assembler::arith_op, $dst$$reg, Assembler::or_op3 , 0, 0, 0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2196
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2197
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2198
  enc_class enc_PartialSubtypeCheck() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2199
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2200
    __ call(StubRoutines::Sparc::partial_subtype_check(), relocInfo::runtime_call_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2201
    __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2202
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2203
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2204
  enc_class enc_bp( Label labl, cmpOp cmp, flagsReg cc ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2205
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2206
    Label &L = *($labl$$label);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2207
    Assembler::Predict predict_taken =
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2208
      cbuf.is_backward_branch(L) ? Assembler::pt : Assembler::pn;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2209
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2210
    __ bp( (Assembler::Condition)($cmp$$cmpcode), false, Assembler::icc, predict_taken, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2211
    __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2212
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2213
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2214
  enc_class enc_bpl( Label labl, cmpOp cmp, flagsRegL cc ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2215
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2216
    Label &L = *($labl$$label);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2217
    Assembler::Predict predict_taken =
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2218
      cbuf.is_backward_branch(L) ? Assembler::pt : Assembler::pn;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2219
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2220
    __ bp( (Assembler::Condition)($cmp$$cmpcode), false, Assembler::xcc, predict_taken, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2221
    __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2222
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2223
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2224
  enc_class enc_bpx( Label labl, cmpOp cmp, flagsRegP cc ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2225
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2226
    Label &L = *($labl$$label);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2227
    Assembler::Predict predict_taken =
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2228
      cbuf.is_backward_branch(L) ? Assembler::pt : Assembler::pn;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2229
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2230
    __ bp( (Assembler::Condition)($cmp$$cmpcode), false, Assembler::ptr_cc, predict_taken, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2231
    __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2232
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2233
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2234
  enc_class enc_fbp( Label labl, cmpOpF cmp, flagsRegF cc ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2235
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2236
    Label &L = *($labl$$label);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2237
    Assembler::Predict predict_taken =
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2238
      cbuf.is_backward_branch(L) ? Assembler::pt : Assembler::pn;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2239
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2240
    __ fbp( (Assembler::Condition)($cmp$$cmpcode), false, (Assembler::CC)($cc$$reg), predict_taken, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2241
    __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2242
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2243
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2244
  enc_class jump_enc( iRegX switch_val, o7RegI table) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2245
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2246
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2247
    Register switch_reg       = as_Register($switch_val$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2248
    Register table_reg        = O7;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2249
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2250
    address table_base = __ address_table_constant(_index2label);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2251
    RelocationHolder rspec = internal_word_Relocation::spec(table_base);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2252
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  2253
    // Move table address into a register.
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  2254
    __ set(table_base, table_reg, rspec);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2255
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2256
    // Jump to base address + switch value
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2257
    __ ld_ptr(table_reg, switch_reg, table_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2258
    __ jmp(table_reg, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2259
    __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2260
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2261
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2262
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2263
  enc_class enc_ba( Label labl ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2264
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2265
    Label &L = *($labl$$label);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2266
    __ ba(false, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2267
    __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2268
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2269
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2270
  enc_class enc_bpr( Label labl, cmpOp_reg cmp, iRegI op1 ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2271
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2272
    Label &L = *$labl$$label;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2273
    Assembler::Predict predict_taken =
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2274
      cbuf.is_backward_branch(L) ? Assembler::pt : Assembler::pn;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2275
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2276
    __ bpr( (Assembler::RCondition)($cmp$$cmpcode), false, predict_taken, as_Register($op1$$reg), L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2277
    __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2278
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2279
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2280
  enc_class enc_cmov_reg( cmpOp cmp, iRegI dst, iRegI src, immI pcc) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2281
    int op = (Assembler::arith_op << 30) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2282
             ($dst$$reg << 25) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2283
             (Assembler::movcc_op3 << 19) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2284
             (1 << 18) |                    // cc2 bit for 'icc'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2285
             ($cmp$$cmpcode << 14) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2286
             (0 << 13) |                    // select register move
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2287
             ($pcc$$constant << 11) |       // cc1, cc0 bits for 'icc' or 'xcc'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2288
             ($src$$reg << 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2289
    *((int*)(cbuf.code_end())) = op;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2290
    cbuf.set_code_end(cbuf.code_end() + BytesPerInstWord);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2291
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2292
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2293
  enc_class enc_cmov_imm( cmpOp cmp, iRegI dst, immI11 src, immI pcc ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2294
    int simm11 = $src$$constant & ((1<<11)-1); // Mask to 11 bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2295
    int op = (Assembler::arith_op << 30) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2296
             ($dst$$reg << 25) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2297
             (Assembler::movcc_op3 << 19) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2298
             (1 << 18) |                    // cc2 bit for 'icc'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2299
             ($cmp$$cmpcode << 14) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2300
             (1 << 13) |                    // select immediate move
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2301
             ($pcc$$constant << 11) |       // cc1, cc0 bits for 'icc'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2302
             (simm11 << 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2303
    *((int*)(cbuf.code_end())) = op;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2304
    cbuf.set_code_end(cbuf.code_end() + BytesPerInstWord);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2305
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2306
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2307
  enc_class enc_cmov_reg_f( cmpOpF cmp, iRegI dst, iRegI src, flagsRegF fcc ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2308
    int op = (Assembler::arith_op << 30) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2309
             ($dst$$reg << 25) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2310
             (Assembler::movcc_op3 << 19) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2311
             (0 << 18) |                    // cc2 bit for 'fccX'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2312
             ($cmp$$cmpcode << 14) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2313
             (0 << 13) |                    // select register move
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2314
             ($fcc$$reg << 11) |            // cc1, cc0 bits for fcc0-fcc3
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2315
             ($src$$reg << 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2316
    *((int*)(cbuf.code_end())) = op;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2317
    cbuf.set_code_end(cbuf.code_end() + BytesPerInstWord);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2318
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2319
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2320
  enc_class enc_cmov_imm_f( cmpOp cmp, iRegI dst, immI11 src, flagsRegF fcc ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2321
    int simm11 = $src$$constant & ((1<<11)-1); // Mask to 11 bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2322
    int op = (Assembler::arith_op << 30) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2323
             ($dst$$reg << 25) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2324
             (Assembler::movcc_op3 << 19) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2325
             (0 << 18) |                    // cc2 bit for 'fccX'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2326
             ($cmp$$cmpcode << 14) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2327
             (1 << 13) |                    // select immediate move
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2328
             ($fcc$$reg << 11) |            // cc1, cc0 bits for fcc0-fcc3
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2329
             (simm11 << 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2330
    *((int*)(cbuf.code_end())) = op;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2331
    cbuf.set_code_end(cbuf.code_end() + BytesPerInstWord);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2332
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2333
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2334
  enc_class enc_cmovf_reg( cmpOp cmp, regD dst, regD src, immI pcc ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2335
    int op = (Assembler::arith_op << 30) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2336
             ($dst$$reg << 25) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2337
             (Assembler::fpop2_op3 << 19) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2338
             (0 << 18) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2339
             ($cmp$$cmpcode << 14) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2340
             (1 << 13) |                    // select register move
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2341
             ($pcc$$constant << 11) |       // cc1-cc0 bits for 'icc' or 'xcc'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2342
             ($primary << 5) |              // select single, double or quad
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2343
             ($src$$reg << 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2344
    *((int*)(cbuf.code_end())) = op;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2345
    cbuf.set_code_end(cbuf.code_end() + BytesPerInstWord);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2346
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2347
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2348
  enc_class enc_cmovff_reg( cmpOpF cmp, flagsRegF fcc, regD dst, regD src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2349
    int op = (Assembler::arith_op << 30) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2350
             ($dst$$reg << 25) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2351
             (Assembler::fpop2_op3 << 19) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2352
             (0 << 18) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2353
             ($cmp$$cmpcode << 14) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2354
             ($fcc$$reg << 11) |            // cc2-cc0 bits for 'fccX'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2355
             ($primary << 5) |              // select single, double or quad
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2356
             ($src$$reg << 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2357
    *((int*)(cbuf.code_end())) = op;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2358
    cbuf.set_code_end(cbuf.code_end() + BytesPerInstWord);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2359
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2360
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2361
  // Used by the MIN/MAX encodings.  Same as a CMOV, but
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2362
  // the condition comes from opcode-field instead of an argument.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2363
  enc_class enc_cmov_reg_minmax( iRegI dst, iRegI src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2364
    int op = (Assembler::arith_op << 30) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2365
             ($dst$$reg << 25) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2366
             (Assembler::movcc_op3 << 19) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2367
             (1 << 18) |                    // cc2 bit for 'icc'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2368
             ($primary << 14) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2369
             (0 << 13) |                    // select register move
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2370
             (0 << 11) |                    // cc1, cc0 bits for 'icc'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2371
             ($src$$reg << 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2372
    *((int*)(cbuf.code_end())) = op;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2373
    cbuf.set_code_end(cbuf.code_end() + BytesPerInstWord);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2374
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2375
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2376
  enc_class enc_cmov_reg_minmax_long( iRegL dst, iRegL src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2377
    int op = (Assembler::arith_op << 30) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2378
             ($dst$$reg << 25) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2379
             (Assembler::movcc_op3 << 19) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2380
             (6 << 16) |                    // cc2 bit for 'xcc'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2381
             ($primary << 14) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2382
             (0 << 13) |                    // select register move
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2383
             (0 << 11) |                    // cc1, cc0 bits for 'icc'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2384
             ($src$$reg << 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2385
    *((int*)(cbuf.code_end())) = op;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2386
    cbuf.set_code_end(cbuf.code_end() + BytesPerInstWord);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2387
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2388
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2389
  // Utility encoding for loading a 64 bit Pointer into a register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2390
  // The 64 bit pointer is stored in the generated code stream
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2391
  enc_class SetPtr( immP src, iRegP rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2392
    Register dest = reg_to_register_object($rd$$reg);
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  2393
    MacroAssembler _masm(&cbuf);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2394
    // [RGV] This next line should be generated from ADLC
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2395
    if ( _opnds[1]->constant_is_oop() ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2396
      intptr_t val = $src$$constant;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2397
      __ set_oop_constant((jobject)val, dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2398
    } else {          // non-oop pointers, e.g. card mark base, heap top
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  2399
      __ set($src$$constant, dest);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2400
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2401
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2402
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2403
  enc_class Set13( immI13 src, iRegI rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2404
    emit3_simm13( cbuf, Assembler::arith_op, $rd$$reg, Assembler::or_op3, 0, $src$$constant );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2405
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2406
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2407
  enc_class SetHi22( immI src, iRegI rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2408
    emit2_22( cbuf, Assembler::branch_op, $rd$$reg, Assembler::sethi_op2, $src$$constant );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2409
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2410
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2411
  enc_class Set32( immI src, iRegI rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2412
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2413
    __ set($src$$constant, reg_to_register_object($rd$$reg));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2414
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2415
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2416
  enc_class SetNull( iRegI rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2417
    emit3_simm13( cbuf, Assembler::arith_op, $rd$$reg, Assembler::or_op3, 0, 0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2418
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2419
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2420
  enc_class call_epilog %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2421
    if( VerifyStackAtCalls ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2422
      MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2423
      int framesize = ra_->C->frame_slots() << LogBytesPerInt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2424
      Register temp_reg = G3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2425
      __ add(SP, framesize, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2426
      __ cmp(temp_reg, FP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2427
      __ breakpoint_trap(Assembler::notEqual, Assembler::ptr_cc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2428
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2429
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2430
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2431
  // Long values come back from native calls in O0:O1 in the 32-bit VM, copy the value
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2432
  // to G1 so the register allocator will not have to deal with the misaligned register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2433
  // pair.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2434
  enc_class adjust_long_from_native_call %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2435
#ifndef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2436
    if (returns_long()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2437
      //    sllx  O0,32,O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2438
      emit3_simm13( cbuf, Assembler::arith_op, R_O0_enc, Assembler::sllx_op3, R_O0_enc, 0x1020 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2439
      //    srl   O1,0,O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2440
      emit3_simm13( cbuf, Assembler::arith_op, R_O1_enc, Assembler::srl_op3, R_O1_enc, 0x0000 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2441
      //    or    O0,O1,G1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2442
      emit3       ( cbuf, Assembler::arith_op, R_G1_enc, Assembler:: or_op3, R_O0_enc, 0, R_O1_enc );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2443
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2444
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2445
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2446
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2447
  enc_class Java_To_Runtime (method meth) %{    // CALL Java_To_Runtime
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2448
    // CALL directly to the runtime
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2449
    // The user of this is responsible for ensuring that R_L7 is empty (killed).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2450
    emit_call_reloc(cbuf, $meth$$method, relocInfo::runtime_call_type,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2451
                    /*preserve_g2=*/true, /*force far call*/true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2452
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2453
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2454
  enc_class Java_Static_Call (method meth) %{    // JAVA STATIC CALL
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2455
    // CALL to fixup routine.  Fixup routine uses ScopeDesc info to determine
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2456
    // who we intended to call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2457
    if ( !_method ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2458
      emit_call_reloc(cbuf, $meth$$method, relocInfo::runtime_call_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2459
    } else if (_optimized_virtual) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2460
      emit_call_reloc(cbuf, $meth$$method, relocInfo::opt_virtual_call_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2461
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2462
      emit_call_reloc(cbuf, $meth$$method, relocInfo::static_call_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2463
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2464
    if( _method ) {  // Emit stub for static call
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2465
      emit_java_to_interp(cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2466
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2467
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2468
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2469
  enc_class Java_Dynamic_Call (method meth) %{    // JAVA DYNAMIC CALL
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2470
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2471
    __ set_inst_mark();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2472
    int vtable_index = this->_vtable_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2473
    // MachCallDynamicJavaNode::ret_addr_offset uses this same test
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2474
    if (vtable_index < 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2475
      // must be invalid_vtable_index, not nonvirtual_vtable_index
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2476
      assert(vtable_index == methodOopDesc::invalid_vtable_index, "correct sentinel value");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2477
      Register G5_ic_reg = reg_to_register_object(Matcher::inline_cache_reg_encode());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2478
      assert(G5_ic_reg == G5_inline_cache_reg, "G5_inline_cache_reg used in assemble_ic_buffer_code()");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2479
      assert(G5_ic_reg == G5_megamorphic_method, "G5_megamorphic_method used in megamorphic call stub");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2480
      // !!!!!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2481
      // Generate  "set 0x01, R_G5", placeholder instruction to load oop-info
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2482
      // emit_call_dynamic_prologue( cbuf );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2483
      __ set_oop((jobject)Universe::non_oop_word(), G5_ic_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2484
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2485
      address  virtual_call_oop_addr = __ inst_mark();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2486
      // CALL to fixup routine.  Fixup routine uses ScopeDesc info to determine
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2487
      // who we intended to call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2488
      __ relocate(virtual_call_Relocation::spec(virtual_call_oop_addr));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2489
      emit_call_reloc(cbuf, $meth$$method, relocInfo::none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2490
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2491
      assert(!UseInlineCaches, "expect vtable calls only if not using ICs");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2492
      // Just go thru the vtable
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2493
      // get receiver klass (receiver already checked for non-null)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2494
      // If we end up going thru a c2i adapter interpreter expects method in G5
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2495
      int off = __ offset();
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  2496
      __ load_klass(O0, G3_scratch);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  2497
      int klass_load_size;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  2498
      if (UseCompressedOops) {
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2150
diff changeset
  2499
        assert(Universe::heap() != NULL, "java heap should be initialized");
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2150
diff changeset
  2500
        if (Universe::narrow_oop_base() == NULL)
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2150
diff changeset
  2501
          klass_load_size = 2*BytesPerInstWord;
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2150
diff changeset
  2502
        else
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2150
diff changeset
  2503
          klass_load_size = 3*BytesPerInstWord;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  2504
      } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  2505
        klass_load_size = 1*BytesPerInstWord;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  2506
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2507
      int entry_offset = instanceKlass::vtable_start_offset() + vtable_index*vtableEntry::size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2508
      int v_off = entry_offset*wordSize + vtableEntry::method_offset_in_bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2509
      if( __ is_simm13(v_off) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2510
        __ ld_ptr(G3, v_off, G5_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2511
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2512
        // Generate 2 instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2513
        __ Assembler::sethi(v_off & ~0x3ff, G5_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2514
        __ or3(G5_method, v_off & 0x3ff, G5_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2515
        // ld_ptr, set_hi, set
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  2516
        assert(__ offset() - off == klass_load_size + 2*BytesPerInstWord,
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  2517
               "Unexpected instruction size(s)");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2518
        __ ld_ptr(G3, G5_method, G5_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2519
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2520
      // NOTE: for vtable dispatches, the vtable entry will never be null.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2521
      // However it may very well end up in handle_wrong_method if the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2522
      // method is abstract for the particular class.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2523
      __ ld_ptr(G5_method, in_bytes(methodOopDesc::from_compiled_offset()), G3_scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2524
      // jump to target (either compiled code or c2iadapter)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2525
      __ jmpl(G3_scratch, G0, O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2526
      __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2527
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2528
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2529
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2530
  enc_class Java_Compiled_Call (method meth) %{    // JAVA COMPILED CALL
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2531
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2532
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2533
    Register G5_ic_reg = reg_to_register_object(Matcher::inline_cache_reg_encode());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2534
    Register temp_reg = G3;   // caller must kill G3!  We cannot reuse G5_ic_reg here because
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2535
                              // we might be calling a C2I adapter which needs it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2536
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2537
    assert(temp_reg != G5_ic_reg, "conflicting registers");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2538
    // Load nmethod
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2539
    __ ld_ptr(G5_ic_reg, in_bytes(methodOopDesc::from_compiled_offset()), temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2540
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2541
    // CALL to compiled java, indirect the contents of G3
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2542
    __ set_inst_mark();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2543
    __ callr(temp_reg, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2544
    __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2545
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2546
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2547
enc_class idiv_reg(iRegIsafe src1, iRegIsafe src2, iRegIsafe dst) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2548
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2549
    Register Rdividend = reg_to_register_object($src1$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2550
    Register Rdivisor = reg_to_register_object($src2$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2551
    Register Rresult = reg_to_register_object($dst$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2552
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2553
    __ sra(Rdivisor, 0, Rdivisor);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2554
    __ sra(Rdividend, 0, Rdividend);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2555
    __ sdivx(Rdividend, Rdivisor, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2556
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2557
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2558
enc_class idiv_imm(iRegIsafe src1, immI13 imm, iRegIsafe dst) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2559
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2560
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2561
    Register Rdividend = reg_to_register_object($src1$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2562
    int divisor = $imm$$constant;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2563
    Register Rresult = reg_to_register_object($dst$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2564
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2565
    __ sra(Rdividend, 0, Rdividend);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2566
    __ sdivx(Rdividend, divisor, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2567
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2568
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2569
enc_class enc_mul_hi(iRegIsafe dst, iRegIsafe src1, iRegIsafe src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2570
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2571
    Register Rsrc1 = reg_to_register_object($src1$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2572
    Register Rsrc2 = reg_to_register_object($src2$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2573
    Register Rdst  = reg_to_register_object($dst$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2574
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2575
    __ sra( Rsrc1, 0, Rsrc1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2576
    __ sra( Rsrc2, 0, Rsrc2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2577
    __ mulx( Rsrc1, Rsrc2, Rdst );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2578
    __ srlx( Rdst, 32, Rdst );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2579
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2580
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2581
enc_class irem_reg(iRegIsafe src1, iRegIsafe src2, iRegIsafe dst, o7RegL scratch) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2582
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2583
    Register Rdividend = reg_to_register_object($src1$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2584
    Register Rdivisor = reg_to_register_object($src2$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2585
    Register Rresult = reg_to_register_object($dst$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2586
    Register Rscratch = reg_to_register_object($scratch$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2587
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2588
    assert(Rdividend != Rscratch, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2589
    assert(Rdivisor  != Rscratch, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2590
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2591
    __ sra(Rdividend, 0, Rdividend);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2592
    __ sra(Rdivisor, 0, Rdivisor);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2593
    __ sdivx(Rdividend, Rdivisor, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2594
    __ mulx(Rscratch, Rdivisor, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2595
    __ sub(Rdividend, Rscratch, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2596
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2597
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2598
enc_class irem_imm(iRegIsafe src1, immI13 imm, iRegIsafe dst, o7RegL scratch) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2599
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2600
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2601
    Register Rdividend = reg_to_register_object($src1$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2602
    int divisor = $imm$$constant;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2603
    Register Rresult = reg_to_register_object($dst$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2604
    Register Rscratch = reg_to_register_object($scratch$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2605
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2606
    assert(Rdividend != Rscratch, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2607
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2608
    __ sra(Rdividend, 0, Rdividend);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2609
    __ sdivx(Rdividend, divisor, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2610
    __ mulx(Rscratch, divisor, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2611
    __ sub(Rdividend, Rscratch, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2612
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2613
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2614
enc_class fabss (sflt_reg dst, sflt_reg src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2615
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2616
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2617
    FloatRegister Fdst = reg_to_SingleFloatRegister_object($dst$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2618
    FloatRegister Fsrc = reg_to_SingleFloatRegister_object($src$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2619
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2620
    __ fabs(FloatRegisterImpl::S, Fsrc, Fdst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2621
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2622
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2623
enc_class fabsd (dflt_reg dst, dflt_reg src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2624
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2625
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2626
    FloatRegister Fdst = reg_to_DoubleFloatRegister_object($dst$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2627
    FloatRegister Fsrc = reg_to_DoubleFloatRegister_object($src$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2628
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2629
    __ fabs(FloatRegisterImpl::D, Fsrc, Fdst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2630
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2631
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2632
enc_class fnegd (dflt_reg dst, dflt_reg src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2633
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2634
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2635
    FloatRegister Fdst = reg_to_DoubleFloatRegister_object($dst$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2636
    FloatRegister Fsrc = reg_to_DoubleFloatRegister_object($src$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2637
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2638
    __ fneg(FloatRegisterImpl::D, Fsrc, Fdst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2639
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2640
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2641
enc_class fsqrts (sflt_reg dst, sflt_reg src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2642
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2643
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2644
    FloatRegister Fdst = reg_to_SingleFloatRegister_object($dst$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2645
    FloatRegister Fsrc = reg_to_SingleFloatRegister_object($src$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2646
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2647
    __ fsqrt(FloatRegisterImpl::S, Fsrc, Fdst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2648
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2649
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2650
enc_class fsqrtd (dflt_reg dst, dflt_reg src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2651
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2652
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2653
    FloatRegister Fdst = reg_to_DoubleFloatRegister_object($dst$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2654
    FloatRegister Fsrc = reg_to_DoubleFloatRegister_object($src$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2655
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2656
    __ fsqrt(FloatRegisterImpl::D, Fsrc, Fdst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2657
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2658
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2659
enc_class fmovs (dflt_reg dst, dflt_reg src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2660
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2661
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2662
    FloatRegister Fdst = reg_to_SingleFloatRegister_object($dst$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2663
    FloatRegister Fsrc = reg_to_SingleFloatRegister_object($src$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2664
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2665
    __ fmov(FloatRegisterImpl::S, Fsrc, Fdst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2666
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2667
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2668
enc_class fmovd (dflt_reg dst, dflt_reg src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2669
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2670
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2671
    FloatRegister Fdst = reg_to_DoubleFloatRegister_object($dst$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2672
    FloatRegister Fsrc = reg_to_DoubleFloatRegister_object($src$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2673
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2674
    __ fmov(FloatRegisterImpl::D, Fsrc, Fdst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2675
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2676
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2677
enc_class Fast_Lock(iRegP oop, iRegP box, o7RegP scratch, iRegP scratch2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2678
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2679
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2680
    Register Roop  = reg_to_register_object($oop$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2681
    Register Rbox  = reg_to_register_object($box$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2682
    Register Rscratch = reg_to_register_object($scratch$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2683
    Register Rmark =    reg_to_register_object($scratch2$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2684
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2685
    assert(Roop  != Rscratch, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2686
    assert(Roop  != Rmark, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2687
    assert(Rbox  != Rscratch, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2688
    assert(Rbox  != Rmark, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2689
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  2690
    __ compiler_lock_object(Roop, Rmark, Rbox, Rscratch, _counters, UseBiasedLocking && !UseOptoBiasInlining);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2691
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2692
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2693
enc_class Fast_Unlock(iRegP oop, iRegP box, o7RegP scratch, iRegP scratch2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2694
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2695
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2696
    Register Roop  = reg_to_register_object($oop$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2697
    Register Rbox  = reg_to_register_object($box$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2698
    Register Rscratch = reg_to_register_object($scratch$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2699
    Register Rmark =    reg_to_register_object($scratch2$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2700
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2701
    assert(Roop  != Rscratch, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2702
    assert(Roop  != Rmark, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2703
    assert(Rbox  != Rscratch, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2704
    assert(Rbox  != Rmark, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2705
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  2706
    __ compiler_unlock_object(Roop, Rmark, Rbox, Rscratch, UseBiasedLocking && !UseOptoBiasInlining);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2707
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2708
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2709
  enc_class enc_cas( iRegP mem, iRegP old, iRegP new ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2710
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2711
    Register Rmem = reg_to_register_object($mem$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2712
    Register Rold = reg_to_register_object($old$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2713
    Register Rnew = reg_to_register_object($new$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2714
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2715
    // casx_under_lock picks 1 of 3 encodings:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2716
    // For 32-bit pointers you get a 32-bit CAS
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2717
    // For 64-bit pointers you get a 64-bit CASX
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  2718
    __ casn(Rmem, Rold, Rnew); // Swap(*Rmem,Rnew) if *Rmem == Rold
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2719
    __ cmp( Rold, Rnew );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2720
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2721
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2722
  enc_class enc_casx( iRegP mem, iRegL old, iRegL new) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2723
    Register Rmem = reg_to_register_object($mem$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2724
    Register Rold = reg_to_register_object($old$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2725
    Register Rnew = reg_to_register_object($new$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2726
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2727
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2728
    __ mov(Rnew, O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2729
    __ casx(Rmem, Rold, O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2730
    __ cmp( Rold, O7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2731
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2732
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2733
  // raw int cas, used for compareAndSwap
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2734
  enc_class enc_casi( iRegP mem, iRegL old, iRegL new) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2735
    Register Rmem = reg_to_register_object($mem$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2736
    Register Rold = reg_to_register_object($old$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2737
    Register Rnew = reg_to_register_object($new$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2738
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2739
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2740
    __ mov(Rnew, O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2741
    __ cas(Rmem, Rold, O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2742
    __ cmp( Rold, O7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2743
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2744
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2745
  enc_class enc_lflags_ne_to_boolean( iRegI res ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2746
    Register Rres = reg_to_register_object($res$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2747
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2748
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2749
    __ mov(1, Rres);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2750
    __ movcc( Assembler::notEqual, false, Assembler::xcc, G0, Rres );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2751
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2752
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2753
  enc_class enc_iflags_ne_to_boolean( iRegI res ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2754
    Register Rres = reg_to_register_object($res$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2755
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2756
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2757
    __ mov(1, Rres);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2758
    __ movcc( Assembler::notEqual, false, Assembler::icc, G0, Rres );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2759
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2760
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2761
  enc_class floating_cmp ( iRegP dst, regF src1, regF src2 ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2762
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2763
    Register Rdst = reg_to_register_object($dst$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2764
    FloatRegister Fsrc1 = $primary ? reg_to_SingleFloatRegister_object($src1$$reg)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2765
                                     : reg_to_DoubleFloatRegister_object($src1$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2766
    FloatRegister Fsrc2 = $primary ? reg_to_SingleFloatRegister_object($src2$$reg)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2767
                                     : reg_to_DoubleFloatRegister_object($src2$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2768
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2769
    // Convert condition code fcc0 into -1,0,1; unordered reports less-than (-1)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2770
    __ float_cmp( $primary, -1, Fsrc1, Fsrc2, Rdst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2771
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2772
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2773
  enc_class LdImmL (immL src, iRegL dst, o7RegL tmp) %{   // Load Immediate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2774
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2775
    Register dest = reg_to_register_object($dst$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2776
    Register temp = reg_to_register_object($tmp$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2777
    __ set64( $src$$constant, dest, temp );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2778
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2779
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2780
  enc_class LdReplImmI(immI src, regD dst, o7RegP tmp, int count, int width) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2781
    // Load a constant replicated "count" times with width "width"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2782
    int bit_width = $width$$constant * 8;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2783
    jlong elt_val = $src$$constant;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2784
    elt_val  &= (((jlong)1) << bit_width) - 1; // mask off sign bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2785
    jlong val = elt_val;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2786
    for (int i = 0; i < $count$$constant - 1; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2787
        val <<= bit_width;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2788
        val |= elt_val;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2789
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2790
    jdouble dval = *(jdouble*)&val; // coerce to double type
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  2791
    MacroAssembler _masm(&cbuf);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  2792
    address double_address = __ double_constant(dval);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2793
    RelocationHolder rspec = internal_word_Relocation::spec(double_address);
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  2794
    AddressLiteral addrlit(double_address, rspec);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  2795
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  2796
    __ sethi(addrlit, $tmp$$Register);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  2797
    __ ldf(FloatRegisterImpl::D, $tmp$$Register, addrlit.low10(), $dst$$FloatRegister, rspec);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2798
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2799
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2800
  // Compiler ensures base is doubleword aligned and cnt is count of doublewords
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2801
  enc_class enc_Clear_Array(iRegX cnt, iRegP base, iRegX temp) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2802
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2803
    Register    nof_bytes_arg   = reg_to_register_object($cnt$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2804
    Register    nof_bytes_tmp    = reg_to_register_object($temp$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2805
    Register    base_pointer_arg = reg_to_register_object($base$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2806
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2807
    Label loop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2808
    __ mov(nof_bytes_arg, nof_bytes_tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2809
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2810
    // Loop and clear, walking backwards through the array.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2811
    // nof_bytes_tmp (if >0) is always the number of bytes to zero
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2812
    __ bind(loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2813
    __ deccc(nof_bytes_tmp, 8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2814
    __ br(Assembler::greaterEqual, true, Assembler::pt, loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2815
    __ delayed()-> stx(G0, base_pointer_arg, nof_bytes_tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2816
    // %%%% this mini-loop must not cross a cache boundary!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2817
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2818
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2819
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2820
  enc_class enc_String_Compare(o0RegP str1, o1RegP str2, g3RegP tmp1, g4RegP tmp2, notemp_iRegI result) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2821
    Label Ldone, Lloop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2822
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2823
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2824
    Register   str1_reg = reg_to_register_object($str1$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2825
    Register   str2_reg = reg_to_register_object($str2$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2826
    Register   tmp1_reg = reg_to_register_object($tmp1$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2827
    Register   tmp2_reg = reg_to_register_object($tmp2$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2828
    Register result_reg = reg_to_register_object($result$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2829
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2830
    // Get the first character position in both strings
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2831
    //         [8] char array, [12] offset, [16] count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2832
    int  value_offset = java_lang_String:: value_offset_in_bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2833
    int offset_offset = java_lang_String::offset_offset_in_bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2834
    int  count_offset = java_lang_String:: count_offset_in_bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2835
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2836
    // load str1 (jchar*) base address into tmp1_reg
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  2837
    __ load_heap_oop(str1_reg, value_offset, tmp1_reg);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  2838
    __ ld(str1_reg, offset_offset, result_reg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2839
    __ add(tmp1_reg, arrayOopDesc::base_offset_in_bytes(T_CHAR), tmp1_reg);
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  2840
    __   ld(str1_reg, count_offset, str1_reg); // hoisted
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2841
    __ sll(result_reg, exact_log2(sizeof(jchar)), result_reg);
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  2842
    __   load_heap_oop(str2_reg, value_offset, tmp2_reg); // hoisted
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2843
    __ add(result_reg, tmp1_reg, tmp1_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2844
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2845
    // load str2 (jchar*) base address into tmp2_reg
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  2846
    // __ ld_ptr(str2_reg, value_offset, tmp2_reg); // hoisted
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  2847
    __ ld(str2_reg, offset_offset, result_reg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2848
    __ add(tmp2_reg, arrayOopDesc::base_offset_in_bytes(T_CHAR), tmp2_reg);
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  2849
    __   ld(str2_reg, count_offset, str2_reg); // hoisted
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2850
    __ sll(result_reg, exact_log2(sizeof(jchar)), result_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2851
    __   subcc(str1_reg, str2_reg, O7); // hoisted
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2852
    __ add(result_reg, tmp2_reg, tmp2_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2853
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2854
    // Compute the minimum of the string lengths(str1_reg) and the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2855
    // difference of the string lengths (stack)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2856
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2857
    // discard string base pointers, after loading up the lengths
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  2858
    // __ ld(str1_reg, count_offset, str1_reg); // hoisted
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  2859
    // __ ld(str2_reg, count_offset, str2_reg); // hoisted
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2860
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2861
    // See if the lengths are different, and calculate min in str1_reg.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2862
    // Stash diff in O7 in case we need it for a tie-breaker.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2863
    Label Lskip;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2864
    // __ subcc(str1_reg, str2_reg, O7); // hoisted
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2865
    __ sll(str1_reg, exact_log2(sizeof(jchar)), str1_reg); // scale the limit
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2866
    __ br(Assembler::greater, true, Assembler::pt, Lskip);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2867
    // str2 is shorter, so use its count:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2868
    __ delayed()->sll(str2_reg, exact_log2(sizeof(jchar)), str1_reg); // scale the limit
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2869
    __ bind(Lskip);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2870
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2871
    // reallocate str1_reg, str2_reg, result_reg
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2872
    // Note:  limit_reg holds the string length pre-scaled by 2
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2873
    Register limit_reg =   str1_reg;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2874
    Register  chr2_reg =   str2_reg;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2875
    Register  chr1_reg = result_reg;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2876
    // tmp{12} are the base pointers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2877
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2878
    // Is the minimum length zero?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2879
    __ cmp(limit_reg, (int)(0 * sizeof(jchar))); // use cast to resolve overloading ambiguity
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2880
    __ br(Assembler::equal, true, Assembler::pn, Ldone);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2881
    __ delayed()->mov(O7, result_reg);  // result is difference in lengths
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2882
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2883
    // Load first characters
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2884
    __ lduh(tmp1_reg, 0, chr1_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2885
    __ lduh(tmp2_reg, 0, chr2_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2886
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2887
    // Compare first characters
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2888
    __ subcc(chr1_reg, chr2_reg, chr1_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2889
    __ br(Assembler::notZero, false, Assembler::pt,  Ldone);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2890
    assert(chr1_reg == result_reg, "result must be pre-placed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2891
    __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2892
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2893
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2894
      // Check after comparing first character to see if strings are equivalent
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2895
      Label LSkip2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2896
      // Check if the strings start at same location
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2897
      __ cmp(tmp1_reg, tmp2_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2898
      __ brx(Assembler::notEqual, true, Assembler::pt, LSkip2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2899
      __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2900
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2901
      // Check if the length difference is zero (in O7)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2902
      __ cmp(G0, O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2903
      __ br(Assembler::equal, true, Assembler::pn, Ldone);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2904
      __ delayed()->mov(G0, result_reg);  // result is zero
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2905
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2906
      // Strings might not be equal
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2907
      __ bind(LSkip2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2908
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2909
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2910
    __ subcc(limit_reg, 1 * sizeof(jchar), chr1_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2911
    __ br(Assembler::equal, true, Assembler::pn, Ldone);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2912
    __ delayed()->mov(O7, result_reg);  // result is difference in lengths
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2913
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2914
    // Shift tmp1_reg and tmp2_reg to the end of the arrays, negate limit
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2915
    __ add(tmp1_reg, limit_reg, tmp1_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2916
    __ add(tmp2_reg, limit_reg, tmp2_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2917
    __ neg(chr1_reg, limit_reg);  // limit = -(limit-2)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2918
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2919
    // Compare the rest of the characters
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2920
    __ lduh(tmp1_reg, limit_reg, chr1_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2921
    __ bind(Lloop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2922
    // __ lduh(tmp1_reg, limit_reg, chr1_reg); // hoisted
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2923
    __ lduh(tmp2_reg, limit_reg, chr2_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2924
    __ subcc(chr1_reg, chr2_reg, chr1_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2925
    __ br(Assembler::notZero, false, Assembler::pt, Ldone);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2926
    assert(chr1_reg == result_reg, "result must be pre-placed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2927
    __ delayed()->inccc(limit_reg, sizeof(jchar));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2928
    // annul LDUH if branch is not taken to prevent access past end of string
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2929
    __ br(Assembler::notZero, true, Assembler::pt, Lloop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2930
    __ delayed()->lduh(tmp1_reg, limit_reg, chr1_reg); // hoisted
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2931
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2932
    // If strings are equal up to min length, return the length difference.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2933
    __ mov(O7, result_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2934
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2935
    // Otherwise, return the difference between the first mismatched chars.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2936
    __ bind(Ldone);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2937
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2938
2348
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2939
enc_class enc_String_Equals(o0RegP str1, o1RegP str2, g3RegP tmp1, g4RegP tmp2, notemp_iRegI result) %{
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2940
    Label Lword, Lword_loop, Lpost_word, Lchar, Lchar_loop, Ldone;
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2941
    MacroAssembler _masm(&cbuf);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2942
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2943
    Register   str1_reg = reg_to_register_object($str1$$reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2944
    Register   str2_reg = reg_to_register_object($str2$$reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2945
    Register   tmp1_reg = reg_to_register_object($tmp1$$reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2946
    Register   tmp2_reg = reg_to_register_object($tmp2$$reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2947
    Register result_reg = reg_to_register_object($result$$reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2948
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2949
    // Get the first character position in both strings
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2950
    //         [8] char array, [12] offset, [16] count
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2951
    int  value_offset = java_lang_String:: value_offset_in_bytes();
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2952
    int offset_offset = java_lang_String::offset_offset_in_bytes();
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2953
    int  count_offset = java_lang_String:: count_offset_in_bytes();
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2954
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2955
    // load str1 (jchar*) base address into tmp1_reg
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  2956
    __ load_heap_oop(Address(str1_reg, value_offset), tmp1_reg);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  2957
    __ ld(Address(str1_reg, offset_offset), result_reg);
2348
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2958
    __ add(tmp1_reg, arrayOopDesc::base_offset_in_bytes(T_CHAR), tmp1_reg);
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  2959
    __    ld(Address(str1_reg, count_offset), str1_reg); // hoisted
2348
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2960
    __ sll(result_reg, exact_log2(sizeof(jchar)), result_reg);
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  2961
    __    load_heap_oop(Address(str2_reg, value_offset), tmp2_reg); // hoisted
2348
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2962
    __ add(result_reg, tmp1_reg, tmp1_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2963
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2964
    // load str2 (jchar*) base address into tmp2_reg
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  2965
    // __ ld_ptr(Address(str2_reg, value_offset), tmp2_reg); // hoisted
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  2966
    __ ld(Address(str2_reg, offset_offset), result_reg);
2348
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2967
    __ add(tmp2_reg, arrayOopDesc::base_offset_in_bytes(T_CHAR), tmp2_reg);
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  2968
    __    ld(Address(str2_reg, count_offset), str2_reg); // hoisted
2348
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2969
    __ sll(result_reg, exact_log2(sizeof(jchar)), result_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2970
    __   cmp(str1_reg, str2_reg); // hoisted
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2971
    __ add(result_reg, tmp2_reg, tmp2_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2972
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2973
    __ sll(str1_reg, exact_log2(sizeof(jchar)), str1_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2974
    __ br(Assembler::notEqual, true, Assembler::pt, Ldone);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2975
    __ delayed()->mov(G0, result_reg);    // not equal
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2976
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2977
    __ br_zero(Assembler::equal, true, Assembler::pn, str1_reg, Ldone);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2978
    __ delayed()->add(G0, 1, result_reg); //equals
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2979
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2980
    __ cmp(tmp1_reg, tmp2_reg); //same string ?
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2981
    __ brx(Assembler::equal, true, Assembler::pn, Ldone);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2982
    __ delayed()->add(G0, 1, result_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2983
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2984
    //rename registers
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2985
    Register limit_reg =   str1_reg;
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2986
    Register  chr2_reg =   str2_reg;
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2987
    Register  chr1_reg = result_reg;
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2988
    // tmp{12} are the base pointers
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2989
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2990
    //check for alignment and position the pointers to the ends
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2991
    __ or3(tmp1_reg, tmp2_reg, chr1_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2992
    __ andcc(chr1_reg, 0x3, chr1_reg); // notZero means at least one not 4-byte aligned
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2993
    __ br(Assembler::notZero, false, Assembler::pn, Lchar);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2994
    __ delayed()->nop();
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2995
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2996
    __ bind(Lword);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2997
    __ and3(limit_reg, 0x2, O7); //remember the remainder (either 0 or 2)
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2998
    __ andn(limit_reg, 0x3, limit_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  2999
    __ br_zero(Assembler::zero, false, Assembler::pn, limit_reg, Lpost_word);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3000
    __ delayed()->nop();
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3001
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3002
    __ add(tmp1_reg, limit_reg, tmp1_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3003
    __ add(tmp2_reg, limit_reg, tmp2_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3004
    __ neg(limit_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3005
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3006
    __ lduw(tmp1_reg, limit_reg, chr1_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3007
    __ bind(Lword_loop);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3008
    __ lduw(tmp2_reg, limit_reg, chr2_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3009
    __ cmp(chr1_reg, chr2_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3010
    __ br(Assembler::notEqual, true, Assembler::pt, Ldone);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3011
    __ delayed()->mov(G0, result_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3012
    __ inccc(limit_reg, 2*sizeof(jchar));
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3013
    // annul LDUW if branch i  s not taken to prevent access past end of string
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3014
    __ br(Assembler::notZero, true, Assembler::pt, Lword_loop); //annul on taken
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3015
    __ delayed()->lduw(tmp1_reg, limit_reg, chr1_reg); // hoisted
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3016
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3017
    __ bind(Lpost_word);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3018
    __ br_zero(Assembler::zero, true, Assembler::pt, O7, Ldone);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3019
    __ delayed()->add(G0, 1, result_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3020
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3021
    __ lduh(tmp1_reg, 0, chr1_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3022
    __ lduh(tmp2_reg, 0, chr2_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3023
    __ cmp (chr1_reg, chr2_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3024
    __ br(Assembler::notEqual, true, Assembler::pt, Ldone);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3025
    __ delayed()->mov(G0, result_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3026
    __ ba(false,Ldone);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3027
    __ delayed()->add(G0, 1, result_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3028
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3029
    __ bind(Lchar);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3030
    __ add(tmp1_reg, limit_reg, tmp1_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3031
    __ add(tmp2_reg, limit_reg, tmp2_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3032
    __ neg(limit_reg); //negate count
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3033
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3034
    __ lduh(tmp1_reg, limit_reg, chr1_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3035
    __ bind(Lchar_loop);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3036
    __ lduh(tmp2_reg, limit_reg, chr2_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3037
    __ cmp(chr1_reg, chr2_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3038
    __ br(Assembler::notEqual, true, Assembler::pt, Ldone);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3039
    __ delayed()->mov(G0, result_reg); //not equal
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3040
    __ inccc(limit_reg, sizeof(jchar));
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3041
    // annul LDUH if branch is not taken to prevent access past end of string
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3042
    __ br(Assembler::notZero, true, Assembler::pt, Lchar_loop); //annul on taken
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3043
    __ delayed()->lduh(tmp1_reg, limit_reg, chr1_reg); // hoisted
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3044
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3045
    __ add(G0, 1, result_reg);  //equal
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3046
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3047
    __ bind(Ldone);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3048
  %}
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3049
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3050
enc_class enc_Array_Equals(o0RegP ary1, o1RegP ary2, g3RegP tmp1, g4RegP tmp2, notemp_iRegI result) %{
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3051
    Label Lvector, Ldone, Lloop;
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3052
    MacroAssembler _masm(&cbuf);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3053
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3054
    Register   ary1_reg = reg_to_register_object($ary1$$reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3055
    Register   ary2_reg = reg_to_register_object($ary2$$reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3056
    Register   tmp1_reg = reg_to_register_object($tmp1$$reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3057
    Register   tmp2_reg = reg_to_register_object($tmp2$$reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3058
    Register result_reg = reg_to_register_object($result$$reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3059
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3060
    int length_offset  = arrayOopDesc::length_offset_in_bytes();
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3061
    int base_offset    = arrayOopDesc::base_offset_in_bytes(T_CHAR);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3062
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3063
    // return true if the same array
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3064
    __ cmp(ary1_reg, ary2_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3065
    __ br(Assembler::equal, true, Assembler::pn, Ldone);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3066
    __ delayed()->add(G0, 1, result_reg); // equal
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3067
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3068
    __ br_null(ary1_reg, true, Assembler::pn, Ldone);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3069
    __ delayed()->mov(G0, result_reg);    // not equal
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3070
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3071
    __ br_null(ary2_reg, true, Assembler::pn, Ldone);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3072
    __ delayed()->mov(G0, result_reg);    // not equal
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3073
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3074
    //load the lengths of arrays
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  3075
    __ ld(Address(ary1_reg, length_offset), tmp1_reg);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  3076
    __ ld(Address(ary2_reg, length_offset), tmp2_reg);
2348
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3077
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3078
    // return false if the two arrays are not equal length
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3079
    __ cmp(tmp1_reg, tmp2_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3080
    __ br(Assembler::notEqual, true, Assembler::pn, Ldone);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3081
    __ delayed()->mov(G0, result_reg);     // not equal
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3082
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3083
    __ br_zero(Assembler::zero, true, Assembler::pn, tmp1_reg, Ldone);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3084
    __ delayed()->add(G0, 1, result_reg); // zero-length arrays are equal
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3085
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3086
    // load array addresses
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3087
    __ add(ary1_reg, base_offset, ary1_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3088
    __ add(ary2_reg, base_offset, ary2_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3089
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3090
    // renaming registers
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3091
    Register chr1_reg  =  tmp2_reg;   // for characters in ary1
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3092
    Register chr2_reg  =  result_reg; // for characters in ary2
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3093
    Register limit_reg =  tmp1_reg;   // length
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3094
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3095
    // set byte count
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3096
    __ sll(limit_reg, exact_log2(sizeof(jchar)), limit_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3097
    __ andcc(limit_reg, 0x2, chr1_reg); //trailing character ?
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3098
    __ br(Assembler::zero, false, Assembler::pt, Lvector);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3099
    __ delayed()->nop();
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3100
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3101
    //compare the trailing char
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3102
    __ sub(limit_reg, sizeof(jchar), limit_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3103
    __ lduh(ary1_reg, limit_reg, chr1_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3104
    __ lduh(ary2_reg, limit_reg, chr2_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3105
    __ cmp(chr1_reg, chr2_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3106
    __ br(Assembler::notEqual, true, Assembler::pt, Ldone);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3107
    __ delayed()->mov(G0, result_reg);     // not equal
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3108
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3109
    // only one char ?
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3110
    __ br_zero(Assembler::zero, true, Assembler::pn, limit_reg, Ldone);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3111
    __ delayed()->add(G0, 1, result_reg); // zero-length arrays are equal
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3112
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3113
    __ bind(Lvector);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3114
    // Shift ary1_reg and ary2_reg to the end of the arrays, negate limit
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3115
    __ add(ary1_reg, limit_reg, ary1_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3116
    __ add(ary2_reg, limit_reg, ary2_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3117
    __ neg(limit_reg, limit_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3118
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3119
    __ lduw(ary1_reg, limit_reg, chr1_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3120
    __ bind(Lloop);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3121
    __ lduw(ary2_reg, limit_reg, chr2_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3122
    __ cmp(chr1_reg, chr2_reg);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3123
    __ br(Assembler::notEqual, false, Assembler::pt, Ldone);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3124
    __ delayed()->mov(G0, result_reg);     // not equal
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3125
    __ inccc(limit_reg, 2*sizeof(jchar));
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3126
    // annul LDUW if branch is not taken to prevent access past end of string
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3127
    __ br(Assembler::notZero, true, Assembler::pt, Lloop); //annul on taken
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3128
    __ delayed()->lduw(ary1_reg, limit_reg, chr1_reg); // hoisted
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3129
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3130
    __ add(G0, 1, result_reg); // equals
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3131
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3132
    __ bind(Ldone);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3133
  %}
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  3134
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3135
  enc_class enc_rethrow() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3136
    cbuf.set_inst_mark();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3137
    Register temp_reg = G3;
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  3138
    AddressLiteral rethrow_stub(OptoRuntime::rethrow_stub());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3139
    assert(temp_reg != reg_to_register_object(R_I0_num), "temp must not break oop_reg");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3140
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3141
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3142
    __ save_frame(0);
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  3143
    AddressLiteral last_rethrow_addrlit(&last_rethrow);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  3144
    __ sethi(last_rethrow_addrlit, L1);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  3145
    Address addr(L1, last_rethrow_addrlit.low10());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3146
    __ get_pc(L2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3147
    __ inc(L2, 3 * BytesPerInstWord);  // skip this & 2 more insns to point at jump_to
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  3148
    __ st_ptr(L2, addr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3149
    __ restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3150
#endif
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  3151
    __ JUMP(rethrow_stub, temp_reg, 0); // sethi;jmp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3152
    __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3153
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3154
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3155
  enc_class emit_mem_nop() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3156
    // Generates the instruction LDUXA [o6,g0],#0x82,g0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3157
    unsigned int *code = (unsigned int*)cbuf.code_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3158
    *code = (unsigned int)0xc0839040;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3159
    cbuf.set_code_end(cbuf.code_end() + BytesPerInstWord);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3160
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3161
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3162
  enc_class emit_fadd_nop() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3163
    // Generates the instruction FMOVS f31,f31
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3164
    unsigned int *code = (unsigned int*)cbuf.code_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3165
    *code = (unsigned int)0xbfa0003f;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3166
    cbuf.set_code_end(cbuf.code_end() + BytesPerInstWord);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3167
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3168
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3169
  enc_class emit_br_nop() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3170
    // Generates the instruction BPN,PN .
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3171
    unsigned int *code = (unsigned int*)cbuf.code_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3172
    *code = (unsigned int)0x00400000;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3173
    cbuf.set_code_end(cbuf.code_end() + BytesPerInstWord);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3174
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3175
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3176
  enc_class enc_membar_acquire %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3177
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3178
    __ membar( Assembler::Membar_mask_bits(Assembler::LoadStore | Assembler::LoadLoad) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3179
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3180
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3181
  enc_class enc_membar_release %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3182
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3183
    __ membar( Assembler::Membar_mask_bits(Assembler::LoadStore | Assembler::StoreStore) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3184
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3185
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3186
  enc_class enc_membar_volatile %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3187
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3188
    __ membar( Assembler::Membar_mask_bits(Assembler::StoreLoad) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3189
  %}
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3190
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3191
  enc_class enc_repl8b( iRegI src, iRegL dst ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3192
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3193
    Register src_reg = reg_to_register_object($src$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3194
    Register dst_reg = reg_to_register_object($dst$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3195
    __ sllx(src_reg, 56, dst_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3196
    __ srlx(dst_reg,  8, O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3197
    __ or3 (dst_reg, O7, dst_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3198
    __ srlx(dst_reg, 16, O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3199
    __ or3 (dst_reg, O7, dst_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3200
    __ srlx(dst_reg, 32, O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3201
    __ or3 (dst_reg, O7, dst_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3202
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3203
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3204
  enc_class enc_repl4b( iRegI src, iRegL dst ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3205
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3206
    Register src_reg = reg_to_register_object($src$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3207
    Register dst_reg = reg_to_register_object($dst$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3208
    __ sll(src_reg, 24, dst_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3209
    __ srl(dst_reg,  8, O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3210
    __ or3(dst_reg, O7, dst_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3211
    __ srl(dst_reg, 16, O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3212
    __ or3(dst_reg, O7, dst_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3213
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3214
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3215
  enc_class enc_repl4s( iRegI src, iRegL dst ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3216
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3217
    Register src_reg = reg_to_register_object($src$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3218
    Register dst_reg = reg_to_register_object($dst$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3219
    __ sllx(src_reg, 48, dst_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3220
    __ srlx(dst_reg, 16, O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3221
    __ or3 (dst_reg, O7, dst_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3222
    __ srlx(dst_reg, 32, O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3223
    __ or3 (dst_reg, O7, dst_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3224
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3225
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3226
  enc_class enc_repl2i( iRegI src, iRegL dst ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3227
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3228
    Register src_reg = reg_to_register_object($src$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3229
    Register dst_reg = reg_to_register_object($dst$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3230
    __ sllx(src_reg, 32, dst_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3231
    __ srlx(dst_reg, 32, O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3232
    __ or3 (dst_reg, O7, dst_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3233
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3234
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3235
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3236
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3237
//----------FRAME--------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3238
// Definition of frame structure and management information.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3239
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3240
//  S T A C K   L A Y O U T    Allocators stack-slot number
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3241
//                             |   (to get allocators register number
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3242
//  G  Owned by    |        |  v    add VMRegImpl::stack0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3243
//  r   CALLER     |        |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3244
//  o     |        +--------+      pad to even-align allocators stack-slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3245
//  w     V        |  pad0  |        numbers; owned by CALLER
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3246
//  t   -----------+--------+----> Matcher::_in_arg_limit, unaligned
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3247
//  h     ^        |   in   |  5
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3248
//        |        |  args  |  4   Holes in incoming args owned by SELF
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3249
//  |     |        |        |  3
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3250
//  |     |        +--------+
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3251
//  V     |        | old out|      Empty on Intel, window on Sparc
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3252
//        |    old |preserve|      Must be even aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3253
//        |     SP-+--------+----> Matcher::_old_SP, 8 (or 16 in LP64)-byte aligned
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3254
//        |        |   in   |  3   area for Intel ret address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3255
//     Owned by    |preserve|      Empty on Sparc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3256
//       SELF      +--------+
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3257
//        |        |  pad2  |  2   pad to align old SP
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3258
//        |        +--------+  1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3259
//        |        | locks  |  0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3260
//        |        +--------+----> VMRegImpl::stack0, 8 (or 16 in LP64)-byte aligned
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3261
//        |        |  pad1  | 11   pad to align new SP
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3262
//        |        +--------+
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3263
//        |        |        | 10
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3264
//        |        | spills |  9   spills
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3265
//        V        |        |  8   (pad0 slot for callee)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3266
//      -----------+--------+----> Matcher::_out_arg_limit, unaligned
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3267
//        ^        |  out   |  7
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3268
//        |        |  args  |  6   Holes in outgoing args owned by CALLEE
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3269
//     Owned by    +--------+
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3270
//      CALLEE     | new out|  6   Empty on Intel, window on Sparc
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3271
//        |    new |preserve|      Must be even-aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3272
//        |     SP-+--------+----> Matcher::_new_SP, even aligned
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3273
//        |        |        |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3274
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3275
// Note 1: Only region 8-11 is determined by the allocator.  Region 0-5 is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3276
//         known from SELF's arguments and the Java calling convention.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3277
//         Region 6-7 is determined per call site.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3278
// Note 2: If the calling convention leaves holes in the incoming argument
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3279
//         area, those holes are owned by SELF.  Holes in the outgoing area
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3280
//         are owned by the CALLEE.  Holes should not be nessecary in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3281
//         incoming area, as the Java calling convention is completely under
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3282
//         the control of the AD file.  Doubles can be sorted and packed to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3283
//         avoid holes.  Holes in the outgoing arguments may be nessecary for
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3284
//         varargs C calling conventions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3285
// Note 3: Region 0-3 is even aligned, with pad2 as needed.  Region 3-5 is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3286
//         even aligned with pad0 as needed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3287
//         Region 6 is even aligned.  Region 6-7 is NOT even aligned;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3288
//         region 6-11 is even aligned; it may be padded out more so that
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3289
//         the region from SP to FP meets the minimum stack alignment.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3290
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3291
frame %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3292
  // What direction does stack grow in (assumed to be same for native & Java)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3293
  stack_direction(TOWARDS_LOW);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3294
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3295
  // These two registers define part of the calling convention
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3296
  // between compiled code and the interpreter.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3297
  inline_cache_reg(R_G5);                // Inline Cache Register or methodOop for I2C
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3298
  interpreter_method_oop_reg(R_G5);      // Method Oop Register when calling interpreter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3299
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3300
  // Optional: name the operand used by cisc-spilling to access [stack_pointer + offset]
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3301
  cisc_spilling_operand_name(indOffset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3302
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3303
  // Number of stack slots consumed by a Monitor enter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3304
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3305
  sync_stack_slots(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3306
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3307
  sync_stack_slots(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3308
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3309
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3310
  // Compiled code's Frame Pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3311
  frame_pointer(R_SP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3312
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3313
  // Stack alignment requirement
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3314
  stack_alignment(StackAlignmentInBytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3315
  //  LP64: Alignment size in bytes (128-bit -> 16 bytes)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3316
  // !LP64: Alignment size in bytes (64-bit  ->  8 bytes)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3317
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3318
  // Number of stack slots between incoming argument block and the start of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3319
  // a new frame.  The PROLOG must add this many slots to the stack.  The
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3320
  // EPILOG must remove this many slots.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3321
  in_preserve_stack_slots(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3322
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3323
  // Number of outgoing stack slots killed above the out_preserve_stack_slots
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3324
  // for calls to C.  Supports the var-args backing area for register parms.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3325
  // ADLC doesn't support parsing expressions, so I folded the math by hand.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3326
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3327
  // (callee_register_argument_save_area_words (6) + callee_aggregate_return_pointer_words (0)) * 2-stack-slots-per-word
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3328
  varargs_C_out_slots_killed(12);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3329
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3330
  // (callee_register_argument_save_area_words (6) + callee_aggregate_return_pointer_words (1)) * 1-stack-slots-per-word
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3331
  varargs_C_out_slots_killed( 7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3332
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3333
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3334
  // The after-PROLOG location of the return address.  Location of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3335
  // return address specifies a type (REG or STACK) and a number
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3336
  // representing the register number (i.e. - use a register name) or
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3337
  // stack slot.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3338
  return_addr(REG R_I7);          // Ret Addr is in register I7
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3339
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3340
  // Body of function which returns an OptoRegs array locating
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3341
  // arguments either in registers or in stack slots for calling
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3342
  // java
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3343
  calling_convention %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3344
    (void) SharedRuntime::java_calling_convention(sig_bt, regs, length, is_outgoing);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3345
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3346
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3347
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3348
  // Body of function which returns an OptoRegs array locating
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3349
  // arguments either in registers or in stack slots for callin
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3350
  // C.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3351
  c_calling_convention %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3352
    // This is obviously always outgoing
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3353
    (void) SharedRuntime::c_calling_convention(sig_bt, regs, length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3354
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3355
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3356
  // Location of native (C/C++) and interpreter return values.  This is specified to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3357
  // be the  same as Java.  In the 32-bit VM, long values are actually returned from
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3358
  // native calls in O0:O1 and returned to the interpreter in I0:I1.  The copying
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3359
  // to and from the register pairs is done by the appropriate call and epilog
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3360
  // opcodes.  This simplifies the register allocator.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3361
  c_return_value %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3362
    assert( ideal_reg >= Op_RegI && ideal_reg <= Op_RegL, "only return normal values" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3363
#ifdef     _LP64
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3364
    static int lo_out[Op_RegL+1] = { OptoReg::Bad, OptoReg::Bad, R_O0_num,     R_O0_num,     R_O0_num,     R_F0_num,     R_F0_num, R_O0_num };
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3365
    static int hi_out[Op_RegL+1] = { OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, R_O0H_num,    OptoReg::Bad, R_F1_num, R_O0H_num};
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3366
    static int lo_in [Op_RegL+1] = { OptoReg::Bad, OptoReg::Bad, R_I0_num,     R_I0_num,     R_I0_num,     R_F0_num,     R_F0_num, R_I0_num };
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3367
    static int hi_in [Op_RegL+1] = { OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, R_I0H_num,    OptoReg::Bad, R_F1_num, R_I0H_num};
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3368
#else  // !_LP64
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3369
    static int lo_out[Op_RegL+1] = { OptoReg::Bad, OptoReg::Bad, R_O0_num,     R_O0_num,     R_O0_num,     R_F0_num,     R_F0_num, R_G1_num };
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3370
    static int hi_out[Op_RegL+1] = { OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, R_F1_num, R_G1H_num };
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3371
    static int lo_in [Op_RegL+1] = { OptoReg::Bad, OptoReg::Bad, R_I0_num,     R_I0_num,     R_I0_num,     R_F0_num,     R_F0_num, R_G1_num };
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3372
    static int hi_in [Op_RegL+1] = { OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, R_F1_num, R_G1H_num };
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3373
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3374
    return OptoRegPair( (is_outgoing?hi_out:hi_in)[ideal_reg],
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3375
                        (is_outgoing?lo_out:lo_in)[ideal_reg] );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3376
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3377
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3378
  // Location of compiled Java return values.  Same as C
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3379
  return_value %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3380
    assert( ideal_reg >= Op_RegI && ideal_reg <= Op_RegL, "only return normal values" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3381
#ifdef     _LP64
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3382
    static int lo_out[Op_RegL+1] = { OptoReg::Bad, OptoReg::Bad, R_O0_num,     R_O0_num,     R_O0_num,     R_F0_num,     R_F0_num, R_O0_num };
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3383
    static int hi_out[Op_RegL+1] = { OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, R_O0H_num,    OptoReg::Bad, R_F1_num, R_O0H_num};
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3384
    static int lo_in [Op_RegL+1] = { OptoReg::Bad, OptoReg::Bad, R_I0_num,     R_I0_num,     R_I0_num,     R_F0_num,     R_F0_num, R_I0_num };
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3385
    static int hi_in [Op_RegL+1] = { OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, R_I0H_num,    OptoReg::Bad, R_F1_num, R_I0H_num};
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3386
#else  // !_LP64
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3387
    static int lo_out[Op_RegL+1] = { OptoReg::Bad, OptoReg::Bad, R_O0_num,     R_O0_num,     R_O0_num,     R_F0_num,     R_F0_num, R_G1_num };
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3388
    static int hi_out[Op_RegL+1] = { OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, R_F1_num, R_G1H_num};
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3389
    static int lo_in [Op_RegL+1] = { OptoReg::Bad, OptoReg::Bad, R_I0_num,     R_I0_num,     R_I0_num,     R_F0_num,     R_F0_num, R_G1_num };
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3390
    static int hi_in [Op_RegL+1] = { OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, R_F1_num, R_G1H_num};
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3391
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3392
    return OptoRegPair( (is_outgoing?hi_out:hi_in)[ideal_reg],
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3393
                        (is_outgoing?lo_out:lo_in)[ideal_reg] );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3394
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3395
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3396
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3397
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3398
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3399
//----------ATTRIBUTES---------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3400
//----------Operand Attributes-------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3401
op_attrib op_cost(1);          // Required cost attribute
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3402
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3403
//----------Instruction Attributes---------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3404
ins_attrib ins_cost(DEFAULT_COST); // Required cost attribute
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3405
ins_attrib ins_size(32);       // Required size attribute (in bits)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3406
ins_attrib ins_pc_relative(0); // Required PC Relative flag
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3407
ins_attrib ins_short_branch(0); // Required flag: is this instruction a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3408
                                // non-matching short branch variant of some
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3409
                                                            // long branch?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3410
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3411
//----------OPERANDS-----------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3412
// Operand definitions must precede instruction definitions for correct parsing
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3413
// in the ADLC because operands constitute user defined types which are used in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3414
// instruction definitions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3415
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3416
//----------Simple Operands----------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3417
// Immediate Operands
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3418
// Integer Immediate: 32-bit
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3419
operand immI() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3420
  match(ConI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3421
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3422
  op_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3423
  // formats are generated automatically for constants and base registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3424
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3425
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3426
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3427
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3428
// Integer Immediate: 13-bit
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3429
operand immI13() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3430
  predicate(Assembler::is_simm13(n->get_int()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3431
  match(ConI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3432
  op_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3433
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3434
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3435
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3436
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3437
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3438
// Unsigned (positive) Integer Immediate: 13-bit
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3439
operand immU13() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3440
  predicate((0 <= n->get_int()) && Assembler::is_simm13(n->get_int()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3441
  match(ConI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3442
  op_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3443
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3444
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3445
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3446
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3447
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3448
// Integer Immediate: 6-bit
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3449
operand immU6() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3450
  predicate(n->get_int() >= 0 && n->get_int() <= 63);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3451
  match(ConI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3452
  op_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3453
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3454
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3455
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3456
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3457
// Integer Immediate: 11-bit
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3458
operand immI11() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3459
  predicate(Assembler::is_simm(n->get_int(),11));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3460
  match(ConI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3461
  op_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3462
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3463
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3464
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3465
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3466
// Integer Immediate: 0-bit
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3467
operand immI0() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3468
  predicate(n->get_int() == 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3469
  match(ConI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3470
  op_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3471
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3472
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3473
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3474
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3475
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3476
// Integer Immediate: the value 10
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3477
operand immI10() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3478
  predicate(n->get_int() == 10);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3479
  match(ConI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3480
  op_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3481
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3482
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3483
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3484
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3485
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3486
// Integer Immediate: the values 0-31
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3487
operand immU5() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3488
  predicate(n->get_int() >= 0 && n->get_int() <= 31);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3489
  match(ConI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3490
  op_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3491
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3492
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3493
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3494
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3495
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3496
// Integer Immediate: the values 1-31
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3497
operand immI_1_31() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3498
  predicate(n->get_int() >= 1 && n->get_int() <= 31);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3499
  match(ConI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3500
  op_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3501
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3502
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3503
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3504
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3505
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3506
// Integer Immediate: the values 32-63
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3507
operand immI_32_63() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3508
  predicate(n->get_int() >= 32 && n->get_int() <= 63);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3509
  match(ConI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3510
  op_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3511
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3512
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3513
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3514
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3515
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3516
// Integer Immediate: the value 255
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3517
operand immI_255() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3518
  predicate( n->get_int() == 255 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3519
  match(ConI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3520
  op_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3521
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3522
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3523
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3524
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3525
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3526
// Long Immediate: the value FF
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3527
operand immL_FF() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3528
  predicate( n->get_long() == 0xFFL );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3529
  match(ConL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3530
  op_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3531
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3532
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3533
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3534
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3535
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3536
// Long Immediate: the value FFFF
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3537
operand immL_FFFF() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3538
  predicate( n->get_long() == 0xFFFFL );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3539
  match(ConL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3540
  op_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3541
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3542
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3543
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3544
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3545
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3546
// Pointer Immediate: 32 or 64-bit
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3547
operand immP() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3548
  match(ConP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3549
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3550
  op_cost(5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3551
  // formats are generated automatically for constants and base registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3552
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3553
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3554
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3555
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3556
operand immP13() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3557
  predicate((-4096 < n->get_ptr()) && (n->get_ptr() <= 4095));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3558
  match(ConP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3559
  op_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3560
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3561
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3562
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3563
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3564
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3565
operand immP0() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3566
  predicate(n->get_ptr() == 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3567
  match(ConP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3568
  op_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3569
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3570
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3571
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3572
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3573
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3574
operand immP_poll() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3575
  predicate(n->get_ptr() != 0 && n->get_ptr() == (intptr_t)os::get_polling_page());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3576
  match(ConP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3577
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3578
  // formats are generated automatically for constants and base registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3579
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3580
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3581
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3582
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3583
// Pointer Immediate
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3584
operand immN()
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3585
%{
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3586
  match(ConN);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3587
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3588
  op_cost(10);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3589
  format %{ %}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3590
  interface(CONST_INTER);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3591
%}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3592
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3593
// NULL Pointer Immediate
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3594
operand immN0()
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3595
%{
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3596
  predicate(n->get_narrowcon() == 0);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3597
  match(ConN);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3598
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3599
  op_cost(0);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3600
  format %{ %}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3601
  interface(CONST_INTER);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3602
%}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3603
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3604
operand immL() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3605
  match(ConL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3606
  op_cost(40);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3607
  // formats are generated automatically for constants and base registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3608
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3609
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3610
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3611
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3612
operand immL0() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3613
  predicate(n->get_long() == 0L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3614
  match(ConL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3615
  op_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3616
  // formats are generated automatically for constants and base registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3617
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3618
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3619
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3620
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3621
// Long Immediate: 13-bit
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3622
operand immL13() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3623
  predicate((-4096L < n->get_long()) && (n->get_long() <= 4095L));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3624
  match(ConL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3625
  op_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3626
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3627
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3628
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3629
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3630
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3631
// Long Immediate: low 32-bit mask
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3632
operand immL_32bits() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3633
  predicate(n->get_long() == 0xFFFFFFFFL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3634
  match(ConL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3635
  op_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3636
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3637
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3638
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3639
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3640
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3641
// Double Immediate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3642
operand immD() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3643
  match(ConD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3644
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3645
  op_cost(40);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3646
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3647
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3648
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3649
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3650
operand immD0() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3651
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3652
  // on 64-bit architectures this comparision is faster
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3653
  predicate(jlong_cast(n->getd()) == 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3654
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3655
  predicate((n->getd() == 0) && (fpclass(n->getd()) == FP_PZERO));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3656
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3657
  match(ConD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3658
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3659
  op_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3660
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3661
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3662
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3663
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3664
// Float Immediate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3665
operand immF() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3666
  match(ConF);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3667
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3668
  op_cost(20);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3669
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3670
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3671
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3672
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3673
// Float Immediate: 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3674
operand immF0() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3675
  predicate((n->getf() == 0) && (fpclass(n->getf()) == FP_PZERO));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3676
  match(ConF);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3677
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3678
  op_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3679
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3680
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3681
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3682
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3683
// Integer Register Operands
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3684
// Integer Register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3685
operand iRegI() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3686
  constraint(ALLOC_IN_RC(int_reg));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3687
  match(RegI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3688
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3689
  match(notemp_iRegI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3690
  match(g1RegI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3691
  match(o0RegI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3692
  match(iRegIsafe);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3693
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3694
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3695
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3696
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3697
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3698
operand notemp_iRegI() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3699
  constraint(ALLOC_IN_RC(notemp_int_reg));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3700
  match(RegI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3701
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3702
  match(o0RegI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3703
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3704
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3705
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3706
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3707
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3708
operand o0RegI() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3709
  constraint(ALLOC_IN_RC(o0_regI));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3710
  match(iRegI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3711
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3712
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3713
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3714
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3715
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3716
// Pointer Register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3717
operand iRegP() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3718
  constraint(ALLOC_IN_RC(ptr_reg));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3719
  match(RegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3720
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3721
  match(lock_ptr_RegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3722
  match(g1RegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3723
  match(g2RegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3724
  match(g3RegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3725
  match(g4RegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3726
  match(i0RegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3727
  match(o0RegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3728
  match(o1RegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3729
  match(l7RegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3730
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3731
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3732
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3733
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3734
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3735
operand sp_ptr_RegP() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3736
  constraint(ALLOC_IN_RC(sp_ptr_reg));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3737
  match(RegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3738
  match(iRegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3739
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3740
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3741
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3742
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3743
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3744
operand lock_ptr_RegP() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3745
  constraint(ALLOC_IN_RC(lock_ptr_reg));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3746
  match(RegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3747
  match(i0RegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3748
  match(o0RegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3749
  match(o1RegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3750
  match(l7RegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3751
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3752
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3753
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3754
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3755
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3756
operand g1RegP() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3757
  constraint(ALLOC_IN_RC(g1_regP));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3758
  match(iRegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3759
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3760
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3761
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3762
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3763
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3764
operand g2RegP() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3765
  constraint(ALLOC_IN_RC(g2_regP));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3766
  match(iRegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3767
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3768
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3769
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3770
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3771
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3772
operand g3RegP() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3773
  constraint(ALLOC_IN_RC(g3_regP));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3774
  match(iRegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3775
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3776
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3777
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3778
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3779
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3780
operand g1RegI() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3781
  constraint(ALLOC_IN_RC(g1_regI));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3782
  match(iRegI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3783
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3784
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3785
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3786
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3787
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3788
operand g3RegI() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3789
  constraint(ALLOC_IN_RC(g3_regI));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3790
  match(iRegI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3791
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3792
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3793
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3794
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3795
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3796
operand g4RegI() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3797
  constraint(ALLOC_IN_RC(g4_regI));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3798
  match(iRegI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3799
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3800
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3801
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3802
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3803
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3804
operand g4RegP() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3805
  constraint(ALLOC_IN_RC(g4_regP));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3806
  match(iRegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3807
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3808
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3809
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3810
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3811
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3812
operand i0RegP() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3813
  constraint(ALLOC_IN_RC(i0_regP));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3814
  match(iRegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3815
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3816
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3817
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3818
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3819
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3820
operand o0RegP() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3821
  constraint(ALLOC_IN_RC(o0_regP));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3822
  match(iRegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3823
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3824
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3825
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3826
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3827
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3828
operand o1RegP() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3829
  constraint(ALLOC_IN_RC(o1_regP));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3830
  match(iRegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3831
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3832
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3833
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3834
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3835
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3836
operand o2RegP() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3837
  constraint(ALLOC_IN_RC(o2_regP));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3838
  match(iRegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3839
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3840
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3841
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3842
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3843
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3844
operand o7RegP() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3845
  constraint(ALLOC_IN_RC(o7_regP));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3846
  match(iRegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3847
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3848
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3849
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3850
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3851
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3852
operand l7RegP() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3853
  constraint(ALLOC_IN_RC(l7_regP));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3854
  match(iRegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3855
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3856
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3857
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3858
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3859
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3860
operand o7RegI() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3861
  constraint(ALLOC_IN_RC(o7_regI));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3862
  match(iRegI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3863
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3864
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3865
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3866
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3867
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3868
operand iRegN() %{
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3869
  constraint(ALLOC_IN_RC(int_reg));
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3870
  match(RegN);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3871
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3872
  format %{ %}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3873
  interface(REG_INTER);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3874
%}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3875
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3876
// Long Register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3877
operand iRegL() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3878
  constraint(ALLOC_IN_RC(long_reg));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3879
  match(RegL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3880
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3881
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3882
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3883
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3884
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3885
operand o2RegL() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3886
  constraint(ALLOC_IN_RC(o2_regL));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3887
  match(iRegL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3888
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3889
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3890
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3891
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3892
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3893
operand o7RegL() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3894
  constraint(ALLOC_IN_RC(o7_regL));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3895
  match(iRegL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3896
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3897
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3898
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3899
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3900
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3901
operand g1RegL() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3902
  constraint(ALLOC_IN_RC(g1_regL));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3903
  match(iRegL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3904
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3905
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3906
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3907
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3908
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  3909
operand g3RegL() %{
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  3910
  constraint(ALLOC_IN_RC(g3_regL));
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  3911
  match(iRegL);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  3912
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  3913
  format %{ %}
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  3914
  interface(REG_INTER);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  3915
%}
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  3916
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3917
// Int Register safe
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3918
// This is 64bit safe
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3919
operand iRegIsafe() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3920
  constraint(ALLOC_IN_RC(long_reg));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3921
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3922
  match(iRegI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3923
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3924
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3925
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3926
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3927
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3928
// Condition Code Flag Register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3929
operand flagsReg() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3930
  constraint(ALLOC_IN_RC(int_flags));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3931
  match(RegFlags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3932
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3933
  format %{ "ccr" %} // both ICC and XCC
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3934
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3935
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3936
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3937
// Condition Code Register, unsigned comparisons.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3938
operand flagsRegU() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3939
  constraint(ALLOC_IN_RC(int_flags));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3940
  match(RegFlags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3941
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3942
  format %{ "icc_U" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3943
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3944
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3945
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3946
// Condition Code Register, pointer comparisons.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3947
operand flagsRegP() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3948
  constraint(ALLOC_IN_RC(int_flags));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3949
  match(RegFlags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3950
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3951
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3952
  format %{ "xcc_P" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3953
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3954
  format %{ "icc_P" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3955
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3956
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3957
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3958
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3959
// Condition Code Register, long comparisons.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3960
operand flagsRegL() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3961
  constraint(ALLOC_IN_RC(int_flags));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3962
  match(RegFlags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3963
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3964
  format %{ "xcc_L" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3965
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3966
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3967
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3968
// Condition Code Register, floating comparisons, unordered same as "less".
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3969
operand flagsRegF() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3970
  constraint(ALLOC_IN_RC(float_flags));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3971
  match(RegFlags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3972
  match(flagsRegF0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3973
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3974
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3975
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3976
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3977
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3978
operand flagsRegF0() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3979
  constraint(ALLOC_IN_RC(float_flag0));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3980
  match(RegFlags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3981
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3982
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3983
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3984
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3985
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3986
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3987
// Condition Code Flag Register used by long compare
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3988
operand flagsReg_long_LTGE() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3989
  constraint(ALLOC_IN_RC(int_flags));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3990
  match(RegFlags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3991
  format %{ "icc_LTGE" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3992
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3993
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3994
operand flagsReg_long_EQNE() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3995
  constraint(ALLOC_IN_RC(int_flags));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3996
  match(RegFlags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3997
  format %{ "icc_EQNE" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3998
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3999
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4000
operand flagsReg_long_LEGT() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4001
  constraint(ALLOC_IN_RC(int_flags));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4002
  match(RegFlags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4003
  format %{ "icc_LEGT" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4004
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4005
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4006
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4007
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4008
operand regD() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4009
  constraint(ALLOC_IN_RC(dflt_reg));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4010
  match(RegD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4011
2015
580165b3f277 6790182: matcher.cpp:1375: assert(false,"bad AD file")
kvn
parents: 1500
diff changeset
  4012
  match(regD_low);
580165b3f277 6790182: matcher.cpp:1375: assert(false,"bad AD file")
kvn
parents: 1500
diff changeset
  4013
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4014
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4015
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4016
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4017
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4018
operand regF() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4019
  constraint(ALLOC_IN_RC(sflt_reg));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4020
  match(RegF);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4021
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4022
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4023
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4024
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4025
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4026
operand regD_low() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4027
  constraint(ALLOC_IN_RC(dflt_low_reg));
2015
580165b3f277 6790182: matcher.cpp:1375: assert(false,"bad AD file")
kvn
parents: 1500
diff changeset
  4028
  match(regD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4029
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4030
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4031
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4032
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4033
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4034
// Special Registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4035
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4036
// Method Register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4037
operand inline_cache_regP(iRegP reg) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4038
  constraint(ALLOC_IN_RC(g5_regP)); // G5=inline_cache_reg but uses 2 bits instead of 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4039
  match(reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4040
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4041
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4042
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4043
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4044
operand interpreter_method_oop_regP(iRegP reg) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4045
  constraint(ALLOC_IN_RC(g5_regP)); // G5=interpreter_method_oop_reg but uses 2 bits instead of 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4046
  match(reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4047
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4048
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4049
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4050
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4051
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4052
//----------Complex Operands---------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4053
// Indirect Memory Reference
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4054
operand indirect(sp_ptr_RegP reg) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4055
  constraint(ALLOC_IN_RC(sp_ptr_reg));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4056
  match(reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4057
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4058
  op_cost(100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4059
  format %{ "[$reg]" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4060
  interface(MEMORY_INTER) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4061
    base($reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4062
    index(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4063
    scale(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4064
    disp(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4065
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4066
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4067
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4068
// Indirect with Offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4069
operand indOffset13(sp_ptr_RegP reg, immX13 offset) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4070
  constraint(ALLOC_IN_RC(sp_ptr_reg));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4071
  match(AddP reg offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4072
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4073
  op_cost(100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4074
  format %{ "[$reg + $offset]" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4075
  interface(MEMORY_INTER) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4076
    base($reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4077
    index(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4078
    scale(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4079
    disp($offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4080
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4081
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4082
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4083
// Note:  Intel has a swapped version also, like this:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4084
//operand indOffsetX(iRegI reg, immP offset) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4085
//  constraint(ALLOC_IN_RC(int_reg));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4086
//  match(AddP offset reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4087
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4088
//  op_cost(100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4089
//  format %{ "[$reg + $offset]" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4090
//  interface(MEMORY_INTER) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4091
//    base($reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4092
//    index(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4093
//    scale(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4094
//    disp($offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4095
//  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4096
//%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4097
//// However, it doesn't make sense for SPARC, since
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4098
// we have no particularly good way to embed oops in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4099
// single instructions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4100
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4101
// Indirect with Register Index
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4102
operand indIndex(iRegP addr, iRegX index) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4103
  constraint(ALLOC_IN_RC(ptr_reg));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4104
  match(AddP addr index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4105
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4106
  op_cost(100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4107
  format %{ "[$addr + $index]" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4108
  interface(MEMORY_INTER) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4109
    base($addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4110
    index($index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4111
    scale(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4112
    disp(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4113
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4114
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4115
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4116
//----------Special Memory Operands--------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4117
// Stack Slot Operand - This operand is used for loading and storing temporary
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4118
//                      values on the stack where a match requires a value to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4119
//                      flow through memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4120
operand stackSlotI(sRegI reg) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4121
  constraint(ALLOC_IN_RC(stack_slots));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4122
  op_cost(100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4123
  //match(RegI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4124
  format %{ "[$reg]" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4125
  interface(MEMORY_INTER) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4126
    base(0xE);   // R_SP
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4127
    index(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4128
    scale(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4129
    disp($reg);  // Stack Offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4130
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4131
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4132
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4133
operand stackSlotP(sRegP reg) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4134
  constraint(ALLOC_IN_RC(stack_slots));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4135
  op_cost(100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4136
  //match(RegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4137
  format %{ "[$reg]" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4138
  interface(MEMORY_INTER) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4139
    base(0xE);   // R_SP
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4140
    index(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4141
    scale(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4142
    disp($reg);  // Stack Offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4143
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4144
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4145
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4146
operand stackSlotF(sRegF reg) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4147
  constraint(ALLOC_IN_RC(stack_slots));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4148
  op_cost(100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4149
  //match(RegF);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4150
  format %{ "[$reg]" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4151
  interface(MEMORY_INTER) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4152
    base(0xE);   // R_SP
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4153
    index(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4154
    scale(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4155
    disp($reg);  // Stack Offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4156
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4157
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4158
operand stackSlotD(sRegD reg) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4159
  constraint(ALLOC_IN_RC(stack_slots));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4160
  op_cost(100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4161
  //match(RegD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4162
  format %{ "[$reg]" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4163
  interface(MEMORY_INTER) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4164
    base(0xE);   // R_SP
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4165
    index(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4166
    scale(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4167
    disp($reg);  // Stack Offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4168
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4169
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4170
operand stackSlotL(sRegL reg) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4171
  constraint(ALLOC_IN_RC(stack_slots));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4172
  op_cost(100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4173
  //match(RegL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4174
  format %{ "[$reg]" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4175
  interface(MEMORY_INTER) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4176
    base(0xE);   // R_SP
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4177
    index(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4178
    scale(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4179
    disp($reg);  // Stack Offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4180
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4181
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4182
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4183
// Operands for expressing Control Flow
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4184
// NOTE:  Label is a predefined operand which should not be redefined in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4185
//        the AD file.  It is generically handled within the ADLC.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4186
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4187
//----------Conditional Branch Operands----------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4188
// Comparison Op  - This is the operation of the comparison, and is limited to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4189
//                  the following set of codes:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4190
//                  L (<), LE (<=), G (>), GE (>=), E (==), NE (!=)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4191
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4192
// Other attributes of the comparison, such as unsignedness, are specified
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4193
// by the comparison instruction that sets a condition code flags register.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4194
// That result is represented by a flags operand whose subtype is appropriate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4195
// to the unsignedness (etc.) of the comparison.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4196
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4197
// Later, the instruction which matches both the Comparison Op (a Bool) and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4198
// the flags (produced by the Cmp) specifies the coding of the comparison op
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4199
// by matching a specific subtype of Bool operand below, such as cmpOpU.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4200
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4201
operand cmpOp() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4202
  match(Bool);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4203
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4204
  format %{ "" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4205
  interface(COND_INTER) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4206
    equal(0x1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4207
    not_equal(0x9);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4208
    less(0x3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4209
    greater_equal(0xB);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4210
    less_equal(0x2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4211
    greater(0xA);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4212
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4213
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4214
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4215
// Comparison Op, unsigned
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4216
operand cmpOpU() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4217
  match(Bool);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4218
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4219
  format %{ "u" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4220
  interface(COND_INTER) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4221
    equal(0x1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4222
    not_equal(0x9);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4223
    less(0x5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4224
    greater_equal(0xD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4225
    less_equal(0x4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4226
    greater(0xC);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4227
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4228
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4229
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4230
// Comparison Op, pointer (same as unsigned)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4231
operand cmpOpP() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4232
  match(Bool);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4233
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4234
  format %{ "p" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4235
  interface(COND_INTER) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4236
    equal(0x1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4237
    not_equal(0x9);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4238
    less(0x5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4239
    greater_equal(0xD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4240
    less_equal(0x4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4241
    greater(0xC);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4242
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4243
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4244
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4245
// Comparison Op, branch-register encoding
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4246
operand cmpOp_reg() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4247
  match(Bool);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4248
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4249
  format %{ "" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4250
  interface(COND_INTER) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4251
    equal        (0x1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4252
    not_equal    (0x5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4253
    less         (0x3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4254
    greater_equal(0x7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4255
    less_equal   (0x2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4256
    greater      (0x6);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4257
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4258
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4259
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4260
// Comparison Code, floating, unordered same as less
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4261
operand cmpOpF() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4262
  match(Bool);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4263
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4264
  format %{ "fl" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4265
  interface(COND_INTER) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4266
    equal(0x9);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4267
    not_equal(0x1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4268
    less(0x3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4269
    greater_equal(0xB);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4270
    less_equal(0xE);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4271
    greater(0x6);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4272
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4273
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4274
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4275
// Used by long compare
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4276
operand cmpOp_commute() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4277
  match(Bool);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4278
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4279
  format %{ "" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4280
  interface(COND_INTER) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4281
    equal(0x1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4282
    not_equal(0x9);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4283
    less(0xA);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4284
    greater_equal(0x2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4285
    less_equal(0xB);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4286
    greater(0x3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4287
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4288
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4289
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4290
//----------OPERAND CLASSES----------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4291
// Operand Classes are groups of operands that are used to simplify
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 2022
diff changeset
  4292
// instruction definitions by not requiring the AD writer to specify separate
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4293
// instructions for every form of operand when the instruction accepts
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4294
// multiple operand types with the same basic encoding and format.  The classic
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4295
// case of this is memory operands.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4296
// Indirect is not included since its use is limited to Compare & Swap
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4297
opclass memory( indirect, indOffset13, indIndex );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4298
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4299
//----------PIPELINE-----------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4300
pipeline %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4301
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4302
//----------ATTRIBUTES---------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4303
attributes %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4304
  fixed_size_instructions;           // Fixed size instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4305
  branch_has_delay_slot;             // Branch has delay slot following
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4306
  max_instructions_per_bundle = 4;   // Up to 4 instructions per bundle
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4307
  instruction_unit_size = 4;         // An instruction is 4 bytes long
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4308
  instruction_fetch_unit_size = 16;  // The processor fetches one line
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4309
  instruction_fetch_units = 1;       // of 16 bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4310
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4311
  // List of nop instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4312
  nops( Nop_A0, Nop_A1, Nop_MS, Nop_FA, Nop_BR );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4313
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4314
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4315
//----------RESOURCES----------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4316
// Resources are the functional units available to the machine
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4317
resources(A0, A1, MS, BR, FA, FM, IDIV, FDIV, IALU = A0 | A1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4318
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4319
//----------PIPELINE DESCRIPTION-----------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4320
// Pipeline Description specifies the stages in the machine's pipeline
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4321
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4322
pipe_desc(A, P, F, B, I, J, S, R, E, C, M, W, X, T, D);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4323
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4324
//----------PIPELINE CLASSES---------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4325
// Pipeline Classes describe the stages in which input and output are
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4326
// referenced by the hardware pipeline.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4327
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4328
// Integer ALU reg-reg operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4329
pipe_class ialu_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4330
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4331
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4332
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4333
    src2  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4334
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4335
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4336
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4337
// Integer ALU reg-reg long operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4338
pipe_class ialu_reg_reg_2(iRegL dst, iRegL src1, iRegL src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4339
    instruction_count(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4340
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4341
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4342
    src2  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4343
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4344
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4345
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4346
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4347
// Integer ALU reg-reg long dependent operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4348
pipe_class ialu_reg_reg_2_dep(iRegL dst, iRegL src1, iRegL src2, flagsReg cr) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4349
    instruction_count(1); multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4350
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4351
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4352
    src2  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4353
    cr    : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4354
    IALU  : R(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4355
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4356
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4357
// Integer ALU reg-imm operaion
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4358
pipe_class ialu_reg_imm(iRegI dst, iRegI src1, immI13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4359
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4360
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4361
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4362
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4363
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4364
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4365
// Integer ALU reg-reg operation with condition code
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4366
pipe_class ialu_cc_reg_reg(iRegI dst, iRegI src1, iRegI src2, flagsReg cr) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4367
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4368
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4369
    cr    : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4370
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4371
    src2  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4372
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4373
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4374
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4375
// Integer ALU reg-imm operation with condition code
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4376
pipe_class ialu_cc_reg_imm(iRegI dst, iRegI src1, immI13 src2, flagsReg cr) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4377
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4378
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4379
    cr    : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4380
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4381
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4382
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4383
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4384
// Integer ALU zero-reg operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4385
pipe_class ialu_zero_reg(iRegI dst, immI0 zero, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4386
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4387
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4388
    src2  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4389
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4390
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4391
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4392
// Integer ALU zero-reg operation with condition code only
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4393
pipe_class ialu_cconly_zero_reg(flagsReg cr, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4394
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4395
    cr    : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4396
    src   : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4397
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4398
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4399
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4400
// Integer ALU reg-reg operation with condition code only
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4401
pipe_class ialu_cconly_reg_reg(flagsReg cr, iRegI src1, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4402
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4403
    cr    : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4404
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4405
    src2  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4406
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4407
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4408
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4409
// Integer ALU reg-imm operation with condition code only
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4410
pipe_class ialu_cconly_reg_imm(flagsReg cr, iRegI src1, immI13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4411
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4412
    cr    : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4413
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4414
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4415
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4416
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4417
// Integer ALU reg-reg-zero operation with condition code only
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4418
pipe_class ialu_cconly_reg_reg_zero(flagsReg cr, iRegI src1, iRegI src2, immI0 zero) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4419
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4420
    cr    : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4421
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4422
    src2  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4423
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4424
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4425
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4426
// Integer ALU reg-imm-zero operation with condition code only
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4427
pipe_class ialu_cconly_reg_imm_zero(flagsReg cr, iRegI src1, immI13 src2, immI0 zero) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4428
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4429
    cr    : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4430
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4431
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4432
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4433
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4434
// Integer ALU reg-reg operation with condition code, src1 modified
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4435
pipe_class ialu_cc_rwreg_reg(flagsReg cr, iRegI src1, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4436
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4437
    cr    : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4438
    src1  : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4439
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4440
    src2  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4441
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4442
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4443
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4444
// Integer ALU reg-imm operation with condition code, src1 modified
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4445
pipe_class ialu_cc_rwreg_imm(flagsReg cr, iRegI src1, immI13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4446
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4447
    cr    : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4448
    src1  : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4449
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4450
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4451
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4452
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4453
pipe_class cmpL_reg(iRegI dst, iRegL src1, iRegL src2, flagsReg cr ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4454
    multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4455
    dst   : E(write)+4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4456
    cr    : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4457
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4458
    src2  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4459
    IALU  : R(3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4460
    BR    : R(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4461
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4462
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4463
// Integer ALU operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4464
pipe_class ialu_none(iRegI dst) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4465
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4466
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4467
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4468
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4469
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4470
// Integer ALU reg operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4471
pipe_class ialu_reg(iRegI dst, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4472
    single_instruction; may_have_no_code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4473
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4474
    src   : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4475
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4476
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4477
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4478
// Integer ALU reg conditional operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4479
// This instruction has a 1 cycle stall, and cannot execute
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4480
// in the same cycle as the instruction setting the condition
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4481
// code. We kludge this by pretending to read the condition code
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4482
// 1 cycle earlier, and by marking the functional units as busy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4483
// for 2 cycles with the result available 1 cycle later than
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4484
// is really the case.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4485
pipe_class ialu_reg_flags( iRegI op2_out, iRegI op2_in, iRegI op1, flagsReg cr ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4486
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4487
    op2_out : C(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4488
    op1     : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4489
    cr      : R(read);       // This is really E, with a 1 cycle stall
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4490
    BR      : R(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4491
    MS      : R(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4492
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4493
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4494
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4495
pipe_class ialu_clr_and_mover( iRegI dst, iRegP src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4496
    instruction_count(1); multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4497
    dst     : C(write)+1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4498
    src     : R(read)+1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4499
    IALU    : R(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4500
    BR      : E(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4501
    MS      : E(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4502
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4503
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4504
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4505
// Integer ALU reg operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4506
pipe_class ialu_move_reg_L_to_I(iRegI dst, iRegL src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4507
    single_instruction; may_have_no_code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4508
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4509
    src   : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4510
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4511
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4512
pipe_class ialu_move_reg_I_to_L(iRegL dst, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4513
    single_instruction; may_have_no_code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4514
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4515
    src   : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4516
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4517
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4518
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4519
// Two integer ALU reg operations
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4520
pipe_class ialu_reg_2(iRegL dst, iRegL src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4521
    instruction_count(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4522
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4523
    src   : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4524
    A0    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4525
    A1    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4526
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4527
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4528
// Two integer ALU reg operations
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4529
pipe_class ialu_move_reg_L_to_L(iRegL dst, iRegL src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4530
    instruction_count(2); may_have_no_code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4531
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4532
    src   : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4533
    A0    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4534
    A1    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4535
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4536
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4537
// Integer ALU imm operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4538
pipe_class ialu_imm(iRegI dst, immI13 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4539
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4540
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4541
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4542
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4543
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4544
// Integer ALU reg-reg with carry operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4545
pipe_class ialu_reg_reg_cy(iRegI dst, iRegI src1, iRegI src2, iRegI cy) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4546
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4547
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4548
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4549
    src2  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4550
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4551
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4552
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4553
// Integer ALU cc operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4554
pipe_class ialu_cc(iRegI dst, flagsReg cc) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4555
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4556
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4557
    cc    : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4558
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4559
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4560
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4561
// Integer ALU cc / second IALU operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4562
pipe_class ialu_reg_ialu( iRegI dst, iRegI src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4563
    instruction_count(1); multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4564
    dst   : E(write)+1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4565
    src   : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4566
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4567
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4568
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4569
// Integer ALU cc / second IALU operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4570
pipe_class ialu_reg_reg_ialu( iRegI dst, iRegI p, iRegI q ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4571
    instruction_count(1); multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4572
    dst   : E(write)+1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4573
    p     : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4574
    q     : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4575
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4576
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4577
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4578
// Integer ALU hi-lo-reg operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4579
pipe_class ialu_hi_lo_reg(iRegI dst, immI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4580
    instruction_count(1); multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4581
    dst   : E(write)+1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4582
    IALU  : R(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4583
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4584
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4585
// Float ALU hi-lo-reg operation (with temp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4586
pipe_class ialu_hi_lo_reg_temp(regF dst, immF src, g3RegP tmp) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4587
    instruction_count(1); multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4588
    dst   : E(write)+1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4589
    IALU  : R(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4590
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4591
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4592
// Long Constant
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4593
pipe_class loadConL( iRegL dst, immL src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4594
    instruction_count(2); multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4595
    dst   : E(write)+1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4596
    IALU  : R(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4597
    IALU  : R(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4598
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4599
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4600
// Pointer Constant
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4601
pipe_class loadConP( iRegP dst, immP src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4602
    instruction_count(0); multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4603
    fixed_latency(6);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4604
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4605
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4606
// Polling Address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4607
pipe_class loadConP_poll( iRegP dst, immP_poll src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4608
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4609
    instruction_count(0); multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4610
    fixed_latency(6);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4611
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4612
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4613
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4614
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4615
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4616
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4617
// Long Constant small
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4618
pipe_class loadConLlo( iRegL dst, immL src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4619
    instruction_count(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4620
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4621
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4622
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4623
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4624
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4625
// [PHH] This is wrong for 64-bit.  See LdImmF/D.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4626
pipe_class loadConFD(regF dst, immF src, g3RegP tmp) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4627
    instruction_count(1); multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4628
    src   : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4629
    dst   : M(write)+1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4630
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4631
    MS    : E;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4632
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4633
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4634
// Integer ALU nop operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4635
pipe_class ialu_nop() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4636
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4637
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4638
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4639
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4640
// Integer ALU nop operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4641
pipe_class ialu_nop_A0() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4642
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4643
    A0    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4644
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4645
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4646
// Integer ALU nop operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4647
pipe_class ialu_nop_A1() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4648
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4649
    A1    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4650
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4651
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4652
// Integer Multiply reg-reg operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4653
pipe_class imul_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4654
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4655
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4656
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4657
    src2  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4658
    MS    : R(5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4659
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4660
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4661
// Integer Multiply reg-imm operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4662
pipe_class imul_reg_imm(iRegI dst, iRegI src1, immI13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4663
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4664
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4665
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4666
    MS    : R(5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4667
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4668
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4669
pipe_class mulL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4670
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4671
    dst   : E(write)+4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4672
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4673
    src2  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4674
    MS    : R(6);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4675
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4676
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4677
pipe_class mulL_reg_imm(iRegL dst, iRegL src1, immL13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4678
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4679
    dst   : E(write)+4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4680
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4681
    MS    : R(6);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4682
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4683
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4684
// Integer Divide reg-reg
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4685
pipe_class sdiv_reg_reg(iRegI dst, iRegI src1, iRegI src2, iRegI temp, flagsReg cr) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4686
    instruction_count(1); multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4687
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4688
    temp  : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4689
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4690
    src2  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4691
    temp  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4692
    MS    : R(38);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4693
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4694
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4695
// Integer Divide reg-imm
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4696
pipe_class sdiv_reg_imm(iRegI dst, iRegI src1, immI13 src2, iRegI temp, flagsReg cr) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4697
    instruction_count(1); multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4698
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4699
    temp  : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4700
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4701
    temp  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4702
    MS    : R(38);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4703
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4704
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4705
// Long Divide
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4706
pipe_class divL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4707
    dst  : E(write)+71;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4708
    src1 : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4709
    src2 : R(read)+1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4710
    MS   : R(70);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4711
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4712
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4713
pipe_class divL_reg_imm(iRegL dst, iRegL src1, immL13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4714
    dst  : E(write)+71;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4715
    src1 : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4716
    MS   : R(70);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4717
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4718
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4719
// Floating Point Add Float
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4720
pipe_class faddF_reg_reg(regF dst, regF src1, regF src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4721
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4722
    dst   : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4723
    src1  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4724
    src2  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4725
    FA    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4726
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4727
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4728
// Floating Point Add Double
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4729
pipe_class faddD_reg_reg(regD dst, regD src1, regD src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4730
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4731
    dst   : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4732
    src1  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4733
    src2  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4734
    FA    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4735
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4736
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4737
// Floating Point Conditional Move based on integer flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4738
pipe_class int_conditional_float_move (cmpOp cmp, flagsReg cr, regF dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4739
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4740
    dst   : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4741
    src   : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4742
    cr    : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4743
    FA    : R(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4744
    BR    : R(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4745
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4746
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4747
// Floating Point Conditional Move based on integer flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4748
pipe_class int_conditional_double_move (cmpOp cmp, flagsReg cr, regD dst, regD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4749
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4750
    dst   : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4751
    src   : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4752
    cr    : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4753
    FA    : R(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4754
    BR    : R(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4755
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4756
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4757
// Floating Point Multiply Float
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4758
pipe_class fmulF_reg_reg(regF dst, regF src1, regF src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4759
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4760
    dst   : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4761
    src1  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4762
    src2  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4763
    FM    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4764
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4765
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4766
// Floating Point Multiply Double
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4767
pipe_class fmulD_reg_reg(regD dst, regD src1, regD src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4768
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4769
    dst   : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4770
    src1  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4771
    src2  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4772
    FM    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4773
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4774
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4775
// Floating Point Divide Float
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4776
pipe_class fdivF_reg_reg(regF dst, regF src1, regF src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4777
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4778
    dst   : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4779
    src1  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4780
    src2  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4781
    FM    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4782
    FDIV  : C(14);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4783
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4784
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4785
// Floating Point Divide Double
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4786
pipe_class fdivD_reg_reg(regD dst, regD src1, regD src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4787
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4788
    dst   : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4789
    src1  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4790
    src2  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4791
    FM    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4792
    FDIV  : C(17);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4793
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4794
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4795
// Floating Point Move/Negate/Abs Float
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4796
pipe_class faddF_reg(regF dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4797
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4798
    dst   : W(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4799
    src   : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4800
    FA    : R(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4801
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4802
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4803
// Floating Point Move/Negate/Abs Double
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4804
pipe_class faddD_reg(regD dst, regD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4805
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4806
    dst   : W(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4807
    src   : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4808
    FA    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4809
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4810
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4811
// Floating Point Convert F->D
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4812
pipe_class fcvtF2D(regD dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4813
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4814
    dst   : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4815
    src   : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4816
    FA    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4817
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4818
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4819
// Floating Point Convert I->D
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4820
pipe_class fcvtI2D(regD dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4821
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4822
    dst   : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4823
    src   : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4824
    FA    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4825
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4826
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4827
// Floating Point Convert LHi->D
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4828
pipe_class fcvtLHi2D(regD dst, regD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4829
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4830
    dst   : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4831
    src   : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4832
    FA    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4833
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4834
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4835
// Floating Point Convert L->D
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4836
pipe_class fcvtL2D(regD dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4837
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4838
    dst   : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4839
    src   : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4840
    FA    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4841
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4842
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4843
// Floating Point Convert L->F
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4844
pipe_class fcvtL2F(regD dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4845
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4846
    dst   : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4847
    src   : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4848
    FA    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4849
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4850
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4851
// Floating Point Convert D->F
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4852
pipe_class fcvtD2F(regD dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4853
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4854
    dst   : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4855
    src   : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4856
    FA    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4857
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4858
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4859
// Floating Point Convert I->L
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4860
pipe_class fcvtI2L(regD dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4861
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4862
    dst   : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4863
    src   : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4864
    FA    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4865
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4866
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4867
// Floating Point Convert D->F
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4868
pipe_class fcvtD2I(regF dst, regD src, flagsReg cr) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4869
    instruction_count(1); multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4870
    dst   : X(write)+6;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4871
    src   : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4872
    FA    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4873
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4874
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4875
// Floating Point Convert D->L
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4876
pipe_class fcvtD2L(regD dst, regD src, flagsReg cr) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4877
    instruction_count(1); multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4878
    dst   : X(write)+6;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4879
    src   : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4880
    FA    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4881
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4882
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4883
// Floating Point Convert F->I
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4884
pipe_class fcvtF2I(regF dst, regF src, flagsReg cr) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4885
    instruction_count(1); multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4886
    dst   : X(write)+6;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4887
    src   : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4888
    FA    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4889
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4890
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4891
// Floating Point Convert F->L
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4892
pipe_class fcvtF2L(regD dst, regF src, flagsReg cr) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4893
    instruction_count(1); multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4894
    dst   : X(write)+6;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4895
    src   : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4896
    FA    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4897
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4898
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4899
// Floating Point Convert I->F
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4900
pipe_class fcvtI2F(regF dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4901
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4902
    dst   : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4903
    src   : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4904
    FA    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4905
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4906
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4907
// Floating Point Compare
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4908
pipe_class faddF_fcc_reg_reg_zero(flagsRegF cr, regF src1, regF src2, immI0 zero) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4909
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4910
    cr    : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4911
    src1  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4912
    src2  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4913
    FA    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4914
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4915
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4916
// Floating Point Compare
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4917
pipe_class faddD_fcc_reg_reg_zero(flagsRegF cr, regD src1, regD src2, immI0 zero) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4918
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4919
    cr    : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4920
    src1  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4921
    src2  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4922
    FA    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4923
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4924
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4925
// Floating Add Nop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4926
pipe_class fadd_nop() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4927
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4928
    FA  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4929
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4930
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4931
// Integer Store to Memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4932
pipe_class istore_mem_reg(memory mem, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4933
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4934
    mem   : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4935
    src   : C(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4936
    MS    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4937
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4938
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4939
// Integer Store to Memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4940
pipe_class istore_mem_spORreg(memory mem, sp_ptr_RegP src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4941
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4942
    mem   : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4943
    src   : C(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4944
    MS    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4945
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4946
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4947
// Integer Store Zero to Memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4948
pipe_class istore_mem_zero(memory mem, immI0 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4949
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4950
    mem   : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4951
    MS    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4952
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4953
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4954
// Special Stack Slot Store
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4955
pipe_class istore_stk_reg(stackSlotI stkSlot, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4956
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4957
    stkSlot : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4958
    src     : C(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4959
    MS      : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4960
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4961
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4962
// Special Stack Slot Store
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4963
pipe_class lstoreI_stk_reg(stackSlotL stkSlot, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4964
    instruction_count(2); multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4965
    stkSlot : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4966
    src     : C(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4967
    MS      : R(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4968
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4969
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4970
// Float Store
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4971
pipe_class fstoreF_mem_reg(memory mem, RegF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4972
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4973
    mem : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4974
    src : C(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4975
    MS  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4976
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4977
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4978
// Float Store
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4979
pipe_class fstoreF_mem_zero(memory mem, immF0 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4980
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4981
    mem : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4982
    MS  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4983
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4984
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4985
// Double Store
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4986
pipe_class fstoreD_mem_reg(memory mem, RegD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4987
    instruction_count(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4988
    mem : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4989
    src : C(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4990
    MS  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4991
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4992
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4993
// Double Store
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4994
pipe_class fstoreD_mem_zero(memory mem, immD0 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4995
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4996
    mem : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4997
    MS  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4998
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4999
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5000
// Special Stack Slot Float Store
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5001
pipe_class fstoreF_stk_reg(stackSlotI stkSlot, RegF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5002
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5003
    stkSlot : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5004
    src     : C(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5005
    MS      : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5006
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5007
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5008
// Special Stack Slot Double Store
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5009
pipe_class fstoreD_stk_reg(stackSlotI stkSlot, RegD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5010
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5011
    stkSlot : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5012
    src     : C(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5013
    MS      : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5014
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5015
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5016
// Integer Load (when sign bit propagation not needed)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5017
pipe_class iload_mem(iRegI dst, memory mem) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5018
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5019
    mem : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5020
    dst : C(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5021
    MS  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5022
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5023
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5024
// Integer Load from stack operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5025
pipe_class iload_stkD(iRegI dst, stackSlotD mem ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5026
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5027
    mem : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5028
    dst : C(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5029
    MS  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5030
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5031
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5032
// Integer Load (when sign bit propagation or masking is needed)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5033
pipe_class iload_mask_mem(iRegI dst, memory mem) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5034
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5035
    mem : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5036
    dst : M(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5037
    MS  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5038
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5039
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5040
// Float Load
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5041
pipe_class floadF_mem(regF dst, memory mem) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5042
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5043
    mem : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5044
    dst : M(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5045
    MS  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5046
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5047
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5048
// Float Load
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5049
pipe_class floadD_mem(regD dst, memory mem) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5050
    instruction_count(1); multiple_bundles; // Again, unaligned argument is only multiple case
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5051
    mem : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5052
    dst : M(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5053
    MS  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5054
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5055
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5056
// Float Load
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5057
pipe_class floadF_stk(regF dst, stackSlotI stkSlot) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5058
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5059
    stkSlot : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5060
    dst : M(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5061
    MS  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5062
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5063
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5064
// Float Load
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5065
pipe_class floadD_stk(regD dst, stackSlotI stkSlot) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5066
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5067
    stkSlot : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5068
    dst : M(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5069
    MS  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5070
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5071
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5072
// Memory Nop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5073
pipe_class mem_nop() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5074
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5075
    MS  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5076
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5077
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5078
pipe_class sethi(iRegP dst, immI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5079
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5080
    dst  : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5081
    IALU : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5082
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5083
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5084
pipe_class loadPollP(iRegP poll) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5085
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5086
    poll : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5087
    MS   : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5088
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5089
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5090
pipe_class br(Universe br, label labl) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5091
    single_instruction_with_delay_slot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5092
    BR  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5093
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5094
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5095
pipe_class br_cc(Universe br, cmpOp cmp, flagsReg cr, label labl) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5096
    single_instruction_with_delay_slot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5097
    cr    : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5098
    BR    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5099
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5100
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5101
pipe_class br_reg(Universe br, cmpOp cmp, iRegI op1, label labl) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5102
    single_instruction_with_delay_slot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5103
    op1 : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5104
    BR  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5105
    MS  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5106
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5107
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5108
pipe_class br_fcc(Universe br, cmpOpF cc, flagsReg cr, label labl) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5109
    single_instruction_with_delay_slot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5110
    cr    : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5111
    BR    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5112
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5113
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5114
pipe_class br_nop() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5115
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5116
    BR  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5117
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5118
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5119
pipe_class simple_call(method meth) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5120
    instruction_count(2); multiple_bundles; force_serialization;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5121
    fixed_latency(100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5122
    BR  : R(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5123
    MS  : R(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5124
    A0  : R(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5125
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5126
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5127
pipe_class compiled_call(method meth) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5128
    instruction_count(1); multiple_bundles; force_serialization;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5129
    fixed_latency(100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5130
    MS  : R(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5131
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5132
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5133
pipe_class call(method meth) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5134
    instruction_count(0); multiple_bundles; force_serialization;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5135
    fixed_latency(100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5136
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5137
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5138
pipe_class tail_call(Universe ignore, label labl) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5139
    single_instruction; has_delay_slot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5140
    fixed_latency(100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5141
    BR  : R(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5142
    MS  : R(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5143
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5144
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5145
pipe_class ret(Universe ignore) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5146
    single_instruction; has_delay_slot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5147
    BR  : R(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5148
    MS  : R(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5149
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5150
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5151
pipe_class ret_poll(g3RegP poll) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5152
    instruction_count(3); has_delay_slot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5153
    poll : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5154
    MS   : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5155
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5156
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5157
// The real do-nothing guy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5158
pipe_class empty( ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5159
    instruction_count(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5160
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5161
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5162
pipe_class long_memory_op() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5163
    instruction_count(0); multiple_bundles; force_serialization;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5164
    fixed_latency(25);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5165
    MS  : R(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5166
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5167
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5168
// Check-cast
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5169
pipe_class partial_subtype_check_pipe(Universe ignore, iRegP array, iRegP match ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5170
    array : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5171
    match  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5172
    IALU   : R(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5173
    BR     : R(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5174
    MS     : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5175
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5176
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5177
// Convert FPU flags into +1,0,-1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5178
pipe_class floating_cmp( iRegI dst, regF src1, regF src2 ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5179
    src1  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5180
    src2  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5181
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5182
    FA    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5183
    MS    : R(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5184
    BR    : R(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5185
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5186
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5187
// Compare for p < q, and conditionally add y
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5188
pipe_class cadd_cmpltmask( iRegI p, iRegI q, iRegI y ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5189
    p     : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5190
    q     : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5191
    y     : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5192
    IALU  : R(3)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5193
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5194
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5195
// Perform a compare, then move conditionally in a branch delay slot.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5196
pipe_class min_max( iRegI src2, iRegI srcdst ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5197
    src2   : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5198
    srcdst : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5199
    IALU   : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5200
    BR     : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5201
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5202
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5203
// Define the class for the Nop node
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5204
define %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5205
   MachNop = ialu_nop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5206
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5207
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5208
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5209
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5210
//----------INSTRUCTIONS-------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5211
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5212
//------------Special Stack Slot instructions - no match rules-----------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5213
instruct stkI_to_regF(regF dst, stackSlotI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5214
  // No match rule to avoid chain rule match.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5215
  effect(DEF dst, USE src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5216
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5217
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5218
  format %{ "LDF    $src,$dst\t! stkI to regF" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5219
  opcode(Assembler::ldf_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  5220
  ins_encode(simple_form3_mem_reg(src, dst));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5221
  ins_pipe(floadF_stk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5222
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5223
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5224
instruct stkL_to_regD(regD dst, stackSlotL src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5225
  // No match rule to avoid chain rule match.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5226
  effect(DEF dst, USE src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5227
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5228
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5229
  format %{ "LDDF   $src,$dst\t! stkL to regD" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5230
  opcode(Assembler::lddf_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  5231
  ins_encode(simple_form3_mem_reg(src, dst));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5232
  ins_pipe(floadD_stk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5233
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5234
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5235
instruct regF_to_stkI(stackSlotI dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5236
  // No match rule to avoid chain rule match.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5237
  effect(DEF dst, USE src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5238
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5239
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5240
  format %{ "STF    $src,$dst\t! regF to stkI" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5241
  opcode(Assembler::stf_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  5242
  ins_encode(simple_form3_mem_reg(dst, src));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5243
  ins_pipe(fstoreF_stk_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5244
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5245
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5246
instruct regD_to_stkL(stackSlotL dst, regD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5247
  // No match rule to avoid chain rule match.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5248
  effect(DEF dst, USE src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5249
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5250
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5251
  format %{ "STDF   $src,$dst\t! regD to stkL" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5252
  opcode(Assembler::stdf_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  5253
  ins_encode(simple_form3_mem_reg(dst, src));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5254
  ins_pipe(fstoreD_stk_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5255
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5256
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5257
instruct regI_to_stkLHi(stackSlotL dst, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5258
  effect(DEF dst, USE src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5259
  ins_cost(MEMORY_REF_COST*2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5260
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5261
  format %{ "STW    $src,$dst.hi\t! long\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5262
            "STW    R_G0,$dst.lo" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5263
  opcode(Assembler::stw_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  5264
  ins_encode(simple_form3_mem_reg(dst, src), form3_mem_plus_4_reg(dst, R_G0));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5265
  ins_pipe(lstoreI_stk_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5266
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5267
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5268
instruct regL_to_stkD(stackSlotD dst, iRegL src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5269
  // No match rule to avoid chain rule match.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5270
  effect(DEF dst, USE src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5271
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5272
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5273
  format %{ "STX    $src,$dst\t! regL to stkD" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5274
  opcode(Assembler::stx_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  5275
  ins_encode(simple_form3_mem_reg( dst, src ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5276
  ins_pipe(istore_stk_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5277
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5278
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5279
//---------- Chain stack slots between similar types --------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5280
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5281
// Load integer from stack slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5282
instruct stkI_to_regI( iRegI dst, stackSlotI src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5283
  match(Set dst src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5284
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5285
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5286
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5287
  format %{ "LDUW   $src,$dst\t!stk" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5288
  opcode(Assembler::lduw_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  5289
  ins_encode(simple_form3_mem_reg( src, dst ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5290
  ins_pipe(iload_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5291
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5292
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5293
// Store integer to stack slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5294
instruct regI_to_stkI( stackSlotI dst, iRegI src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5295
  match(Set dst src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5296
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5297
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5298
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5299
  format %{ "STW    $src,$dst\t!stk" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5300
  opcode(Assembler::stw_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  5301
  ins_encode(simple_form3_mem_reg( dst, src ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5302
  ins_pipe(istore_mem_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5303
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5304
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5305
// Load long from stack slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5306
instruct stkL_to_regL( iRegL dst, stackSlotL src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5307
  match(Set dst src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5308
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5309
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5310
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5311
  format %{ "LDX    $src,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5312
  opcode(Assembler::ldx_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  5313
  ins_encode(simple_form3_mem_reg( src, dst ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5314
  ins_pipe(iload_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5315
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5316
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5317
// Store long to stack slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5318
instruct regL_to_stkL(stackSlotL dst, iRegL src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5319
  match(Set dst src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5320
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5321
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5322
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5323
  format %{ "STX    $src,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5324
  opcode(Assembler::stx_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  5325
  ins_encode(simple_form3_mem_reg( dst, src ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5326
  ins_pipe(istore_mem_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5327
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5328
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5329
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5330
// Load pointer from stack slot, 64-bit encoding
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5331
instruct stkP_to_regP( iRegP dst, stackSlotP src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5332
  match(Set dst src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5333
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5334
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5335
  format %{ "LDX    $src,$dst\t!ptr" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5336
  opcode(Assembler::ldx_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  5337
  ins_encode(simple_form3_mem_reg( src, dst ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5338
  ins_pipe(iload_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5339
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5340
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5341
// Store pointer to stack slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5342
instruct regP_to_stkP(stackSlotP dst, iRegP src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5343
  match(Set dst src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5344
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5345
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5346
  format %{ "STX    $src,$dst\t!ptr" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5347
  opcode(Assembler::stx_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  5348
  ins_encode(simple_form3_mem_reg( dst, src ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5349
  ins_pipe(istore_mem_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5350
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5351
#else // _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5352
// Load pointer from stack slot, 32-bit encoding
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5353
instruct stkP_to_regP( iRegP dst, stackSlotP src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5354
  match(Set dst src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5355
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5356
  format %{ "LDUW   $src,$dst\t!ptr" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5357
  opcode(Assembler::lduw_op3, Assembler::ldst_op);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  5358
  ins_encode(simple_form3_mem_reg( src, dst ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5359
  ins_pipe(iload_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5360
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5361
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5362
// Store pointer to stack slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5363
instruct regP_to_stkP(stackSlotP dst, iRegP src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5364
  match(Set dst src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5365
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5366
  format %{ "STW    $src,$dst\t!ptr" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5367
  opcode(Assembler::stw_op3, Assembler::ldst_op);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  5368
  ins_encode(simple_form3_mem_reg( dst, src ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5369
  ins_pipe(istore_mem_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5370
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5371
#endif // _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5372
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5373
//------------Special Nop instructions for bundling - no match rules-----------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5374
// Nop using the A0 functional unit
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5375
instruct Nop_A0() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5376
  ins_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5377
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5378
  format %{ "NOP    ! Alu Pipeline" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5379
  opcode(Assembler::or_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5380
  ins_encode( form2_nop() );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5381
  ins_pipe(ialu_nop_A0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5382
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5383
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5384
// Nop using the A1 functional unit
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5385
instruct Nop_A1( ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5386
  ins_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5387
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5388
  format %{ "NOP    ! Alu Pipeline" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5389
  opcode(Assembler::or_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5390
  ins_encode( form2_nop() );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5391
  ins_pipe(ialu_nop_A1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5392
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5393
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5394
// Nop using the memory functional unit
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5395
instruct Nop_MS( ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5396
  ins_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5397
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5398
  format %{ "NOP    ! Memory Pipeline" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5399
  ins_encode( emit_mem_nop );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5400
  ins_pipe(mem_nop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5401
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5402
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5403
// Nop using the floating add functional unit
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5404
instruct Nop_FA( ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5405
  ins_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5406
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5407
  format %{ "NOP    ! Floating Add Pipeline" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5408
  ins_encode( emit_fadd_nop );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5409
  ins_pipe(fadd_nop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5410
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5411
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5412
// Nop using the branch functional unit
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5413
instruct Nop_BR( ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5414
  ins_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5415
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5416
  format %{ "NOP    ! Branch Pipeline" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5417
  ins_encode( emit_br_nop );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5418
  ins_pipe(br_nop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5419
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5420
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5421
//----------Load/Store/Move Instructions---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5422
//----------Load Instructions--------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5423
// Load Byte (8bit signed)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5424
instruct loadB(iRegI dst, memory mem) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5425
  match(Set dst (LoadB mem));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5426
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5427
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5428
  size(4);
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5429
  format %{ "LDSB   $mem,$dst\t! byte" %}
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5430
  ins_encode %{
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5431
    __ ldsb($mem$$Address, $dst$$Register);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5432
  %}
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5433
  ins_pipe(iload_mask_mem);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5434
%}
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5435
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5436
// Load Byte (8bit signed) into a Long Register
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5437
instruct loadB2L(iRegL dst, memory mem) %{
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5438
  match(Set dst (ConvI2L (LoadB mem)));
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5439
  ins_cost(MEMORY_REF_COST);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5440
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5441
  size(4);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5442
  format %{ "LDSB   $mem,$dst\t! byte -> long" %}
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5443
  ins_encode %{
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5444
    __ ldsb($mem$$Address, $dst$$Register);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5445
  %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5446
  ins_pipe(iload_mask_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5447
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5448
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5449
// Load Unsigned Byte (8bit UNsigned) into an int reg
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5450
instruct loadUB(iRegI dst, memory mem) %{
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5451
  match(Set dst (LoadUB mem));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5452
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5453
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5454
  size(4);
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5455
  format %{ "LDUB   $mem,$dst\t! ubyte" %}
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5456
  ins_encode %{
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5457
    __ ldub($mem$$Address, $dst$$Register);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5458
  %}
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5459
  ins_pipe(iload_mask_mem);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5460
%}
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5461
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5462
// Load Unsigned Byte (8bit UNsigned) into a Long Register
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5463
instruct loadUB2L(iRegL dst, memory mem) %{
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5464
  match(Set dst (ConvI2L (LoadUB mem)));
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5465
  ins_cost(MEMORY_REF_COST);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5466
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5467
  size(4);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5468
  format %{ "LDUB   $mem,$dst\t! ubyte -> long" %}
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5469
  ins_encode %{
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5470
    __ ldub($mem$$Address, $dst$$Register);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5471
  %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5472
  ins_pipe(iload_mask_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5473
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5474
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5475
// Load Short (16bit signed)
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5476
instruct loadS(iRegI dst, memory mem) %{
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5477
  match(Set dst (LoadS mem));
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5478
  ins_cost(MEMORY_REF_COST);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5479
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5480
  size(4);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5481
  format %{ "LDSH   $mem,$dst\t! short" %}
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5482
  ins_encode %{
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5483
    __ ldsh($mem$$Address, $dst$$Register);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5484
  %}
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5485
  ins_pipe(iload_mask_mem);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5486
%}
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5487
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5488
// Load Short (16bit signed) into a Long Register
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5489
instruct loadS2L(iRegL dst, memory mem) %{
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5490
  match(Set dst (ConvI2L (LoadS mem)));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5491
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5492
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5493
  size(4);
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5494
  format %{ "LDSH   $mem,$dst\t! short -> long" %}
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5495
  ins_encode %{
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5496
    __ ldsh($mem$$Address, $dst$$Register);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5497
  %}
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5498
  ins_pipe(iload_mask_mem);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5499
%}
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5500
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5501
// Load Unsigned Short/Char (16bit UNsigned)
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5502
instruct loadUS(iRegI dst, memory mem) %{
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5503
  match(Set dst (LoadUS mem));
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5504
  ins_cost(MEMORY_REF_COST);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5505
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5506
  size(4);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5507
  format %{ "LDUH   $mem,$dst\t! ushort/char" %}
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5508
  ins_encode %{
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5509
    __ lduh($mem$$Address, $dst$$Register);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5510
  %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5511
  ins_pipe(iload_mask_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5512
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5513
2022
28ce8115a91d 6796746: rename LoadC (char) opcode class to LoadUS (unsigned short)
twisti
parents: 2015
diff changeset
  5514
// Load Unsigned Short/Char (16bit UNsigned) into a Long Register
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5515
instruct loadUS2L(iRegL dst, memory mem) %{
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5516
  match(Set dst (ConvI2L (LoadUS mem)));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5517
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5518
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5519
  size(4);
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5520
  format %{ "LDUH   $mem,$dst\t! ushort/char -> long" %}
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5521
  ins_encode %{
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5522
    __ lduh($mem$$Address, $dst$$Register);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5523
  %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5524
  ins_pipe(iload_mask_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5525
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5526
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5527
// Load Integer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5528
instruct loadI(iRegI dst, memory mem) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5529
  match(Set dst (LoadI mem));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5530
  ins_cost(MEMORY_REF_COST);
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5531
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5532
  size(4);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5533
  format %{ "LDUW   $mem,$dst\t! int" %}
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5534
  ins_encode %{
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5535
    __ lduw($mem$$Address, $dst$$Register);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5536
  %}
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5537
  ins_pipe(iload_mem);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5538
%}
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5539
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5540
// Load Integer into a Long Register
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5541
instruct loadI2L(iRegL dst, memory mem) %{
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5542
  match(Set dst (ConvI2L (LoadI mem)));
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5543
  ins_cost(MEMORY_REF_COST);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5544
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5545
  size(4);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5546
  format %{ "LDSW   $mem,$dst\t! int -> long" %}
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5547
  ins_encode %{
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5548
    __ ldsw($mem$$Address, $dst$$Register);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5549
  %}
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5550
  ins_pipe(iload_mem);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5551
%}
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5552
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5553
// Load Unsigned Integer into a Long Register
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5554
instruct loadUI2L(iRegL dst, memory mem) %{
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5555
  match(Set dst (LoadUI2L mem));
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5556
  ins_cost(MEMORY_REF_COST);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5557
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5558
  size(4);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5559
  format %{ "LDUW   $mem,$dst\t! uint -> long" %}
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5560
  ins_encode %{
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5561
    __ lduw($mem$$Address, $dst$$Register);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5562
  %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5563
  ins_pipe(iload_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5564
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5565
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5566
// Load Long - aligned
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5567
instruct loadL(iRegL dst, memory mem ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5568
  match(Set dst (LoadL mem));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5569
  ins_cost(MEMORY_REF_COST);
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5570
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5571
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5572
  format %{ "LDX    $mem,$dst\t! long" %}
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5573
  ins_encode %{
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5574
    __ ldx($mem$$Address, $dst$$Register);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5575
  %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5576
  ins_pipe(iload_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5577
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5578
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5579
// Load Long - UNaligned
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5580
instruct loadL_unaligned(iRegL dst, memory mem, o7RegI tmp) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5581
  match(Set dst (LoadL_unaligned mem));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5582
  effect(KILL tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5583
  ins_cost(MEMORY_REF_COST*2+DEFAULT_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5584
  size(16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5585
  format %{ "LDUW   $mem+4,R_O7\t! misaligned long\n"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5586
          "\tLDUW   $mem  ,$dst\n"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5587
          "\tSLLX   #32, $dst, $dst\n"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5588
          "\tOR     $dst, R_O7, $dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5589
  opcode(Assembler::lduw_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  5590
  ins_encode(form3_mem_reg_long_unaligned_marshal( mem, dst ));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5591
  ins_pipe(iload_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5592
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5593
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5594
// Load Aligned Packed Byte into a Double Register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5595
instruct loadA8B(regD dst, memory mem) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5596
  match(Set dst (Load8B mem));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5597
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5598
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5599
  format %{ "LDDF   $mem,$dst\t! packed8B" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5600
  opcode(Assembler::lddf_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  5601
  ins_encode(simple_form3_mem_reg( mem, dst ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5602
  ins_pipe(floadD_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5603
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5604
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5605
// Load Aligned Packed Char into a Double Register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5606
instruct loadA4C(regD dst, memory mem) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5607
  match(Set dst (Load4C mem));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5608
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5609
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5610
  format %{ "LDDF   $mem,$dst\t! packed4C" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5611
  opcode(Assembler::lddf_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  5612
  ins_encode(simple_form3_mem_reg( mem, dst ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5613
  ins_pipe(floadD_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5614
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5615
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5616
// Load Aligned Packed Short into a Double Register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5617
instruct loadA4S(regD dst, memory mem) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5618
  match(Set dst (Load4S mem));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5619
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5620
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5621
  format %{ "LDDF   $mem,$dst\t! packed4S" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5622
  opcode(Assembler::lddf_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  5623
  ins_encode(simple_form3_mem_reg( mem, dst ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5624
  ins_pipe(floadD_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5625
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5626
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5627
// Load Aligned Packed Int into a Double Register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5628
instruct loadA2I(regD dst, memory mem) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5629
  match(Set dst (Load2I mem));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5630
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5631
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5632
  format %{ "LDDF   $mem,$dst\t! packed2I" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5633
  opcode(Assembler::lddf_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  5634
  ins_encode(simple_form3_mem_reg( mem, dst ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5635
  ins_pipe(floadD_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5636
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5637
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5638
// Load Range
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5639
instruct loadRange(iRegI dst, memory mem) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5640
  match(Set dst (LoadRange mem));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5641
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5642
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5643
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5644
  format %{ "LDUW   $mem,$dst\t! range" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5645
  opcode(Assembler::lduw_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  5646
  ins_encode(simple_form3_mem_reg( mem, dst ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5647
  ins_pipe(iload_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5648
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5649
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5650
// Load Integer into %f register (for fitos/fitod)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5651
instruct loadI_freg(regF dst, memory mem) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5652
  match(Set dst (LoadI mem));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5653
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5654
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5655
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5656
  format %{ "LDF    $mem,$dst\t! for fitos/fitod" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5657
  opcode(Assembler::ldf_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  5658
  ins_encode(simple_form3_mem_reg( mem, dst ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5659
  ins_pipe(floadF_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5660
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5661
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5662
// Load Pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5663
instruct loadP(iRegP dst, memory mem) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5664
  match(Set dst (LoadP mem));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5665
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5666
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5667
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5668
#ifndef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5669
  format %{ "LDUW   $mem,$dst\t! ptr" %}
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5670
  ins_encode %{
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5671
    __ lduw($mem$$Address, $dst$$Register);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5672
  %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5673
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5674
  format %{ "LDX    $mem,$dst\t! ptr" %}
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5675
  ins_encode %{
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5676
    __ ldx($mem$$Address, $dst$$Register);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5677
  %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5678
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5679
  ins_pipe(iload_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5680
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5681
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  5682
// Load Compressed Pointer
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  5683
instruct loadN(iRegN dst, memory mem) %{
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5684
  match(Set dst (LoadN mem));
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5685
  ins_cost(MEMORY_REF_COST);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5686
  size(4);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5687
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5688
  format %{ "LDUW   $mem,$dst\t! compressed ptr" %}
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5689
  ins_encode %{
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5690
    __ lduw($mem$$Address, $dst$$Register);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5691
  %}
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5692
  ins_pipe(iload_mem);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  5693
%}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  5694
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5695
// Load Klass Pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5696
instruct loadKlass(iRegP dst, memory mem) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5697
  match(Set dst (LoadKlass mem));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5698
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5699
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5700
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5701
#ifndef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5702
  format %{ "LDUW   $mem,$dst\t! klass ptr" %}
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5703
  ins_encode %{
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5704
    __ lduw($mem$$Address, $dst$$Register);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5705
  %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5706
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5707
  format %{ "LDX    $mem,$dst\t! klass ptr" %}
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5708
  ins_encode %{
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5709
    __ ldx($mem$$Address, $dst$$Register);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5710
  %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5711
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5712
  ins_pipe(iload_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5713
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5714
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  5715
// Load narrow Klass Pointer
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  5716
instruct loadNKlass(iRegN dst, memory mem) %{
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  5717
  match(Set dst (LoadNKlass mem));
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  5718
  ins_cost(MEMORY_REF_COST);
591
04d2e26e6d69 6703888: Compressed Oops: use the 32-bits gap after klass in a object
kvn
parents: 590
diff changeset
  5719
  size(4);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  5720
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  5721
  format %{ "LDUW   $mem,$dst\t! compressed klass ptr" %}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  5722
  ins_encode %{
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5723
    __ lduw($mem$$Address, $dst$$Register);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  5724
  %}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  5725
  ins_pipe(iload_mem);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  5726
%}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  5727
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5728
// Load Double
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5729
instruct loadD(regD dst, memory mem) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5730
  match(Set dst (LoadD mem));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5731
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5732
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5733
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5734
  format %{ "LDDF   $mem,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5735
  opcode(Assembler::lddf_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  5736
  ins_encode(simple_form3_mem_reg( mem, dst ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5737
  ins_pipe(floadD_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5738
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5739
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5740
// Load Double - UNaligned
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5741
instruct loadD_unaligned(regD_low dst, memory mem ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5742
  match(Set dst (LoadD_unaligned mem));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5743
  ins_cost(MEMORY_REF_COST*2+DEFAULT_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5744
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5745
  format %{ "LDF    $mem  ,$dst.hi\t! misaligned double\n"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5746
          "\tLDF    $mem+4,$dst.lo\t!" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5747
  opcode(Assembler::ldf_op3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5748
  ins_encode( form3_mem_reg_double_unaligned( mem, dst ));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5749
  ins_pipe(iload_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5750
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5751
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5752
// Load Float
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5753
instruct loadF(regF dst, memory mem) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5754
  match(Set dst (LoadF mem));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5755
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5756
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5757
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5758
  format %{ "LDF    $mem,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5759
  opcode(Assembler::ldf_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  5760
  ins_encode(simple_form3_mem_reg( mem, dst ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5761
  ins_pipe(floadF_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5762
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5763
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5764
// Load Constant
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5765
instruct loadConI( iRegI dst, immI src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5766
  match(Set dst src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5767
  ins_cost(DEFAULT_COST * 3/2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5768
  format %{ "SET    $src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5769
  ins_encode( Set32(src, dst) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5770
  ins_pipe(ialu_hi_lo_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5771
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5772
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5773
instruct loadConI13( iRegI dst, immI13 src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5774
  match(Set dst src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5775
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5776
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5777
  format %{ "MOV    $src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5778
  ins_encode( Set13( src, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5779
  ins_pipe(ialu_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5780
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5781
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5782
instruct loadConP(iRegP dst, immP src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5783
  match(Set dst src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5784
  ins_cost(DEFAULT_COST * 3/2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5785
  format %{ "SET    $src,$dst\t!ptr" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5786
  // This rule does not use "expand" unlike loadConI because then
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5787
  // the result type is not known to be an Oop.  An ADLC
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5788
  // enhancement will be needed to make that work - not worth it!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5789
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5790
  ins_encode( SetPtr( src, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5791
  ins_pipe(loadConP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5792
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5793
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5794
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5795
instruct loadConP0(iRegP dst, immP0 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5796
  match(Set dst src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5797
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5798
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5799
  format %{ "CLR    $dst\t!ptr" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5800
  ins_encode( SetNull( dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5801
  ins_pipe(ialu_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5802
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5803
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5804
instruct loadConP_poll(iRegP dst, immP_poll src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5805
  match(Set dst src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5806
  ins_cost(DEFAULT_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5807
  format %{ "SET    $src,$dst\t!ptr" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5808
  ins_encode %{
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5809
    AddressLiteral polling_page(os::get_polling_page());
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5810
    __ sethi(polling_page, reg_to_register_object($dst$$reg));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5811
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5812
  ins_pipe(loadConP_poll);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5813
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5814
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  5815
instruct loadConN0(iRegN dst, immN0 src) %{
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  5816
  match(Set dst src);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  5817
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  5818
  size(4);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  5819
  format %{ "CLR    $dst\t! compressed NULL ptr" %}
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  5820
  ins_encode( SetNull( dst ) );
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  5821
  ins_pipe(ialu_imm);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  5822
%}
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  5823
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  5824
instruct loadConN(iRegN dst, immN src) %{
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  5825
  match(Set dst src);
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  5826
  ins_cost(DEFAULT_COST * 3/2);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  5827
  format %{ "SET    $src,$dst\t! compressed ptr" %}
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  5828
  ins_encode %{
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  5829
    Register dst = $dst$$Register;
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  5830
    __ set_narrow_oop((jobject)$src$$constant, dst);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  5831
  %}
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  5832
  ins_pipe(ialu_hi_lo_reg);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  5833
%}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  5834
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5835
instruct loadConL(iRegL dst, immL src, o7RegL tmp) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5836
  // %%% maybe this should work like loadConD
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5837
  match(Set dst src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5838
  effect(KILL tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5839
  ins_cost(DEFAULT_COST * 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5840
  format %{ "SET64   $src,$dst KILL $tmp\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5841
  ins_encode( LdImmL(src, dst, tmp) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5842
  ins_pipe(loadConL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5843
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5844
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5845
instruct loadConL0( iRegL dst, immL0 src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5846
  match(Set dst src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5847
  ins_cost(DEFAULT_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5848
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5849
  format %{ "CLR    $dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5850
  ins_encode( Set13( src, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5851
  ins_pipe(ialu_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5852
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5853
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5854
instruct loadConL13( iRegL dst, immL13 src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5855
  match(Set dst src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5856
  ins_cost(DEFAULT_COST * 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5857
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5858
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5859
  format %{ "MOV    $src,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5860
  ins_encode( Set13( src, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5861
  ins_pipe(ialu_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5862
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5863
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5864
instruct loadConF(regF dst, immF src, o7RegP tmp) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5865
  match(Set dst src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5866
  effect(KILL tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5867
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5868
#ifdef _LP64
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5869
  size(8*4);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5870
#else
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5871
  size(2*4);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5872
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5873
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5874
  format %{ "SETHI  hi(&$src),$tmp\t!get float $src from table\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5875
            "LDF    [$tmp+lo(&$src)],$dst" %}
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5876
  ins_encode %{
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5877
    address float_address = __ float_constant($src$$constant);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5878
    RelocationHolder rspec = internal_word_Relocation::spec(float_address);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5879
    AddressLiteral addrlit(float_address, rspec);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5880
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5881
    __ sethi(addrlit, $tmp$$Register);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5882
    __ ldf(FloatRegisterImpl::S, $tmp$$Register, addrlit.low10(), $dst$$FloatRegister, rspec);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5883
  %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5884
  ins_pipe(loadConFD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5885
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5886
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5887
instruct loadConD(regD dst, immD src, o7RegP tmp) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5888
  match(Set dst src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5889
  effect(KILL tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5890
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5891
#ifdef _LP64
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5892
  size(8*4);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5893
#else
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5894
  size(2*4);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5895
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5896
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5897
  format %{ "SETHI  hi(&$src),$tmp\t!get double $src from table\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5898
            "LDDF   [$tmp+lo(&$src)],$dst" %}
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5899
  ins_encode %{
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5900
    address double_address = __ double_constant($src$$constant);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5901
    RelocationHolder rspec = internal_word_Relocation::spec(double_address);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5902
    AddressLiteral addrlit(double_address, rspec);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5903
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5904
    __ sethi(addrlit, $tmp$$Register);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5905
    __ ldf(FloatRegisterImpl::D, $tmp$$Register, addrlit.low10(), $dst$$FloatRegister, rspec);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5906
  %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5907
  ins_pipe(loadConFD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5908
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5909
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5910
// Prefetch instructions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5911
// Must be safe to execute with invalid address (cannot fault).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5912
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5913
instruct prefetchr( memory mem ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5914
  match( PrefetchRead mem );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5915
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5916
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5917
  format %{ "PREFETCH $mem,0\t! Prefetch read-many" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5918
  opcode(Assembler::prefetch_op3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5919
  ins_encode( form3_mem_prefetch_read( mem ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5920
  ins_pipe(iload_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5921
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5922
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5923
instruct prefetchw( memory mem ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5924
  match( PrefetchWrite mem );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5925
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5926
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5927
  format %{ "PREFETCH $mem,2\t! Prefetch write-many (and read)" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5928
  opcode(Assembler::prefetch_op3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5929
  ins_encode( form3_mem_prefetch_write( mem ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5930
  ins_pipe(iload_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5931
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5932
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5933
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5934
//----------Store Instructions-------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5935
// Store Byte
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5936
instruct storeB(memory mem, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5937
  match(Set mem (StoreB mem src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5938
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5939
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5940
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5941
  format %{ "STB    $src,$mem\t! byte" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5942
  opcode(Assembler::stb_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  5943
  ins_encode(simple_form3_mem_reg( mem, src ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5944
  ins_pipe(istore_mem_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5945
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5946
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5947
instruct storeB0(memory mem, immI0 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5948
  match(Set mem (StoreB mem src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5949
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5950
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5951
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5952
  format %{ "STB    $src,$mem\t! byte" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5953
  opcode(Assembler::stb_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  5954
  ins_encode(simple_form3_mem_reg( mem, R_G0 ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5955
  ins_pipe(istore_mem_zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5956
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5957
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5958
instruct storeCM0(memory mem, immI0 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5959
  match(Set mem (StoreCM mem src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5960
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5961
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5962
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5963
  format %{ "STB    $src,$mem\t! CMS card-mark byte 0" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5964
  opcode(Assembler::stb_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  5965
  ins_encode(simple_form3_mem_reg( mem, R_G0 ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5966
  ins_pipe(istore_mem_zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5967
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5968
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5969
// Store Char/Short
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5970
instruct storeC(memory mem, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5971
  match(Set mem (StoreC mem src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5972
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5973
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5974
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5975
  format %{ "STH    $src,$mem\t! short" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5976
  opcode(Assembler::sth_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  5977
  ins_encode(simple_form3_mem_reg( mem, src ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5978
  ins_pipe(istore_mem_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5979
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5980
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5981
instruct storeC0(memory mem, immI0 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5982
  match(Set mem (StoreC mem src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5983
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5984
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5985
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5986
  format %{ "STH    $src,$mem\t! short" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5987
  opcode(Assembler::sth_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  5988
  ins_encode(simple_form3_mem_reg( mem, R_G0 ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5989
  ins_pipe(istore_mem_zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5990
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5991
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5992
// Store Integer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5993
instruct storeI(memory mem, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5994
  match(Set mem (StoreI mem src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5995
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5996
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5997
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5998
  format %{ "STW    $src,$mem" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5999
  opcode(Assembler::stw_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  6000
  ins_encode(simple_form3_mem_reg( mem, src ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6001
  ins_pipe(istore_mem_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6002
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6003
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6004
// Store Long
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6005
instruct storeL(memory mem, iRegL src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6006
  match(Set mem (StoreL mem src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6007
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6008
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6009
  format %{ "STX    $src,$mem\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6010
  opcode(Assembler::stx_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  6011
  ins_encode(simple_form3_mem_reg( mem, src ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6012
  ins_pipe(istore_mem_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6013
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6014
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6015
instruct storeI0(memory mem, immI0 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6016
  match(Set mem (StoreI mem src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6017
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6018
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6019
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6020
  format %{ "STW    $src,$mem" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6021
  opcode(Assembler::stw_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  6022
  ins_encode(simple_form3_mem_reg( mem, R_G0 ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6023
  ins_pipe(istore_mem_zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6024
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6025
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6026
instruct storeL0(memory mem, immL0 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6027
  match(Set mem (StoreL mem src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6028
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6029
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6030
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6031
  format %{ "STX    $src,$mem" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6032
  opcode(Assembler::stx_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  6033
  ins_encode(simple_form3_mem_reg( mem, R_G0 ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6034
  ins_pipe(istore_mem_zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6035
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6036
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6037
// Store Integer from float register (used after fstoi)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6038
instruct storeI_Freg(memory mem, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6039
  match(Set mem (StoreI mem src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6040
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6041
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6042
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6043
  format %{ "STF    $src,$mem\t! after fstoi/fdtoi" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6044
  opcode(Assembler::stf_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  6045
  ins_encode(simple_form3_mem_reg( mem, src ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6046
  ins_pipe(fstoreF_mem_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6047
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6048
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6049
// Store Pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6050
instruct storeP(memory dst, sp_ptr_RegP src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6051
  match(Set dst (StoreP dst src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6052
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6053
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6054
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6055
#ifndef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6056
  format %{ "STW    $src,$dst\t! ptr" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6057
  opcode(Assembler::stw_op3, 0, REGP_OP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6058
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6059
  format %{ "STX    $src,$dst\t! ptr" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6060
  opcode(Assembler::stx_op3, 0, REGP_OP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6061
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6062
  ins_encode( form3_mem_reg( dst, src ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6063
  ins_pipe(istore_mem_spORreg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6064
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6065
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6066
instruct storeP0(memory dst, immP0 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6067
  match(Set dst (StoreP dst src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6068
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6069
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6070
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6071
#ifndef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6072
  format %{ "STW    $src,$dst\t! ptr" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6073
  opcode(Assembler::stw_op3, 0, REGP_OP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6074
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6075
  format %{ "STX    $src,$dst\t! ptr" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6076
  opcode(Assembler::stx_op3, 0, REGP_OP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6077
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6078
  ins_encode( form3_mem_reg( dst, R_G0 ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6079
  ins_pipe(istore_mem_zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6080
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6081
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6082
// Store Compressed Pointer
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6083
instruct storeN(memory dst, iRegN src) %{
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6084
   match(Set dst (StoreN dst src));
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6085
   ins_cost(MEMORY_REF_COST);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6086
   size(4);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6087
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6088
   format %{ "STW    $src,$dst\t! compressed ptr" %}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6089
   ins_encode %{
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6090
     Register base = as_Register($dst$$base);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6091
     Register index = as_Register($dst$$index);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6092
     Register src = $src$$Register;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6093
     if (index != G0) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6094
       __ stw(src, base, index);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6095
     } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6096
       __ stw(src, base, $dst$$disp);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6097
     }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6098
   %}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6099
   ins_pipe(istore_mem_spORreg);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6100
%}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6101
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6102
instruct storeN0(memory dst, immN0 src) %{
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6103
   match(Set dst (StoreN dst src));
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6104
   ins_cost(MEMORY_REF_COST);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6105
   size(4);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6106
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6107
   format %{ "STW    $src,$dst\t! compressed ptr" %}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6108
   ins_encode %{
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6109
     Register base = as_Register($dst$$base);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6110
     Register index = as_Register($dst$$index);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6111
     if (index != G0) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6112
       __ stw(0, base, index);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6113
     } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6114
       __ stw(0, base, $dst$$disp);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6115
     }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6116
   %}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6117
   ins_pipe(istore_mem_zero);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6118
%}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6119
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6120
// Store Double
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6121
instruct storeD( memory mem, regD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6122
  match(Set mem (StoreD mem src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6123
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6124
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6125
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6126
  format %{ "STDF   $src,$mem" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6127
  opcode(Assembler::stdf_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  6128
  ins_encode(simple_form3_mem_reg( mem, src ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6129
  ins_pipe(fstoreD_mem_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6130
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6131
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6132
instruct storeD0( memory mem, immD0 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6133
  match(Set mem (StoreD mem src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6134
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6135
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6136
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6137
  format %{ "STX    $src,$mem" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6138
  opcode(Assembler::stx_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  6139
  ins_encode(simple_form3_mem_reg( mem, R_G0 ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6140
  ins_pipe(fstoreD_mem_zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6141
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6142
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6143
// Store Float
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6144
instruct storeF( memory mem, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6145
  match(Set mem (StoreF mem src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6146
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6147
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6148
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6149
  format %{ "STF    $src,$mem" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6150
  opcode(Assembler::stf_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  6151
  ins_encode(simple_form3_mem_reg( mem, src ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6152
  ins_pipe(fstoreF_mem_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6153
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6154
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6155
instruct storeF0( memory mem, immF0 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6156
  match(Set mem (StoreF mem src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6157
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6158
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6159
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6160
  format %{ "STW    $src,$mem\t! storeF0" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6161
  opcode(Assembler::stw_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  6162
  ins_encode(simple_form3_mem_reg( mem, R_G0 ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6163
  ins_pipe(fstoreF_mem_zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6164
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6165
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6166
// Store Aligned Packed Bytes in Double register to memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6167
instruct storeA8B(memory mem, regD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6168
  match(Set mem (Store8B mem src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6169
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6170
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6171
  format %{ "STDF   $src,$mem\t! packed8B" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6172
  opcode(Assembler::stdf_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  6173
  ins_encode(simple_form3_mem_reg( mem, src ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6174
  ins_pipe(fstoreD_mem_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6175
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6176
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6177
// Convert oop pointer into compressed form
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6178
instruct encodeHeapOop(iRegN dst, iRegP src) %{
767
64fb1fd7186d 6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents: 608
diff changeset
  6179
  predicate(n->bottom_type()->make_ptr()->ptr() != TypePtr::NotNull);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6180
  match(Set dst (EncodeP src));
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6181
  format %{ "encode_heap_oop $src, $dst" %}
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6182
  ins_encode %{
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6183
    __ encode_heap_oop($src$$Register, $dst$$Register);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6184
  %}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6185
  ins_pipe(ialu_reg);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6186
%}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6187
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6188
instruct encodeHeapOop_not_null(iRegN dst, iRegP src) %{
767
64fb1fd7186d 6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents: 608
diff changeset
  6189
  predicate(n->bottom_type()->make_ptr()->ptr() == TypePtr::NotNull);
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6190
  match(Set dst (EncodeP src));
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6191
  format %{ "encode_heap_oop_not_null $src, $dst" %}
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6192
  ins_encode %{
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6193
    __ encode_heap_oop_not_null($src$$Register, $dst$$Register);
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6194
  %}
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6195
  ins_pipe(ialu_reg);
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6196
%}
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6197
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6198
instruct decodeHeapOop(iRegP dst, iRegN src) %{
608
fe8c5fbbc54e 6709093: Compressed Oops: reduce size of compiled methods
kvn
parents: 607
diff changeset
  6199
  predicate(n->bottom_type()->is_oopptr()->ptr() != TypePtr::NotNull &&
fe8c5fbbc54e 6709093: Compressed Oops: reduce size of compiled methods
kvn
parents: 607
diff changeset
  6200
            n->bottom_type()->is_oopptr()->ptr() != TypePtr::Constant);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6201
  match(Set dst (DecodeN src));
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6202
  format %{ "decode_heap_oop $src, $dst" %}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6203
  ins_encode %{
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6204
    __ decode_heap_oop($src$$Register, $dst$$Register);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6205
  %}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6206
  ins_pipe(ialu_reg);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6207
%}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6208
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6209
instruct decodeHeapOop_not_null(iRegP dst, iRegN src) %{
608
fe8c5fbbc54e 6709093: Compressed Oops: reduce size of compiled methods
kvn
parents: 607
diff changeset
  6210
  predicate(n->bottom_type()->is_oopptr()->ptr() == TypePtr::NotNull ||
fe8c5fbbc54e 6709093: Compressed Oops: reduce size of compiled methods
kvn
parents: 607
diff changeset
  6211
            n->bottom_type()->is_oopptr()->ptr() == TypePtr::Constant);
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6212
  match(Set dst (DecodeN src));
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6213
  format %{ "decode_heap_oop_not_null $src, $dst" %}
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6214
  ins_encode %{
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6215
    __ decode_heap_oop_not_null($src$$Register, $dst$$Register);
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6216
  %}
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6217
  ins_pipe(ialu_reg);
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6218
%}
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6219
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6220
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6221
// Store Zero into Aligned Packed Bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6222
instruct storeA8B0(memory mem, immI0 zero) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6223
  match(Set mem (Store8B mem zero));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6224
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6225
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6226
  format %{ "STX    $zero,$mem\t! packed8B" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6227
  opcode(Assembler::stx_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  6228
  ins_encode(simple_form3_mem_reg( mem, R_G0 ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6229
  ins_pipe(fstoreD_mem_zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6230
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6231
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6232
// Store Aligned Packed Chars/Shorts in Double register to memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6233
instruct storeA4C(memory mem, regD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6234
  match(Set mem (Store4C mem src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6235
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6236
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6237
  format %{ "STDF   $src,$mem\t! packed4C" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6238
  opcode(Assembler::stdf_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  6239
  ins_encode(simple_form3_mem_reg( mem, src ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6240
  ins_pipe(fstoreD_mem_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6241
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6242
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6243
// Store Zero into Aligned Packed Chars/Shorts
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6244
instruct storeA4C0(memory mem, immI0 zero) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6245
  match(Set mem (Store4C mem (Replicate4C zero)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6246
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6247
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6248
  format %{ "STX    $zero,$mem\t! packed4C" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6249
  opcode(Assembler::stx_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  6250
  ins_encode(simple_form3_mem_reg( mem, R_G0 ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6251
  ins_pipe(fstoreD_mem_zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6252
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6253
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6254
// Store Aligned Packed Ints in Double register to memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6255
instruct storeA2I(memory mem, regD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6256
  match(Set mem (Store2I mem src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6257
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6258
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6259
  format %{ "STDF   $src,$mem\t! packed2I" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6260
  opcode(Assembler::stdf_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  6261
  ins_encode(simple_form3_mem_reg( mem, src ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6262
  ins_pipe(fstoreD_mem_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6263
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6264
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6265
// Store Zero into Aligned Packed Ints
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6266
instruct storeA2I0(memory mem, immI0 zero) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6267
  match(Set mem (Store2I mem zero));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6268
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6269
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6270
  format %{ "STX    $zero,$mem\t! packed2I" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6271
  opcode(Assembler::stx_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  6272
  ins_encode(simple_form3_mem_reg( mem, R_G0 ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6273
  ins_pipe(fstoreD_mem_zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6274
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6275
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6276
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6277
//----------MemBar Instructions-----------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6278
// Memory barrier flavors
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6279
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6280
instruct membar_acquire() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6281
  match(MemBarAcquire);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6282
  ins_cost(4*MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6283
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6284
  size(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6285
  format %{ "MEMBAR-acquire" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6286
  ins_encode( enc_membar_acquire );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6287
  ins_pipe(long_memory_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6288
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6289
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6290
instruct membar_acquire_lock() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6291
  match(MemBarAcquire);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6292
  predicate(Matcher::prior_fast_lock(n));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6293
  ins_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6294
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6295
  size(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6296
  format %{ "!MEMBAR-acquire (CAS in prior FastLock so empty encoding)" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6297
  ins_encode( );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6298
  ins_pipe(empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6299
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6300
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6301
instruct membar_release() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6302
  match(MemBarRelease);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6303
  ins_cost(4*MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6304
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6305
  size(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6306
  format %{ "MEMBAR-release" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6307
  ins_encode( enc_membar_release );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6308
  ins_pipe(long_memory_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6309
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6310
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6311
instruct membar_release_lock() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6312
  match(MemBarRelease);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6313
  predicate(Matcher::post_fast_unlock(n));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6314
  ins_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6315
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6316
  size(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6317
  format %{ "!MEMBAR-release (CAS in succeeding FastUnlock so empty encoding)" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6318
  ins_encode( );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6319
  ins_pipe(empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6320
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6321
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6322
instruct membar_volatile() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6323
  match(MemBarVolatile);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6324
  ins_cost(4*MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6325
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6326
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6327
  format %{ "MEMBAR-volatile" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6328
  ins_encode( enc_membar_volatile );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6329
  ins_pipe(long_memory_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6330
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6331
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6332
instruct unnecessary_membar_volatile() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6333
  match(MemBarVolatile);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6334
  predicate(Matcher::post_store_load_barrier(n));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6335
  ins_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6336
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6337
  size(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6338
  format %{ "!MEMBAR-volatile (unnecessary so empty encoding)" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6339
  ins_encode( );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6340
  ins_pipe(empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6341
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6342
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6343
//----------Register Move Instructions-----------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6344
instruct roundDouble_nop(regD dst) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6345
  match(Set dst (RoundDouble dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6346
  ins_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6347
  // SPARC results are already "rounded" (i.e., normal-format IEEE)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6348
  ins_encode( );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6349
  ins_pipe(empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6350
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6351
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6352
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6353
instruct roundFloat_nop(regF dst) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6354
  match(Set dst (RoundFloat dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6355
  ins_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6356
  // SPARC results are already "rounded" (i.e., normal-format IEEE)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6357
  ins_encode( );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6358
  ins_pipe(empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6359
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6360
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6361
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6362
// Cast Index to Pointer for unsafe natives
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6363
instruct castX2P(iRegX src, iRegP dst) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6364
  match(Set dst (CastX2P src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6365
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6366
  format %{ "MOV    $src,$dst\t! IntX->Ptr" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6367
  ins_encode( form3_g0_rs2_rd_move( src, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6368
  ins_pipe(ialu_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6369
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6370
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6371
// Cast Pointer to Index for unsafe natives
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6372
instruct castP2X(iRegP src, iRegX dst) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6373
  match(Set dst (CastP2X src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6374
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6375
  format %{ "MOV    $src,$dst\t! Ptr->IntX" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6376
  ins_encode( form3_g0_rs2_rd_move( src, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6377
  ins_pipe(ialu_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6378
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6379
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6380
instruct stfSSD(stackSlotD stkSlot, regD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6381
  // %%%% TO DO: Tell the coalescer that this kind of node is a copy!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6382
  match(Set stkSlot src);   // chain rule
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6383
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6384
  format %{ "STDF   $src,$stkSlot\t!stk" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6385
  opcode(Assembler::stdf_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  6386
  ins_encode(simple_form3_mem_reg(stkSlot, src));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6387
  ins_pipe(fstoreD_stk_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6388
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6389
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6390
instruct ldfSSD(regD dst, stackSlotD stkSlot) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6391
  // %%%% TO DO: Tell the coalescer that this kind of node is a copy!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6392
  match(Set dst stkSlot);   // chain rule
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6393
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6394
  format %{ "LDDF   $stkSlot,$dst\t!stk" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6395
  opcode(Assembler::lddf_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  6396
  ins_encode(simple_form3_mem_reg(stkSlot, dst));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6397
  ins_pipe(floadD_stk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6398
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6399
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6400
instruct stfSSF(stackSlotF stkSlot, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6401
  // %%%% TO DO: Tell the coalescer that this kind of node is a copy!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6402
  match(Set stkSlot src);   // chain rule
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6403
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6404
  format %{ "STF   $src,$stkSlot\t!stk" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6405
  opcode(Assembler::stf_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  6406
  ins_encode(simple_form3_mem_reg(stkSlot, src));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6407
  ins_pipe(fstoreF_stk_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6408
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6409
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6410
//----------Conditional Move---------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6411
// Conditional move
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6412
instruct cmovIP_reg(cmpOpP cmp, flagsRegP pcc, iRegI dst, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6413
  match(Set dst (CMoveI (Binary cmp pcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6414
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6415
  format %{ "MOV$cmp $pcc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6416
  ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::ptr_cc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6417
  ins_pipe(ialu_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6418
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6419
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6420
instruct cmovIP_imm(cmpOpP cmp, flagsRegP pcc, iRegI dst, immI11 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6421
  match(Set dst (CMoveI (Binary cmp pcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6422
  ins_cost(140);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6423
  format %{ "MOV$cmp $pcc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6424
  ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::ptr_cc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6425
  ins_pipe(ialu_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6426
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6427
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6428
instruct cmovII_reg(cmpOp cmp, flagsReg icc, iRegI dst, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6429
  match(Set dst (CMoveI (Binary cmp icc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6430
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6431
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6432
  format %{ "MOV$cmp  $icc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6433
  ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::icc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6434
  ins_pipe(ialu_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6435
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6436
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6437
instruct cmovII_imm(cmpOp cmp, flagsReg icc, iRegI dst, immI11 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6438
  match(Set dst (CMoveI (Binary cmp icc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6439
  ins_cost(140);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6440
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6441
  format %{ "MOV$cmp  $icc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6442
  ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::icc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6443
  ins_pipe(ialu_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6444
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6445
254
717d75d80a30 6636352: Unit tests for supplementary character support fail with -XX:+AggressiveOpts
never
parents: 1
diff changeset
  6446
instruct cmovII_U_reg(cmpOpU cmp, flagsRegU icc, iRegI dst, iRegI src) %{
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6447
  match(Set dst (CMoveI (Binary cmp icc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6448
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6449
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6450
  format %{ "MOV$cmp  $icc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6451
  ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::icc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6452
  ins_pipe(ialu_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6453
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6454
254
717d75d80a30 6636352: Unit tests for supplementary character support fail with -XX:+AggressiveOpts
never
parents: 1
diff changeset
  6455
instruct cmovII_U_imm(cmpOpU cmp, flagsRegU icc, iRegI dst, immI11 src) %{
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6456
  match(Set dst (CMoveI (Binary cmp icc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6457
  ins_cost(140);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6458
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6459
  format %{ "MOV$cmp  $icc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6460
  ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::icc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6461
  ins_pipe(ialu_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6462
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6463
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6464
instruct cmovIF_reg(cmpOpF cmp, flagsRegF fcc, iRegI dst, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6465
  match(Set dst (CMoveI (Binary cmp fcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6466
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6467
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6468
  format %{ "MOV$cmp $fcc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6469
  ins_encode( enc_cmov_reg_f(cmp,dst,src, fcc) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6470
  ins_pipe(ialu_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6471
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6472
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6473
instruct cmovIF_imm(cmpOpF cmp, flagsRegF fcc, iRegI dst, immI11 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6474
  match(Set dst (CMoveI (Binary cmp fcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6475
  ins_cost(140);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6476
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6477
  format %{ "MOV$cmp $fcc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6478
  ins_encode( enc_cmov_imm_f(cmp,dst,src, fcc) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6479
  ins_pipe(ialu_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6480
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6481
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6482
// Conditional move for RegN. Only cmov(reg,reg).
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6483
instruct cmovNP_reg(cmpOpP cmp, flagsRegP pcc, iRegN dst, iRegN src) %{
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6484
  match(Set dst (CMoveN (Binary cmp pcc) (Binary dst src)));
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6485
  ins_cost(150);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6486
  format %{ "MOV$cmp $pcc,$src,$dst" %}
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6487
  ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::ptr_cc)) );
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6488
  ins_pipe(ialu_reg);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6489
%}
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6490
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6491
// This instruction also works with CmpN so we don't need cmovNN_reg.
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6492
instruct cmovNI_reg(cmpOp cmp, flagsReg icc, iRegN dst, iRegN src) %{
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6493
  match(Set dst (CMoveN (Binary cmp icc) (Binary dst src)));
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6494
  ins_cost(150);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6495
  size(4);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6496
  format %{ "MOV$cmp  $icc,$src,$dst" %}
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6497
  ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::icc)) );
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6498
  ins_pipe(ialu_reg);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6499
%}
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6500
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6501
instruct cmovNF_reg(cmpOpF cmp, flagsRegF fcc, iRegN dst, iRegN src) %{
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6502
  match(Set dst (CMoveN (Binary cmp fcc) (Binary dst src)));
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6503
  ins_cost(150);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6504
  size(4);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6505
  format %{ "MOV$cmp $fcc,$src,$dst" %}
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6506
  ins_encode( enc_cmov_reg_f(cmp,dst,src, fcc) );
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6507
  ins_pipe(ialu_reg);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6508
%}
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6509
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6510
// Conditional move
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6511
instruct cmovPP_reg(cmpOpP cmp, flagsRegP pcc, iRegP dst, iRegP src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6512
  match(Set dst (CMoveP (Binary cmp pcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6513
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6514
  format %{ "MOV$cmp $pcc,$src,$dst\t! ptr" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6515
  ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::ptr_cc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6516
  ins_pipe(ialu_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6517
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6518
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6519
instruct cmovPP_imm(cmpOpP cmp, flagsRegP pcc, iRegP dst, immP0 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6520
  match(Set dst (CMoveP (Binary cmp pcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6521
  ins_cost(140);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6522
  format %{ "MOV$cmp $pcc,$src,$dst\t! ptr" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6523
  ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::ptr_cc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6524
  ins_pipe(ialu_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6525
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6526
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6527
// This instruction also works with CmpN so we don't need cmovPN_reg.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6528
instruct cmovPI_reg(cmpOp cmp, flagsReg icc, iRegP dst, iRegP src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6529
  match(Set dst (CMoveP (Binary cmp icc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6530
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6531
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6532
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6533
  format %{ "MOV$cmp  $icc,$src,$dst\t! ptr" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6534
  ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::icc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6535
  ins_pipe(ialu_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6536
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6537
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6538
instruct cmovPI_imm(cmpOp cmp, flagsReg icc, iRegP dst, immP0 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6539
  match(Set dst (CMoveP (Binary cmp icc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6540
  ins_cost(140);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6541
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6542
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6543
  format %{ "MOV$cmp  $icc,$src,$dst\t! ptr" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6544
  ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::icc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6545
  ins_pipe(ialu_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6546
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6547
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6548
instruct cmovPF_reg(cmpOpF cmp, flagsRegF fcc, iRegP dst, iRegP src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6549
  match(Set dst (CMoveP (Binary cmp fcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6550
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6551
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6552
  format %{ "MOV$cmp $fcc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6553
  ins_encode( enc_cmov_reg_f(cmp,dst,src, fcc) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6554
  ins_pipe(ialu_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6555
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6556
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6557
instruct cmovPF_imm(cmpOpF cmp, flagsRegF fcc, iRegP dst, immP0 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6558
  match(Set dst (CMoveP (Binary cmp fcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6559
  ins_cost(140);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6560
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6561
  format %{ "MOV$cmp $fcc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6562
  ins_encode( enc_cmov_imm_f(cmp,dst,src, fcc) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6563
  ins_pipe(ialu_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6564
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6565
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6566
// Conditional move
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6567
instruct cmovFP_reg(cmpOpP cmp, flagsRegP pcc, regF dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6568
  match(Set dst (CMoveF (Binary cmp pcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6569
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6570
  opcode(0x101);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6571
  format %{ "FMOVD$cmp $pcc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6572
  ins_encode( enc_cmovf_reg(cmp,dst,src, (Assembler::ptr_cc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6573
  ins_pipe(int_conditional_float_move);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6574
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6575
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6576
instruct cmovFI_reg(cmpOp cmp, flagsReg icc, regF dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6577
  match(Set dst (CMoveF (Binary cmp icc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6578
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6579
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6580
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6581
  format %{ "FMOVS$cmp $icc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6582
  opcode(0x101);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6583
  ins_encode( enc_cmovf_reg(cmp,dst,src, (Assembler::icc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6584
  ins_pipe(int_conditional_float_move);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6585
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6586
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6587
// Conditional move,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6588
instruct cmovFF_reg(cmpOpF cmp, flagsRegF fcc, regF dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6589
  match(Set dst (CMoveF (Binary cmp fcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6590
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6591
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6592
  format %{ "FMOVF$cmp $fcc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6593
  opcode(0x1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6594
  ins_encode( enc_cmovff_reg(cmp,fcc,dst,src) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6595
  ins_pipe(int_conditional_double_move);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6596
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6597
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6598
// Conditional move
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6599
instruct cmovDP_reg(cmpOpP cmp, flagsRegP pcc, regD dst, regD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6600
  match(Set dst (CMoveD (Binary cmp pcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6601
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6602
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6603
  opcode(0x102);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6604
  format %{ "FMOVD$cmp $pcc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6605
  ins_encode( enc_cmovf_reg(cmp,dst,src, (Assembler::ptr_cc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6606
  ins_pipe(int_conditional_double_move);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6607
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6608
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6609
instruct cmovDI_reg(cmpOp cmp, flagsReg icc, regD dst, regD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6610
  match(Set dst (CMoveD (Binary cmp icc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6611
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6612
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6613
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6614
  format %{ "FMOVD$cmp $icc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6615
  opcode(0x102);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6616
  ins_encode( enc_cmovf_reg(cmp,dst,src, (Assembler::icc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6617
  ins_pipe(int_conditional_double_move);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6618
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6619
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6620
// Conditional move,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6621
instruct cmovDF_reg(cmpOpF cmp, flagsRegF fcc, regD dst, regD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6622
  match(Set dst (CMoveD (Binary cmp fcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6623
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6624
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6625
  format %{ "FMOVD$cmp $fcc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6626
  opcode(0x2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6627
  ins_encode( enc_cmovff_reg(cmp,fcc,dst,src) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6628
  ins_pipe(int_conditional_double_move);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6629
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6630
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6631
// Conditional move
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6632
instruct cmovLP_reg(cmpOpP cmp, flagsRegP pcc, iRegL dst, iRegL src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6633
  match(Set dst (CMoveL (Binary cmp pcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6634
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6635
  format %{ "MOV$cmp $pcc,$src,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6636
  ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::ptr_cc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6637
  ins_pipe(ialu_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6638
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6639
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6640
instruct cmovLP_imm(cmpOpP cmp, flagsRegP pcc, iRegL dst, immI11 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6641
  match(Set dst (CMoveL (Binary cmp pcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6642
  ins_cost(140);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6643
  format %{ "MOV$cmp $pcc,$src,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6644
  ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::ptr_cc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6645
  ins_pipe(ialu_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6646
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6647
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6648
instruct cmovLI_reg(cmpOp cmp, flagsReg icc, iRegL dst, iRegL src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6649
  match(Set dst (CMoveL (Binary cmp icc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6650
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6651
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6652
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6653
  format %{ "MOV$cmp  $icc,$src,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6654
  ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::icc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6655
  ins_pipe(ialu_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6656
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6657
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6658
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6659
instruct cmovLF_reg(cmpOpF cmp, flagsRegF fcc, iRegL dst, iRegL src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6660
  match(Set dst (CMoveL (Binary cmp fcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6661
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6662
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6663
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6664
  format %{ "MOV$cmp  $fcc,$src,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6665
  ins_encode( enc_cmov_reg_f(cmp,dst,src, fcc) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6666
  ins_pipe(ialu_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6667
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6668
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6669
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6670
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6671
//----------OS and Locking Instructions----------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6672
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6673
// This name is KNOWN by the ADLC and cannot be changed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6674
// The ADLC forces a 'TypeRawPtr::BOTTOM' output type
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6675
// for this guy.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6676
instruct tlsLoadP(g2RegP dst) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6677
  match(Set dst (ThreadLocal));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6678
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6679
  size(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6680
  ins_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6681
  format %{ "# TLS is in G2" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6682
  ins_encode( /*empty encoding*/ );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6683
  ins_pipe(ialu_none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6684
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6685
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6686
instruct checkCastPP( iRegP dst ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6687
  match(Set dst (CheckCastPP dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6688
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6689
  size(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6690
  format %{ "# checkcastPP of $dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6691
  ins_encode( /*empty encoding*/ );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6692
  ins_pipe(empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6693
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6694
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6695
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6696
instruct castPP( iRegP dst ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6697
  match(Set dst (CastPP dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6698
  format %{ "# castPP of $dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6699
  ins_encode( /*empty encoding*/ );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6700
  ins_pipe(empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6701
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6702
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6703
instruct castII( iRegI dst ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6704
  match(Set dst (CastII dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6705
  format %{ "# castII of $dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6706
  ins_encode( /*empty encoding*/ );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6707
  ins_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6708
  ins_pipe(empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6709
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6710
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6711
//----------Arithmetic Instructions--------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6712
// Addition Instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6713
// Register Addition
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6714
instruct addI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6715
  match(Set dst (AddI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6716
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6717
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6718
  format %{ "ADD    $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6719
  ins_encode %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6720
    __ add($src1$$Register, $src2$$Register, $dst$$Register);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6721
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6722
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6723
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6724
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6725
// Immediate Addition
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6726
instruct addI_reg_imm13(iRegI dst, iRegI src1, immI13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6727
  match(Set dst (AddI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6728
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6729
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6730
  format %{ "ADD    $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6731
  opcode(Assembler::add_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6732
  ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6733
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6734
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6735
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6736
// Pointer Register Addition
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6737
instruct addP_reg_reg(iRegP dst, iRegP src1, iRegX src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6738
  match(Set dst (AddP src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6739
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6740
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6741
  format %{ "ADD    $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6742
  opcode(Assembler::add_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6743
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6744
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6745
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6746
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6747
// Pointer Immediate Addition
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6748
instruct addP_reg_imm13(iRegP dst, iRegP src1, immX13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6749
  match(Set dst (AddP src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6750
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6751
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6752
  format %{ "ADD    $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6753
  opcode(Assembler::add_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6754
  ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6755
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6756
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6757
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6758
// Long Addition
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6759
instruct addL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6760
  match(Set dst (AddL src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6761
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6762
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6763
  format %{ "ADD    $src1,$src2,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6764
  opcode(Assembler::add_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6765
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6766
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6767
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6768
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6769
instruct addL_reg_imm13(iRegL dst, iRegL src1, immL13 con) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6770
  match(Set dst (AddL src1 con));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6771
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6772
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6773
  format %{ "ADD    $src1,$con,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6774
  opcode(Assembler::add_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6775
  ins_encode( form3_rs1_simm13_rd( src1, con, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6776
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6777
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6778
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6779
//----------Conditional_store--------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6780
// Conditional-store of the updated heap-top.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6781
// Used during allocation of the shared heap.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6782
// Sets flags (EQ) on success.  Implemented with a CASA on Sparc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6783
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6784
// LoadP-locked.  Same as a regular pointer load when used with a compare-swap
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6785
instruct loadPLocked(iRegP dst, memory mem) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6786
  match(Set dst (LoadPLocked mem));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6787
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6788
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6789
#ifndef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6790
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6791
  format %{ "LDUW   $mem,$dst\t! ptr" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6792
  opcode(Assembler::lduw_op3, 0, REGP_OP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6793
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6794
  format %{ "LDX    $mem,$dst\t! ptr" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6795
  opcode(Assembler::ldx_op3, 0, REGP_OP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6796
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6797
  ins_encode( form3_mem_reg( mem, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6798
  ins_pipe(iload_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6799
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6800
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6801
// LoadL-locked.  Same as a regular long load when used with a compare-swap
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6802
instruct loadLLocked(iRegL dst, memory mem) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6803
  match(Set dst (LoadLLocked mem));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6804
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6805
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6806
  format %{ "LDX    $mem,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6807
  opcode(Assembler::ldx_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  6808
  ins_encode(simple_form3_mem_reg( mem, dst ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6809
  ins_pipe(iload_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6810
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6811
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6812
instruct storePConditional( iRegP heap_top_ptr, iRegP oldval, g3RegP newval, flagsRegP pcc ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6813
  match(Set pcc (StorePConditional heap_top_ptr (Binary oldval newval)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6814
  effect( KILL newval );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6815
  format %{ "CASA   [$heap_top_ptr],$oldval,R_G3\t! If $oldval==[$heap_top_ptr] Then store R_G3 into [$heap_top_ptr], set R_G3=[$heap_top_ptr] in any case\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6816
            "CMP    R_G3,$oldval\t\t! See if we made progress"  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6817
  ins_encode( enc_cas(heap_top_ptr,oldval,newval) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6818
  ins_pipe( long_memory_op );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6819
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6820
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  6821
// Conditional-store of an int value.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  6822
instruct storeIConditional( iRegP mem_ptr, iRegI oldval, g3RegI newval, flagsReg icc ) %{
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  6823
  match(Set icc (StoreIConditional mem_ptr (Binary oldval newval)));
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  6824
  effect( KILL newval );
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  6825
  format %{ "CASA   [$mem_ptr],$oldval,$newval\t! If $oldval==[$mem_ptr] Then store $newval into [$mem_ptr], set $newval=[$mem_ptr] in any case\n\t"
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  6826
            "CMP    $oldval,$newval\t\t! See if we made progress"  %}
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  6827
  ins_encode( enc_cas(mem_ptr,oldval,newval) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6828
  ins_pipe( long_memory_op );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6829
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6830
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  6831
// Conditional-store of a long value.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  6832
instruct storeLConditional( iRegP mem_ptr, iRegL oldval, g3RegL newval, flagsRegL xcc ) %{
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  6833
  match(Set xcc (StoreLConditional mem_ptr (Binary oldval newval)));
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  6834
  effect( KILL newval );
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  6835
  format %{ "CASXA  [$mem_ptr],$oldval,$newval\t! If $oldval==[$mem_ptr] Then store $newval into [$mem_ptr], set $newval=[$mem_ptr] in any case\n\t"
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  6836
            "CMP    $oldval,$newval\t\t! See if we made progress"  %}
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  6837
  ins_encode( enc_cas(mem_ptr,oldval,newval) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6838
  ins_pipe( long_memory_op );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6839
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6840
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6841
// No flag versions for CompareAndSwap{P,I,L} because matcher can't match them
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6842
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6843
instruct compareAndSwapL_bool(iRegP mem_ptr, iRegL oldval, iRegL newval, iRegI res, o7RegI tmp1, flagsReg ccr ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6844
  match(Set res (CompareAndSwapL mem_ptr (Binary oldval newval)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6845
  effect( USE mem_ptr, KILL ccr, KILL tmp1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6846
  format %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6847
            "MOV    $newval,O7\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6848
            "CASXA  [$mem_ptr],$oldval,O7\t! If $oldval==[$mem_ptr] Then store O7 into [$mem_ptr], set O7=[$mem_ptr] in any case\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6849
            "CMP    $oldval,O7\t\t! See if we made progress\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6850
            "MOV    1,$res\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6851
            "MOVne  xcc,R_G0,$res"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6852
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6853
  ins_encode( enc_casx(mem_ptr, oldval, newval),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6854
              enc_lflags_ne_to_boolean(res) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6855
  ins_pipe( long_memory_op );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6856
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6857
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6858
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6859
instruct compareAndSwapI_bool(iRegP mem_ptr, iRegI oldval, iRegI newval, iRegI res, o7RegI tmp1, flagsReg ccr ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6860
  match(Set res (CompareAndSwapI mem_ptr (Binary oldval newval)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6861
  effect( USE mem_ptr, KILL ccr, KILL tmp1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6862
  format %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6863
            "MOV    $newval,O7\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6864
            "CASA   [$mem_ptr],$oldval,O7\t! If $oldval==[$mem_ptr] Then store O7 into [$mem_ptr], set O7=[$mem_ptr] in any case\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6865
            "CMP    $oldval,O7\t\t! See if we made progress\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6866
            "MOV    1,$res\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6867
            "MOVne  icc,R_G0,$res"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6868
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6869
  ins_encode( enc_casi(mem_ptr, oldval, newval),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6870
              enc_iflags_ne_to_boolean(res) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6871
  ins_pipe( long_memory_op );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6872
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6873
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6874
instruct compareAndSwapP_bool(iRegP mem_ptr, iRegP oldval, iRegP newval, iRegI res, o7RegI tmp1, flagsReg ccr ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6875
  match(Set res (CompareAndSwapP mem_ptr (Binary oldval newval)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6876
  effect( USE mem_ptr, KILL ccr, KILL tmp1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6877
  format %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6878
            "MOV    $newval,O7\n\t"
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6879
            "CASA_PTR  [$mem_ptr],$oldval,O7\t! If $oldval==[$mem_ptr] Then store O7 into [$mem_ptr], set O7=[$mem_ptr] in any case\n\t"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6880
            "CMP    $oldval,O7\t\t! See if we made progress\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6881
            "MOV    1,$res\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6882
            "MOVne  xcc,R_G0,$res"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6883
  %}
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6884
#ifdef _LP64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6885
  ins_encode( enc_casx(mem_ptr, oldval, newval),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6886
              enc_lflags_ne_to_boolean(res) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6887
#else
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6888
  ins_encode( enc_casi(mem_ptr, oldval, newval),
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6889
              enc_iflags_ne_to_boolean(res) );
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6890
#endif
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6891
  ins_pipe( long_memory_op );
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6892
%}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6893
607
3edc58bab61e 6709165: Tests hang or misbahve with HS 13.0-b01 on solaris-sparcv9
never
parents: 591
diff changeset
  6894
instruct compareAndSwapN_bool(iRegP mem_ptr, iRegN oldval, iRegN newval, iRegI res, o7RegI tmp1, flagsReg ccr ) %{
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6895
  match(Set res (CompareAndSwapN mem_ptr (Binary oldval newval)));
607
3edc58bab61e 6709165: Tests hang or misbahve with HS 13.0-b01 on solaris-sparcv9
never
parents: 591
diff changeset
  6896
  effect( USE mem_ptr, KILL ccr, KILL tmp1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6897
  format %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6898
            "MOV    $newval,O7\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6899
            "CASA   [$mem_ptr],$oldval,O7\t! If $oldval==[$mem_ptr] Then store O7 into [$mem_ptr], set O7=[$mem_ptr] in any case\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6900
            "CMP    $oldval,O7\t\t! See if we made progress\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6901
            "MOV    1,$res\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6902
            "MOVne  icc,R_G0,$res"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6903
  %}
607
3edc58bab61e 6709165: Tests hang or misbahve with HS 13.0-b01 on solaris-sparcv9
never
parents: 591
diff changeset
  6904
  ins_encode( enc_casi(mem_ptr, oldval, newval),
3edc58bab61e 6709165: Tests hang or misbahve with HS 13.0-b01 on solaris-sparcv9
never
parents: 591
diff changeset
  6905
              enc_iflags_ne_to_boolean(res) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6906
  ins_pipe( long_memory_op );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6907
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6908
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6909
//---------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6910
// Subtraction Instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6911
// Register Subtraction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6912
instruct subI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6913
  match(Set dst (SubI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6914
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6915
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6916
  format %{ "SUB    $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6917
  opcode(Assembler::sub_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6918
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6919
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6920
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6921
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6922
// Immediate Subtraction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6923
instruct subI_reg_imm13(iRegI dst, iRegI src1, immI13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6924
  match(Set dst (SubI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6925
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6926
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6927
  format %{ "SUB    $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6928
  opcode(Assembler::sub_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6929
  ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6930
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6931
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6932
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6933
instruct subI_zero_reg(iRegI dst, immI0 zero, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6934
  match(Set dst (SubI zero src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6935
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6936
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6937
  format %{ "NEG    $src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6938
  opcode(Assembler::sub_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6939
  ins_encode( form3_rs1_rs2_rd( R_G0, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6940
  ins_pipe(ialu_zero_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6941
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6942
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6943
// Long subtraction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6944
instruct subL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6945
  match(Set dst (SubL src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6946
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6947
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6948
  format %{ "SUB    $src1,$src2,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6949
  opcode(Assembler::sub_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6950
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6951
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6952
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6953
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6954
// Immediate Subtraction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6955
instruct subL_reg_imm13(iRegL dst, iRegL src1, immL13 con) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6956
  match(Set dst (SubL src1 con));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6957
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6958
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6959
  format %{ "SUB    $src1,$con,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6960
  opcode(Assembler::sub_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6961
  ins_encode( form3_rs1_simm13_rd( src1, con, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6962
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6963
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6964
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6965
// Long negation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6966
instruct negL_reg_reg(iRegL dst, immL0 zero, iRegL src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6967
  match(Set dst (SubL zero src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6968
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6969
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6970
  format %{ "NEG    $src2,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6971
  opcode(Assembler::sub_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6972
  ins_encode( form3_rs1_rs2_rd( R_G0, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6973
  ins_pipe(ialu_zero_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6974
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6975
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6976
// Multiplication Instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6977
// Integer Multiplication
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6978
// Register Multiplication
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6979
instruct mulI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6980
  match(Set dst (MulI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6981
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6982
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6983
  format %{ "MULX   $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6984
  opcode(Assembler::mulx_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6985
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6986
  ins_pipe(imul_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6987
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6988
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6989
// Immediate Multiplication
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6990
instruct mulI_reg_imm13(iRegI dst, iRegI src1, immI13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6991
  match(Set dst (MulI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6992
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6993
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6994
  format %{ "MULX   $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6995
  opcode(Assembler::mulx_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6996
  ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6997
  ins_pipe(imul_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6998
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6999
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7000
instruct mulL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7001
  match(Set dst (MulL src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7002
  ins_cost(DEFAULT_COST * 5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7003
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7004
  format %{ "MULX   $src1,$src2,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7005
  opcode(Assembler::mulx_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7006
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7007
  ins_pipe(mulL_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7008
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7009
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7010
// Immediate Multiplication
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7011
instruct mulL_reg_imm13(iRegL dst, iRegL src1, immL13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7012
  match(Set dst (MulL src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7013
  ins_cost(DEFAULT_COST * 5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7014
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7015
  format %{ "MULX   $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7016
  opcode(Assembler::mulx_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7017
  ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7018
  ins_pipe(mulL_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7019
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7020
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7021
// Integer Division
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7022
// Register Division
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7023
instruct divI_reg_reg(iRegI dst, iRegIsafe src1, iRegIsafe src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7024
  match(Set dst (DivI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7025
  ins_cost((2+71)*DEFAULT_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7026
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7027
  format %{ "SRA     $src2,0,$src2\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7028
            "SRA     $src1,0,$src1\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7029
            "SDIVX   $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7030
  ins_encode( idiv_reg( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7031
  ins_pipe(sdiv_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7032
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7033
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7034
// Immediate Division
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7035
instruct divI_reg_imm13(iRegI dst, iRegIsafe src1, immI13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7036
  match(Set dst (DivI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7037
  ins_cost((2+71)*DEFAULT_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7038
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7039
  format %{ "SRA     $src1,0,$src1\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7040
            "SDIVX   $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7041
  ins_encode( idiv_imm( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7042
  ins_pipe(sdiv_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7043
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7044
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7045
//----------Div-By-10-Expansion------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7046
// Extract hi bits of a 32x32->64 bit multiply.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7047
// Expand rule only, not matched
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7048
instruct mul_hi(iRegIsafe dst, iRegIsafe src1, iRegIsafe src2 ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7049
  effect( DEF dst, USE src1, USE src2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7050
  format %{ "MULX   $src1,$src2,$dst\t! Used in div-by-10\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7051
            "SRLX   $dst,#32,$dst\t\t! Extract only hi word of result" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7052
  ins_encode( enc_mul_hi(dst,src1,src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7053
  ins_pipe(sdiv_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7054
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7055
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 2022
diff changeset
  7056
// Magic constant, reciprocal of 10
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7057
instruct loadConI_x66666667(iRegIsafe dst) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7058
  effect( DEF dst );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7059
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7060
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7061
  format %{ "SET    0x66666667,$dst\t! Used in div-by-10" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7062
  ins_encode( Set32(0x66666667, dst) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7063
  ins_pipe(ialu_hi_lo_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7064
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7065
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 2022
diff changeset
  7066
// Register Shift Right Arithmetic Long by 32-63
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7067
instruct sra_31( iRegI dst, iRegI src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7068
  effect( DEF dst, USE src );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7069
  format %{ "SRA    $src,31,$dst\t! Used in div-by-10" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7070
  ins_encode( form3_rs1_rd_copysign_hi(src,dst) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7071
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7072
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7073
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7074
// Arithmetic Shift Right by 8-bit immediate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7075
instruct sra_reg_2( iRegI dst, iRegI src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7076
  effect( DEF dst, USE src );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7077
  format %{ "SRA    $src,2,$dst\t! Used in div-by-10" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7078
  opcode(Assembler::sra_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7079
  ins_encode( form3_rs1_simm13_rd( src, 0x2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7080
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7081
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7082
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7083
// Integer DIV with 10
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7084
instruct divI_10( iRegI dst, iRegIsafe src, immI10 div ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7085
  match(Set dst (DivI src div));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7086
  ins_cost((6+6)*DEFAULT_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7087
  expand %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7088
    iRegIsafe tmp1;               // Killed temps;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7089
    iRegIsafe tmp2;               // Killed temps;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7090
    iRegI tmp3;                   // Killed temps;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7091
    iRegI tmp4;                   // Killed temps;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7092
    loadConI_x66666667( tmp1 );   // SET  0x66666667 -> tmp1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7093
    mul_hi( tmp2, src, tmp1 );    // MUL  hibits(src * tmp1) -> tmp2
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7094
    sra_31( tmp3, src );          // SRA  src,31 -> tmp3
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7095
    sra_reg_2( tmp4, tmp2 );      // SRA  tmp2,2 -> tmp4
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7096
    subI_reg_reg( dst,tmp4,tmp3); // SUB  tmp4 - tmp3 -> dst
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7097
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7098
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7099
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7100
// Register Long Division
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7101
instruct divL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7102
  match(Set dst (DivL src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7103
  ins_cost(DEFAULT_COST*71);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7104
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7105
  format %{ "SDIVX  $src1,$src2,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7106
  opcode(Assembler::sdivx_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7107
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7108
  ins_pipe(divL_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7109
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7110
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7111
// Register Long Division
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7112
instruct divL_reg_imm13(iRegL dst, iRegL src1, immL13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7113
  match(Set dst (DivL src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7114
  ins_cost(DEFAULT_COST*71);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7115
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7116
  format %{ "SDIVX  $src1,$src2,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7117
  opcode(Assembler::sdivx_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7118
  ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7119
  ins_pipe(divL_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7120
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7121
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7122
// Integer Remainder
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7123
// Register Remainder
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7124
instruct modI_reg_reg(iRegI dst, iRegIsafe src1, iRegIsafe src2, o7RegP temp, flagsReg ccr ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7125
  match(Set dst (ModI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7126
  effect( KILL ccr, KILL temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7127
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7128
  format %{ "SREM   $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7129
  ins_encode( irem_reg(src1, src2, dst, temp) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7130
  ins_pipe(sdiv_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7131
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7132
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7133
// Immediate Remainder
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7134
instruct modI_reg_imm13(iRegI dst, iRegIsafe src1, immI13 src2, o7RegP temp, flagsReg ccr ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7135
  match(Set dst (ModI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7136
  effect( KILL ccr, KILL temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7137
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7138
  format %{ "SREM   $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7139
  ins_encode( irem_imm(src1, src2, dst, temp) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7140
  ins_pipe(sdiv_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7141
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7142
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7143
// Register Long Remainder
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7144
instruct divL_reg_reg_1(iRegL dst, iRegL src1, iRegL src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7145
  effect(DEF dst, USE src1, USE src2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7146
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7147
  format %{ "SDIVX  $src1,$src2,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7148
  opcode(Assembler::sdivx_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7149
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7150
  ins_pipe(divL_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7151
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7152
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7153
// Register Long Division
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7154
instruct divL_reg_imm13_1(iRegL dst, iRegL src1, immL13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7155
  effect(DEF dst, USE src1, USE src2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7156
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7157
  format %{ "SDIVX  $src1,$src2,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7158
  opcode(Assembler::sdivx_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7159
  ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7160
  ins_pipe(divL_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7161
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7162
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7163
instruct mulL_reg_reg_1(iRegL dst, iRegL src1, iRegL src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7164
  effect(DEF dst, USE src1, USE src2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7165
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7166
  format %{ "MULX   $src1,$src2,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7167
  opcode(Assembler::mulx_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7168
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7169
  ins_pipe(mulL_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7170
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7171
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7172
// Immediate Multiplication
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7173
instruct mulL_reg_imm13_1(iRegL dst, iRegL src1, immL13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7174
  effect(DEF dst, USE src1, USE src2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7175
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7176
  format %{ "MULX   $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7177
  opcode(Assembler::mulx_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7178
  ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7179
  ins_pipe(mulL_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7180
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7181
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7182
instruct subL_reg_reg_1(iRegL dst, iRegL src1, iRegL src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7183
  effect(DEF dst, USE src1, USE src2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7184
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7185
  format %{ "SUB    $src1,$src2,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7186
  opcode(Assembler::sub_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7187
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7188
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7189
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7190
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7191
instruct subL_reg_reg_2(iRegL dst, iRegL src1, iRegL src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7192
  effect(DEF dst, USE src1, USE src2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7193
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7194
  format %{ "SUB    $src1,$src2,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7195
  opcode(Assembler::sub_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7196
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7197
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7198
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7199
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7200
// Register Long Remainder
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7201
instruct modL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7202
  match(Set dst (ModL src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7203
  ins_cost(DEFAULT_COST*(71 + 6 + 1));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7204
  expand %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7205
    iRegL tmp1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7206
    iRegL tmp2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7207
    divL_reg_reg_1(tmp1, src1, src2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7208
    mulL_reg_reg_1(tmp2, tmp1, src2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7209
    subL_reg_reg_1(dst,  src1, tmp2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7210
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7211
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7212
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7213
// Register Long Remainder
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7214
instruct modL_reg_imm13(iRegL dst, iRegL src1, immL13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7215
  match(Set dst (ModL src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7216
  ins_cost(DEFAULT_COST*(71 + 6 + 1));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7217
  expand %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7218
    iRegL tmp1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7219
    iRegL tmp2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7220
    divL_reg_imm13_1(tmp1, src1, src2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7221
    mulL_reg_imm13_1(tmp2, tmp1, src2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7222
    subL_reg_reg_2  (dst,  src1, tmp2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7223
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7224
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7225
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7226
// Integer Shift Instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7227
// Register Shift Left
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7228
instruct shlI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7229
  match(Set dst (LShiftI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7230
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7231
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7232
  format %{ "SLL    $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7233
  opcode(Assembler::sll_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7234
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7235
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7236
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7237
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7238
// Register Shift Left Immediate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7239
instruct shlI_reg_imm5(iRegI dst, iRegI src1, immU5 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7240
  match(Set dst (LShiftI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7241
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7242
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7243
  format %{ "SLL    $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7244
  opcode(Assembler::sll_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7245
  ins_encode( form3_rs1_imm5_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7246
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7247
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7248
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7249
// Register Shift Left
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7250
instruct shlL_reg_reg(iRegL dst, iRegL src1, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7251
  match(Set dst (LShiftL src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7252
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7253
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7254
  format %{ "SLLX   $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7255
  opcode(Assembler::sllx_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7256
  ins_encode( form3_sd_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7257
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7258
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7259
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7260
// Register Shift Left Immediate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7261
instruct shlL_reg_imm6(iRegL dst, iRegL src1, immU6 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7262
  match(Set dst (LShiftL src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7263
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7264
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7265
  format %{ "SLLX   $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7266
  opcode(Assembler::sllx_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7267
  ins_encode( form3_sd_rs1_imm6_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7268
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7269
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7270
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7271
// Register Arithmetic Shift Right
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7272
instruct sarI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7273
  match(Set dst (RShiftI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7274
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7275
  format %{ "SRA    $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7276
  opcode(Assembler::sra_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7277
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7278
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7279
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7280
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7281
// Register Arithmetic Shift Right Immediate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7282
instruct sarI_reg_imm5(iRegI dst, iRegI src1, immU5 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7283
  match(Set dst (RShiftI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7284
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7285
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7286
  format %{ "SRA    $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7287
  opcode(Assembler::sra_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7288
  ins_encode( form3_rs1_imm5_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7289
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7290
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7291
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7292
// Register Shift Right Arithmatic Long
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7293
instruct sarL_reg_reg(iRegL dst, iRegL src1, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7294
  match(Set dst (RShiftL src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7295
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7296
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7297
  format %{ "SRAX   $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7298
  opcode(Assembler::srax_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7299
  ins_encode( form3_sd_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7300
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7301
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7302
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7303
// Register Shift Left Immediate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7304
instruct sarL_reg_imm6(iRegL dst, iRegL src1, immU6 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7305
  match(Set dst (RShiftL src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7306
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7307
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7308
  format %{ "SRAX   $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7309
  opcode(Assembler::srax_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7310
  ins_encode( form3_sd_rs1_imm6_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7311
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7312
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7313
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7314
// Register Shift Right
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7315
instruct shrI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7316
  match(Set dst (URShiftI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7317
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7318
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7319
  format %{ "SRL    $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7320
  opcode(Assembler::srl_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7321
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7322
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7323
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7324
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7325
// Register Shift Right Immediate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7326
instruct shrI_reg_imm5(iRegI dst, iRegI src1, immU5 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7327
  match(Set dst (URShiftI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7328
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7329
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7330
  format %{ "SRL    $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7331
  opcode(Assembler::srl_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7332
  ins_encode( form3_rs1_imm5_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7333
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7334
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7335
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7336
// Register Shift Right
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7337
instruct shrL_reg_reg(iRegL dst, iRegL src1, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7338
  match(Set dst (URShiftL src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7339
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7340
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7341
  format %{ "SRLX   $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7342
  opcode(Assembler::srlx_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7343
  ins_encode( form3_sd_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7344
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7345
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7346
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7347
// Register Shift Right Immediate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7348
instruct shrL_reg_imm6(iRegL dst, iRegL src1, immU6 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7349
  match(Set dst (URShiftL src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7350
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7351
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7352
  format %{ "SRLX   $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7353
  opcode(Assembler::srlx_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7354
  ins_encode( form3_sd_rs1_imm6_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7355
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7356
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7357
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7358
// Register Shift Right Immediate with a CastP2X
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7359
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7360
instruct shrP_reg_imm6(iRegL dst, iRegP src1, immU6 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7361
  match(Set dst (URShiftL (CastP2X src1) src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7362
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7363
  format %{ "SRLX   $src1,$src2,$dst\t! Cast ptr $src1 to long and shift" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7364
  opcode(Assembler::srlx_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7365
  ins_encode( form3_sd_rs1_imm6_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7366
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7367
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7368
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7369
instruct shrP_reg_imm5(iRegI dst, iRegP src1, immU5 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7370
  match(Set dst (URShiftI (CastP2X src1) src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7371
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7372
  format %{ "SRL    $src1,$src2,$dst\t! Cast ptr $src1 to int and shift" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7373
  opcode(Assembler::srl_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7374
  ins_encode( form3_rs1_imm5_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7375
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7376
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7377
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7378
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7379
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7380
//----------Floating Point Arithmetic Instructions-----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7381
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7382
//  Add float single precision
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7383
instruct addF_reg_reg(regF dst, regF src1, regF src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7384
  match(Set dst (AddF src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7385
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7386
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7387
  format %{ "FADDS  $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7388
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fadds_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7389
  ins_encode(form3_opf_rs1F_rs2F_rdF(src1, src2, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7390
  ins_pipe(faddF_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7391
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7392
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7393
//  Add float double precision
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7394
instruct addD_reg_reg(regD dst, regD src1, regD src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7395
  match(Set dst (AddD src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7396
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7397
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7398
  format %{ "FADDD  $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7399
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::faddd_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7400
  ins_encode(form3_opf_rs1D_rs2D_rdD(src1, src2, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7401
  ins_pipe(faddD_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7402
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7403
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7404
//  Sub float single precision
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7405
instruct subF_reg_reg(regF dst, regF src1, regF src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7406
  match(Set dst (SubF src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7407
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7408
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7409
  format %{ "FSUBS  $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7410
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fsubs_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7411
  ins_encode(form3_opf_rs1F_rs2F_rdF(src1, src2, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7412
  ins_pipe(faddF_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7413
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7414
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7415
//  Sub float double precision
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7416
instruct subD_reg_reg(regD dst, regD src1, regD src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7417
  match(Set dst (SubD src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7418
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7419
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7420
  format %{ "FSUBD  $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7421
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fsubd_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7422
  ins_encode(form3_opf_rs1D_rs2D_rdD(src1, src2, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7423
  ins_pipe(faddD_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7424
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7425
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7426
//  Mul float single precision
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7427
instruct mulF_reg_reg(regF dst, regF src1, regF src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7428
  match(Set dst (MulF src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7429
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7430
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7431
  format %{ "FMULS  $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7432
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fmuls_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7433
  ins_encode(form3_opf_rs1F_rs2F_rdF(src1, src2, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7434
  ins_pipe(fmulF_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7435
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7436
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7437
//  Mul float double precision
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7438
instruct mulD_reg_reg(regD dst, regD src1, regD src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7439
  match(Set dst (MulD src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7440
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7441
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7442
  format %{ "FMULD  $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7443
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fmuld_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7444
  ins_encode(form3_opf_rs1D_rs2D_rdD(src1, src2, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7445
  ins_pipe(fmulD_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7446
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7447
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7448
//  Div float single precision
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7449
instruct divF_reg_reg(regF dst, regF src1, regF src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7450
  match(Set dst (DivF src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7451
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7452
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7453
  format %{ "FDIVS  $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7454
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fdivs_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7455
  ins_encode(form3_opf_rs1F_rs2F_rdF(src1, src2, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7456
  ins_pipe(fdivF_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7457
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7458
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7459
//  Div float double precision
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7460
instruct divD_reg_reg(regD dst, regD src1, regD src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7461
  match(Set dst (DivD src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7462
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7463
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7464
  format %{ "FDIVD  $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7465
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fdivd_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7466
  ins_encode(form3_opf_rs1D_rs2D_rdD(src1, src2, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7467
  ins_pipe(fdivD_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7468
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7469
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7470
//  Absolute float double precision
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7471
instruct absD_reg(regD dst, regD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7472
  match(Set dst (AbsD src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7473
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7474
  format %{ "FABSd  $src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7475
  ins_encode(fabsd(dst, src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7476
  ins_pipe(faddD_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7477
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7478
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7479
//  Absolute float single precision
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7480
instruct absF_reg(regF dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7481
  match(Set dst (AbsF src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7482
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7483
  format %{ "FABSs  $src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7484
  ins_encode(fabss(dst, src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7485
  ins_pipe(faddF_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7486
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7487
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7488
instruct negF_reg(regF dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7489
  match(Set dst (NegF src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7490
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7491
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7492
  format %{ "FNEGs  $src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7493
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fnegs_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7494
  ins_encode(form3_opf_rs2F_rdF(src, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7495
  ins_pipe(faddF_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7496
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7497
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7498
instruct negD_reg(regD dst, regD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7499
  match(Set dst (NegD src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7500
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7501
  format %{ "FNEGd  $src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7502
  ins_encode(fnegd(dst, src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7503
  ins_pipe(faddD_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7504
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7505
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7506
//  Sqrt float double precision
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7507
instruct sqrtF_reg_reg(regF dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7508
  match(Set dst (ConvD2F (SqrtD (ConvF2D src))));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7509
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7510
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7511
  format %{ "FSQRTS $src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7512
  ins_encode(fsqrts(dst, src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7513
  ins_pipe(fdivF_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7514
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7515
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7516
//  Sqrt float double precision
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7517
instruct sqrtD_reg_reg(regD dst, regD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7518
  match(Set dst (SqrtD src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7519
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7520
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7521
  format %{ "FSQRTD $src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7522
  ins_encode(fsqrtd(dst, src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7523
  ins_pipe(fdivD_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7524
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7525
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7526
//----------Logical Instructions-----------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7527
// And Instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7528
// Register And
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7529
instruct andI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7530
  match(Set dst (AndI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7531
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7532
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7533
  format %{ "AND    $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7534
  opcode(Assembler::and_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7535
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7536
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7537
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7538
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7539
// Immediate And
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7540
instruct andI_reg_imm13(iRegI dst, iRegI src1, immI13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7541
  match(Set dst (AndI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7542
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7543
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7544
  format %{ "AND    $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7545
  opcode(Assembler::and_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7546
  ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7547
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7548
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7549
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7550
// Register And Long
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7551
instruct andL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7552
  match(Set dst (AndL src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7553
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7554
  ins_cost(DEFAULT_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7555
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7556
  format %{ "AND    $src1,$src2,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7557
  opcode(Assembler::and_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7558
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7559
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7560
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7561
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7562
instruct andL_reg_imm13(iRegL dst, iRegL src1, immL13 con) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7563
  match(Set dst (AndL src1 con));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7564
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7565
  ins_cost(DEFAULT_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7566
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7567
  format %{ "AND    $src1,$con,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7568
  opcode(Assembler::and_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7569
  ins_encode( form3_rs1_simm13_rd( src1, con, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7570
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7571
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7572
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7573
// Or Instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7574
// Register Or
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7575
instruct orI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7576
  match(Set dst (OrI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7577
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7578
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7579
  format %{ "OR     $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7580
  opcode(Assembler::or_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7581
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7582
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7583
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7584
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7585
// Immediate Or
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7586
instruct orI_reg_imm13(iRegI dst, iRegI src1, immI13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7587
  match(Set dst (OrI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7588
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7589
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7590
  format %{ "OR     $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7591
  opcode(Assembler::or_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7592
  ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7593
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7594
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7595
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7596
// Register Or Long
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7597
instruct orL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7598
  match(Set dst (OrL src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7599
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7600
  ins_cost(DEFAULT_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7601
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7602
  format %{ "OR     $src1,$src2,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7603
  opcode(Assembler::or_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7604
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7605
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7606
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7607
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7608
instruct orL_reg_imm13(iRegL dst, iRegL src1, immL13 con) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7609
  match(Set dst (OrL src1 con));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7610
  ins_cost(DEFAULT_COST*2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7611
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7612
  ins_cost(DEFAULT_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7613
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7614
  format %{ "OR     $src1,$con,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7615
  opcode(Assembler::or_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7616
  ins_encode( form3_rs1_simm13_rd( src1, con, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7617
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7618
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7619
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7620
#ifndef _LP64
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7621
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7622
// Use sp_ptr_RegP to match G2 (TLS register) without spilling.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7623
instruct orI_reg_castP2X(iRegI dst, iRegI src1, sp_ptr_RegP src2) %{
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7624
  match(Set dst (OrI src1 (CastP2X src2)));
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7625
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7626
  size(4);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7627
  format %{ "OR     $src1,$src2,$dst" %}
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7628
  opcode(Assembler::or_op3, Assembler::arith_op);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7629
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7630
  ins_pipe(ialu_reg_reg);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7631
%}
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7632
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7633
#else
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7634
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7635
instruct orL_reg_castP2X(iRegL dst, iRegL src1, sp_ptr_RegP src2) %{
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7636
  match(Set dst (OrL src1 (CastP2X src2)));
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7637
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7638
  ins_cost(DEFAULT_COST);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7639
  size(4);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7640
  format %{ "OR     $src1,$src2,$dst\t! long" %}
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7641
  opcode(Assembler::or_op3, Assembler::arith_op);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7642
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7643
  ins_pipe(ialu_reg_reg);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7644
%}
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7645
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7646
#endif
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7647
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7648
// Xor Instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7649
// Register Xor
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7650
instruct xorI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7651
  match(Set dst (XorI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7652
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7653
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7654
  format %{ "XOR    $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7655
  opcode(Assembler::xor_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7656
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7657
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7658
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7659
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7660
// Immediate Xor
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7661
instruct xorI_reg_imm13(iRegI dst, iRegI src1, immI13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7662
  match(Set dst (XorI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7663
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7664
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7665
  format %{ "XOR    $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7666
  opcode(Assembler::xor_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7667
  ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7668
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7669
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7670
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7671
// Register Xor Long
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7672
instruct xorL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7673
  match(Set dst (XorL src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7674
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7675
  ins_cost(DEFAULT_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7676
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7677
  format %{ "XOR    $src1,$src2,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7678
  opcode(Assembler::xor_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7679
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7680
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7681
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7682
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7683
instruct xorL_reg_imm13(iRegL dst, iRegL src1, immL13 con) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7684
  match(Set dst (XorL src1 con));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7685
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7686
  ins_cost(DEFAULT_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7687
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7688
  format %{ "XOR    $src1,$con,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7689
  opcode(Assembler::xor_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7690
  ins_encode( form3_rs1_simm13_rd( src1, con, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7691
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7692
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7693
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7694
//----------Convert to Boolean-------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7695
// Nice hack for 32-bit tests but doesn't work for
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7696
// 64-bit pointers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7697
instruct convI2B( iRegI dst, iRegI src, flagsReg ccr ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7698
  match(Set dst (Conv2B src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7699
  effect( KILL ccr );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7700
  ins_cost(DEFAULT_COST*2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7701
  format %{ "CMP    R_G0,$src\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7702
            "ADDX   R_G0,0,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7703
  ins_encode( enc_to_bool( src, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7704
  ins_pipe(ialu_reg_ialu);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7705
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7706
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7707
#ifndef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7708
instruct convP2B( iRegI dst, iRegP src, flagsReg ccr ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7709
  match(Set dst (Conv2B src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7710
  effect( KILL ccr );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7711
  ins_cost(DEFAULT_COST*2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7712
  format %{ "CMP    R_G0,$src\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7713
            "ADDX   R_G0,0,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7714
  ins_encode( enc_to_bool( src, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7715
  ins_pipe(ialu_reg_ialu);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7716
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7717
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7718
instruct convP2B( iRegI dst, iRegP src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7719
  match(Set dst (Conv2B src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7720
  ins_cost(DEFAULT_COST*2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7721
  format %{ "MOV    $src,$dst\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7722
            "MOVRNZ $src,1,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7723
  ins_encode( form3_g0_rs2_rd_move( src, dst ), enc_convP2B( dst, src ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7724
  ins_pipe(ialu_clr_and_mover);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7725
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7726
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7727
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7728
instruct cmpLTMask_reg_reg( iRegI dst, iRegI p, iRegI q, flagsReg ccr ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7729
  match(Set dst (CmpLTMask p q));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7730
  effect( KILL ccr );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7731
  ins_cost(DEFAULT_COST*4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7732
  format %{ "CMP    $p,$q\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7733
            "MOV    #0,$dst\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7734
            "BLT,a  .+8\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7735
            "MOV    #-1,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7736
  ins_encode( enc_ltmask(p,q,dst) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7737
  ins_pipe(ialu_reg_reg_ialu);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7738
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7739
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7740
instruct cadd_cmpLTMask( iRegI p, iRegI q, iRegI y, iRegI tmp, flagsReg ccr ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7741
  match(Set p (AddI (AndI (CmpLTMask p q) y) (SubI p q)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7742
  effect(KILL ccr, TEMP tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7743
  ins_cost(DEFAULT_COST*3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7744
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7745
  format %{ "SUBcc  $p,$q,$p\t! p' = p-q\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7746
            "ADD    $p,$y,$tmp\t! g3=p-q+y\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7747
            "MOVl   $tmp,$p\t! p' < 0 ? p'+y : p'" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7748
  ins_encode( enc_cadd_cmpLTMask(p, q, y, tmp) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7749
  ins_pipe( cadd_cmpltmask );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7750
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7751
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7752
instruct cadd_cmpLTMask2( iRegI p, iRegI q, iRegI y, iRegI tmp, flagsReg ccr ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7753
  match(Set p (AddI (SubI p q) (AndI (CmpLTMask p q) y)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7754
  effect( KILL ccr, TEMP tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7755
  ins_cost(DEFAULT_COST*3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7756
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7757
  format %{ "SUBcc  $p,$q,$p\t! p' = p-q\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7758
            "ADD    $p,$y,$tmp\t! g3=p-q+y\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7759
            "MOVl   $tmp,$p\t! p' < 0 ? p'+y : p'" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7760
  ins_encode( enc_cadd_cmpLTMask(p, q, y, tmp) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7761
  ins_pipe( cadd_cmpltmask );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7762
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7763
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7764
//----------Arithmetic Conversion Instructions---------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7765
// The conversions operations are all Alpha sorted.  Please keep it that way!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7766
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7767
instruct convD2F_reg(regF dst, regD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7768
  match(Set dst (ConvD2F src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7769
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7770
  format %{ "FDTOS  $src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7771
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fdtos_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7772
  ins_encode(form3_opf_rs2D_rdF(src, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7773
  ins_pipe(fcvtD2F);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7774
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7775
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7776
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7777
// Convert a double to an int in a float register.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7778
// If the double is a NAN, stuff a zero in instead.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7779
instruct convD2I_helper(regF dst, regD src, flagsRegF0 fcc0) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7780
  effect(DEF dst, USE src, KILL fcc0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7781
  format %{ "FCMPd  fcc0,$src,$src\t! check for NAN\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7782
            "FBO,pt fcc0,skip\t! branch on ordered, predict taken\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7783
            "FDTOI  $src,$dst\t! convert in delay slot\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7784
            "FITOS  $dst,$dst\t! change NaN/max-int to valid float\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7785
            "FSUBs  $dst,$dst,$dst\t! cleared only if nan\n"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7786
      "skip:" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7787
  ins_encode(form_d2i_helper(src,dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7788
  ins_pipe(fcvtD2I);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7789
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7790
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7791
instruct convD2I_reg(stackSlotI dst, regD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7792
  match(Set dst (ConvD2I src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7793
  ins_cost(DEFAULT_COST*2 + MEMORY_REF_COST*2 + BRANCH_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7794
  expand %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7795
    regF tmp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7796
    convD2I_helper(tmp, src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7797
    regF_to_stkI(dst, tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7798
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7799
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7800
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7801
// Convert a double to a long in a double register.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7802
// If the double is a NAN, stuff a zero in instead.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7803
instruct convD2L_helper(regD dst, regD src, flagsRegF0 fcc0) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7804
  effect(DEF dst, USE src, KILL fcc0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7805
  format %{ "FCMPd  fcc0,$src,$src\t! check for NAN\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7806
            "FBO,pt fcc0,skip\t! branch on ordered, predict taken\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7807
            "FDTOX  $src,$dst\t! convert in delay slot\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7808
            "FXTOD  $dst,$dst\t! change NaN/max-long to valid double\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7809
            "FSUBd  $dst,$dst,$dst\t! cleared only if nan\n"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7810
      "skip:" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7811
  ins_encode(form_d2l_helper(src,dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7812
  ins_pipe(fcvtD2L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7813
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7814
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7815
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7816
// Double to Long conversion
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7817
instruct convD2L_reg(stackSlotL dst, regD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7818
  match(Set dst (ConvD2L src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7819
  ins_cost(DEFAULT_COST*2 + MEMORY_REF_COST*2 + BRANCH_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7820
  expand %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7821
    regD tmp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7822
    convD2L_helper(tmp, src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7823
    regD_to_stkL(dst, tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7824
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7825
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7826
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7827
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7828
instruct convF2D_reg(regD dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7829
  match(Set dst (ConvF2D src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7830
  format %{ "FSTOD  $src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7831
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fstod_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7832
  ins_encode(form3_opf_rs2F_rdD(src, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7833
  ins_pipe(fcvtF2D);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7834
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7835
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7836
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7837
instruct convF2I_helper(regF dst, regF src, flagsRegF0 fcc0) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7838
  effect(DEF dst, USE src, KILL fcc0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7839
  format %{ "FCMPs  fcc0,$src,$src\t! check for NAN\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7840
            "FBO,pt fcc0,skip\t! branch on ordered, predict taken\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7841
            "FSTOI  $src,$dst\t! convert in delay slot\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7842
            "FITOS  $dst,$dst\t! change NaN/max-int to valid float\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7843
            "FSUBs  $dst,$dst,$dst\t! cleared only if nan\n"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7844
      "skip:" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7845
  ins_encode(form_f2i_helper(src,dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7846
  ins_pipe(fcvtF2I);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7847
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7848
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7849
instruct convF2I_reg(stackSlotI dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7850
  match(Set dst (ConvF2I src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7851
  ins_cost(DEFAULT_COST*2 + MEMORY_REF_COST*2 + BRANCH_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7852
  expand %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7853
    regF tmp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7854
    convF2I_helper(tmp, src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7855
    regF_to_stkI(dst, tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7856
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7857
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7858
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7859
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7860
instruct convF2L_helper(regD dst, regF src, flagsRegF0 fcc0) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7861
  effect(DEF dst, USE src, KILL fcc0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7862
  format %{ "FCMPs  fcc0,$src,$src\t! check for NAN\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7863
            "FBO,pt fcc0,skip\t! branch on ordered, predict taken\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7864
            "FSTOX  $src,$dst\t! convert in delay slot\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7865
            "FXTOD  $dst,$dst\t! change NaN/max-long to valid double\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7866
            "FSUBd  $dst,$dst,$dst\t! cleared only if nan\n"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7867
      "skip:" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7868
  ins_encode(form_f2l_helper(src,dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7869
  ins_pipe(fcvtF2L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7870
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7871
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7872
// Float to Long conversion
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7873
instruct convF2L_reg(stackSlotL dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7874
  match(Set dst (ConvF2L src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7875
  ins_cost(DEFAULT_COST*2 + MEMORY_REF_COST*2 + BRANCH_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7876
  expand %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7877
    regD tmp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7878
    convF2L_helper(tmp, src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7879
    regD_to_stkL(dst, tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7880
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7881
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7882
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7883
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7884
instruct convI2D_helper(regD dst, regF tmp) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7885
  effect(USE tmp, DEF dst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7886
  format %{ "FITOD  $tmp,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7887
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fitod_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7888
  ins_encode(form3_opf_rs2F_rdD(tmp, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7889
  ins_pipe(fcvtI2D);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7890
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7891
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7892
instruct convI2D_reg(stackSlotI src, regD dst) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7893
  match(Set dst (ConvI2D src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7894
  ins_cost(DEFAULT_COST + MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7895
  expand %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7896
    regF tmp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7897
    stkI_to_regF( tmp, src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7898
    convI2D_helper( dst, tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7899
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7900
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7901
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7902
instruct convI2D_mem( regD_low dst, memory mem ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7903
  match(Set dst (ConvI2D (LoadI mem)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7904
  ins_cost(DEFAULT_COST + MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7905
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7906
  format %{ "LDF    $mem,$dst\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7907
            "FITOD  $dst,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7908
  opcode(Assembler::ldf_op3, Assembler::fitod_opf);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  7909
  ins_encode(simple_form3_mem_reg( mem, dst ), form3_convI2F(dst, dst));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7910
  ins_pipe(floadF_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7911
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7912
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7913
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7914
instruct convI2F_helper(regF dst, regF tmp) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7915
  effect(DEF dst, USE tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7916
  format %{ "FITOS  $tmp,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7917
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fitos_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7918
  ins_encode(form3_opf_rs2F_rdF(tmp, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7919
  ins_pipe(fcvtI2F);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7920
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7921
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7922
instruct convI2F_reg( regF dst, stackSlotI src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7923
  match(Set dst (ConvI2F src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7924
  ins_cost(DEFAULT_COST + MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7925
  expand %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7926
    regF tmp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7927
    stkI_to_regF(tmp,src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7928
    convI2F_helper(dst, tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7929
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7930
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7931
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7932
instruct convI2F_mem( regF dst, memory mem ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7933
  match(Set dst (ConvI2F (LoadI mem)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7934
  ins_cost(DEFAULT_COST + MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7935
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7936
  format %{ "LDF    $mem,$dst\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7937
            "FITOS  $dst,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7938
  opcode(Assembler::ldf_op3, Assembler::fitos_opf);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  7939
  ins_encode(simple_form3_mem_reg( mem, dst ), form3_convI2F(dst, dst));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7940
  ins_pipe(floadF_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7941
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7942
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7943
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7944
instruct convI2L_reg(iRegL dst, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7945
  match(Set dst (ConvI2L src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7946
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7947
  format %{ "SRA    $src,0,$dst\t! int->long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7948
  opcode(Assembler::sra_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7949
  ins_encode( form3_rs1_rs2_rd( src, R_G0, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7950
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7951
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7952
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7953
// Zero-extend convert int to long
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7954
instruct convI2L_reg_zex(iRegL dst, iRegI src, immL_32bits mask ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7955
  match(Set dst (AndL (ConvI2L src) mask) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7956
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7957
  format %{ "SRL    $src,0,$dst\t! zero-extend int to long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7958
  opcode(Assembler::srl_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7959
  ins_encode( form3_rs1_rs2_rd( src, R_G0, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7960
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7961
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7962
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7963
// Zero-extend long
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7964
instruct zerox_long(iRegL dst, iRegL src, immL_32bits mask ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7965
  match(Set dst (AndL src mask) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7966
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7967
  format %{ "SRL    $src,0,$dst\t! zero-extend long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7968
  opcode(Assembler::srl_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7969
  ins_encode( form3_rs1_rs2_rd( src, R_G0, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7970
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7971
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7972
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7973
instruct MoveF2I_stack_reg(iRegI dst, stackSlotF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7974
  match(Set dst (MoveF2I src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7975
  effect(DEF dst, USE src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7976
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7977
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7978
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7979
  format %{ "LDUW   $src,$dst\t! MoveF2I" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7980
  opcode(Assembler::lduw_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  7981
  ins_encode(simple_form3_mem_reg( src, dst ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7982
  ins_pipe(iload_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7983
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7984
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7985
instruct MoveI2F_stack_reg(regF dst, stackSlotI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7986
  match(Set dst (MoveI2F src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7987
  effect(DEF dst, USE src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7988
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7989
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7990
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7991
  format %{ "LDF    $src,$dst\t! MoveI2F" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7992
  opcode(Assembler::ldf_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  7993
  ins_encode(simple_form3_mem_reg(src, dst));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7994
  ins_pipe(floadF_stk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7995
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7996
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7997
instruct MoveD2L_stack_reg(iRegL dst, stackSlotD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7998
  match(Set dst (MoveD2L src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7999
  effect(DEF dst, USE src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8000
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8001
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8002
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8003
  format %{ "LDX    $src,$dst\t! MoveD2L" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8004
  opcode(Assembler::ldx_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  8005
  ins_encode(simple_form3_mem_reg( src, dst ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8006
  ins_pipe(iload_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8007
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8008
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8009
instruct MoveL2D_stack_reg(regD dst, stackSlotL src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8010
  match(Set dst (MoveL2D src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8011
  effect(DEF dst, USE src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8012
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8013
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8014
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8015
  format %{ "LDDF   $src,$dst\t! MoveL2D" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8016
  opcode(Assembler::lddf_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  8017
  ins_encode(simple_form3_mem_reg(src, dst));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8018
  ins_pipe(floadD_stk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8019
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8020
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8021
instruct MoveF2I_reg_stack(stackSlotI dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8022
  match(Set dst (MoveF2I src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8023
  effect(DEF dst, USE src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8024
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8025
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8026
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8027
  format %{ "STF   $src,$dst\t!MoveF2I" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8028
  opcode(Assembler::stf_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  8029
  ins_encode(simple_form3_mem_reg(dst, src));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8030
  ins_pipe(fstoreF_stk_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8031
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8032
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8033
instruct MoveI2F_reg_stack(stackSlotF dst, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8034
  match(Set dst (MoveI2F src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8035
  effect(DEF dst, USE src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8036
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8037
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8038
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8039
  format %{ "STW    $src,$dst\t!MoveI2F" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8040
  opcode(Assembler::stw_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  8041
  ins_encode(simple_form3_mem_reg( dst, src ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8042
  ins_pipe(istore_mem_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8043
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8044
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8045
instruct MoveD2L_reg_stack(stackSlotL dst, regD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8046
  match(Set dst (MoveD2L src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8047
  effect(DEF dst, USE src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8048
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8049
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8050
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8051
  format %{ "STDF   $src,$dst\t!MoveD2L" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8052
  opcode(Assembler::stdf_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  8053
  ins_encode(simple_form3_mem_reg(dst, src));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8054
  ins_pipe(fstoreD_stk_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8055
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8056
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8057
instruct MoveL2D_reg_stack(stackSlotD dst, iRegL src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8058
  match(Set dst (MoveL2D src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8059
  effect(DEF dst, USE src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8060
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8061
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8062
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8063
  format %{ "STX    $src,$dst\t!MoveL2D" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8064
  opcode(Assembler::stx_op3);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  8065
  ins_encode(simple_form3_mem_reg( dst, src ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8066
  ins_pipe(istore_mem_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8067
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8068
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8069
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8070
//-----------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8071
// Long to Double conversion using V8 opcodes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8072
// Still useful because cheetah traps and becomes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8073
// amazingly slow for some common numbers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8074
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8075
// Magic constant, 0x43300000
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8076
instruct loadConI_x43300000(iRegI dst) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8077
  effect(DEF dst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8078
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8079
  format %{ "SETHI  HI(0x43300000),$dst\t! 2^52" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8080
  ins_encode(SetHi22(0x43300000, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8081
  ins_pipe(ialu_none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8082
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8083
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8084
// Magic constant, 0x41f00000
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8085
instruct loadConI_x41f00000(iRegI dst) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8086
  effect(DEF dst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8087
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8088
  format %{ "SETHI  HI(0x41f00000),$dst\t! 2^32" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8089
  ins_encode(SetHi22(0x41f00000, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8090
  ins_pipe(ialu_none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8091
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8092
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8093
// Construct a double from two float halves
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8094
instruct regDHi_regDLo_to_regD(regD_low dst, regD_low src1, regD_low src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8095
  effect(DEF dst, USE src1, USE src2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8096
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8097
  format %{ "FMOVS  $src1.hi,$dst.hi\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8098
            "FMOVS  $src2.lo,$dst.lo" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8099
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fmovs_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8100
  ins_encode(form3_opf_rs2D_hi_rdD_hi(src1, dst), form3_opf_rs2D_lo_rdD_lo(src2, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8101
  ins_pipe(faddD_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8102
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8103
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8104
// Convert integer in high half of a double register (in the lower half of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8105
// the double register file) to double
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8106
instruct convI2D_regDHi_regD(regD dst, regD_low src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8107
  effect(DEF dst, USE src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8108
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8109
  format %{ "FITOD  $src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8110
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fitod_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8111
  ins_encode(form3_opf_rs2D_rdD(src, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8112
  ins_pipe(fcvtLHi2D);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8113
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8114
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8115
// Add float double precision
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8116
instruct addD_regD_regD(regD dst, regD src1, regD src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8117
  effect(DEF dst, USE src1, USE src2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8118
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8119
  format %{ "FADDD  $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8120
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::faddd_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8121
  ins_encode(form3_opf_rs1D_rs2D_rdD(src1, src2, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8122
  ins_pipe(faddD_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8123
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8124
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8125
// Sub float double precision
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8126
instruct subD_regD_regD(regD dst, regD src1, regD src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8127
  effect(DEF dst, USE src1, USE src2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8128
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8129
  format %{ "FSUBD  $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8130
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fsubd_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8131
  ins_encode(form3_opf_rs1D_rs2D_rdD(src1, src2, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8132
  ins_pipe(faddD_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8133
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8134
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8135
// Mul float double precision
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8136
instruct mulD_regD_regD(regD dst, regD src1, regD src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8137
  effect(DEF dst, USE src1, USE src2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8138
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8139
  format %{ "FMULD  $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8140
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fmuld_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8141
  ins_encode(form3_opf_rs1D_rs2D_rdD(src1, src2, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8142
  ins_pipe(fmulD_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8143
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8144
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8145
instruct convL2D_reg_slow_fxtof(regD dst, stackSlotL src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8146
  match(Set dst (ConvL2D src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8147
  ins_cost(DEFAULT_COST*8 + MEMORY_REF_COST*6);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8148
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8149
  expand %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8150
    regD_low   tmpsrc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8151
    iRegI      ix43300000;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8152
    iRegI      ix41f00000;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8153
    stackSlotL lx43300000;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8154
    stackSlotL lx41f00000;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8155
    regD_low   dx43300000;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8156
    regD       dx41f00000;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8157
    regD       tmp1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8158
    regD_low   tmp2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8159
    regD       tmp3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8160
    regD       tmp4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8161
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8162
    stkL_to_regD(tmpsrc, src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8163
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8164
    loadConI_x43300000(ix43300000);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8165
    loadConI_x41f00000(ix41f00000);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8166
    regI_to_stkLHi(lx43300000, ix43300000);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8167
    regI_to_stkLHi(lx41f00000, ix41f00000);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8168
    stkL_to_regD(dx43300000, lx43300000);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8169
    stkL_to_regD(dx41f00000, lx41f00000);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8170
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8171
    convI2D_regDHi_regD(tmp1, tmpsrc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8172
    regDHi_regDLo_to_regD(tmp2, dx43300000, tmpsrc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8173
    subD_regD_regD(tmp3, tmp2, dx43300000);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8174
    mulD_regD_regD(tmp4, tmp1, dx41f00000);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8175
    addD_regD_regD(dst, tmp3, tmp4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8176
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8177
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8178
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8179
// Long to Double conversion using fast fxtof
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8180
instruct convL2D_helper(regD dst, regD tmp) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8181
  effect(DEF dst, USE tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8182
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8183
  format %{ "FXTOD  $tmp,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8184
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fxtod_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8185
  ins_encode(form3_opf_rs2D_rdD(tmp, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8186
  ins_pipe(fcvtL2D);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8187
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8188
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8189
instruct convL2D_reg_fast_fxtof(regD dst, stackSlotL src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8190
  predicate(VM_Version::has_fast_fxtof());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8191
  match(Set dst (ConvL2D src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8192
  ins_cost(DEFAULT_COST + 3 * MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8193
  expand %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8194
    regD tmp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8195
    stkL_to_regD(tmp, src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8196
    convL2D_helper(dst, tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8197
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8198
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8199
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8200
//-----------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8201
// Long to Float conversion using V8 opcodes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8202
// Still useful because cheetah traps and becomes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8203
// amazingly slow for some common numbers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8204
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8205
// Long to Float conversion using fast fxtof
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8206
instruct convL2F_helper(regF dst, regD tmp) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8207
  effect(DEF dst, USE tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8208
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8209
  format %{ "FXTOS  $tmp,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8210
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fxtos_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8211
  ins_encode(form3_opf_rs2D_rdF(tmp, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8212
  ins_pipe(fcvtL2F);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8213
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8214
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8215
instruct convL2F_reg_fast_fxtof(regF dst, stackSlotL src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8216
  match(Set dst (ConvL2F src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8217
  ins_cost(DEFAULT_COST + MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8218
  expand %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8219
    regD tmp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8220
    stkL_to_regD(tmp, src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8221
    convL2F_helper(dst, tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8222
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8223
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8224
//-----------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8225
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8226
instruct convL2I_reg(iRegI dst, iRegL src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8227
  match(Set dst (ConvL2I src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8228
#ifndef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8229
  format %{ "MOV    $src.lo,$dst\t! long->int" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8230
  ins_encode( form3_g0_rs2_rd_move_lo2( src, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8231
  ins_pipe(ialu_move_reg_I_to_L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8232
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8233
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8234
  format %{ "SRA    $src,R_G0,$dst\t! long->int" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8235
  ins_encode( form3_rs1_rd_signextend_lo1( src, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8236
  ins_pipe(ialu_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8237
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8238
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8239
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8240
// Register Shift Right Immediate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8241
instruct shrL_reg_imm6_L2I(iRegI dst, iRegL src, immI_32_63 cnt) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8242
  match(Set dst (ConvL2I (RShiftL src cnt)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8243
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8244
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8245
  format %{ "SRAX   $src,$cnt,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8246
  opcode(Assembler::srax_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8247
  ins_encode( form3_sd_rs1_imm6_rd( src, cnt, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8248
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8249
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8250
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8251
// Replicate scalar to packed byte values in Double register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8252
instruct Repl8B_reg_helper(iRegL dst, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8253
  effect(DEF dst, USE src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8254
  format %{ "SLLX  $src,56,$dst\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8255
            "SRLX  $dst, 8,O7\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8256
            "OR    $dst,O7,$dst\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8257
            "SRLX  $dst,16,O7\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8258
            "OR    $dst,O7,$dst\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8259
            "SRLX  $dst,32,O7\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8260
            "OR    $dst,O7,$dst\t! replicate8B" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8261
  ins_encode( enc_repl8b(src, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8262
  ins_pipe(ialu_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8263
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8264
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8265
// Replicate scalar to packed byte values in Double register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8266
instruct Repl8B_reg(stackSlotD dst, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8267
  match(Set dst (Replicate8B src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8268
  expand %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8269
    iRegL tmp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8270
    Repl8B_reg_helper(tmp, src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8271
    regL_to_stkD(dst, tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8272
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8273
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8274
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8275
// Replicate scalar constant to packed byte values in Double register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8276
instruct Repl8B_immI(regD dst, immI13 src, o7RegP tmp) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8277
  match(Set dst (Replicate8B src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8278
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8279
  size(36);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8280
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8281
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8282
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8283
  format %{ "SETHI  hi(&Repl8($src)),$tmp\t!get Repl8B($src) from table\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8284
            "LDDF   [$tmp+lo(&Repl8($src))],$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8285
  ins_encode( LdReplImmI(src, dst, tmp, (8), (1)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8286
  ins_pipe(loadConFD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8287
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8288
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8289
// Replicate scalar to packed char values into stack slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8290
instruct Repl4C_reg_helper(iRegL dst, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8291
  effect(DEF dst, USE src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8292
  format %{ "SLLX  $src,48,$dst\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8293
            "SRLX  $dst,16,O7\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8294
            "OR    $dst,O7,$dst\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8295
            "SRLX  $dst,32,O7\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8296
            "OR    $dst,O7,$dst\t! replicate4C" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8297
  ins_encode( enc_repl4s(src, dst) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8298
  ins_pipe(ialu_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8299
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8300
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8301
// Replicate scalar to packed char values into stack slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8302
instruct Repl4C_reg(stackSlotD dst, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8303
  match(Set dst (Replicate4C src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8304
  expand %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8305
    iRegL tmp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8306
    Repl4C_reg_helper(tmp, src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8307
    regL_to_stkD(dst, tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8308
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8309
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8310
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8311
// Replicate scalar constant to packed char values in Double register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8312
instruct Repl4C_immI(regD dst, immI src, o7RegP tmp) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8313
  match(Set dst (Replicate4C src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8314
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8315
  size(36);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8316
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8317
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8318
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8319
  format %{ "SETHI  hi(&Repl4($src)),$tmp\t!get Repl4C($src) from table\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8320
            "LDDF   [$tmp+lo(&Repl4($src))],$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8321
  ins_encode( LdReplImmI(src, dst, tmp, (4), (2)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8322
  ins_pipe(loadConFD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8323
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8324
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8325
// Replicate scalar to packed short values into stack slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8326
instruct Repl4S_reg_helper(iRegL dst, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8327
  effect(DEF dst, USE src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8328
  format %{ "SLLX  $src,48,$dst\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8329
            "SRLX  $dst,16,O7\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8330
            "OR    $dst,O7,$dst\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8331
            "SRLX  $dst,32,O7\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8332
            "OR    $dst,O7,$dst\t! replicate4S" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8333
  ins_encode( enc_repl4s(src, dst) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8334
  ins_pipe(ialu_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8335
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8336
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8337
// Replicate scalar to packed short values into stack slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8338
instruct Repl4S_reg(stackSlotD dst, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8339
  match(Set dst (Replicate4S src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8340
  expand %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8341
    iRegL tmp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8342
    Repl4S_reg_helper(tmp, src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8343
    regL_to_stkD(dst, tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8344
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8345
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8346
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8347
// Replicate scalar constant to packed short values in Double register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8348
instruct Repl4S_immI(regD dst, immI src, o7RegP tmp) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8349
  match(Set dst (Replicate4S src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8350
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8351
  size(36);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8352
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8353
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8354
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8355
  format %{ "SETHI  hi(&Repl4($src)),$tmp\t!get Repl4S($src) from table\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8356
            "LDDF   [$tmp+lo(&Repl4($src))],$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8357
  ins_encode( LdReplImmI(src, dst, tmp, (4), (2)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8358
  ins_pipe(loadConFD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8359
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8360
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8361
// Replicate scalar to packed int values in Double register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8362
instruct Repl2I_reg_helper(iRegL dst, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8363
  effect(DEF dst, USE src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8364
  format %{ "SLLX  $src,32,$dst\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8365
            "SRLX  $dst,32,O7\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8366
            "OR    $dst,O7,$dst\t! replicate2I" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8367
  ins_encode( enc_repl2i(src, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8368
  ins_pipe(ialu_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8369
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8370
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8371
// Replicate scalar to packed int values in Double register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8372
instruct Repl2I_reg(stackSlotD dst, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8373
  match(Set dst (Replicate2I src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8374
  expand %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8375
    iRegL tmp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8376
    Repl2I_reg_helper(tmp, src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8377
    regL_to_stkD(dst, tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8378
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8379
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8380
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8381
// Replicate scalar zero constant to packed int values in Double register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8382
instruct Repl2I_immI(regD dst, immI src, o7RegP tmp) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8383
  match(Set dst (Replicate2I src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8384
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8385
  size(36);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8386
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8387
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8388
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8389
  format %{ "SETHI  hi(&Repl2($src)),$tmp\t!get Repl2I($src) from table\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8390
            "LDDF   [$tmp+lo(&Repl2($src))],$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8391
  ins_encode( LdReplImmI(src, dst, tmp, (2), (4)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8392
  ins_pipe(loadConFD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8393
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8394
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8395
//----------Control Flow Instructions------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8396
// Compare Instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8397
// Compare Integers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8398
instruct compI_iReg(flagsReg icc, iRegI op1, iRegI op2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8399
  match(Set icc (CmpI op1 op2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8400
  effect( DEF icc, USE op1, USE op2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8401
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8402
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8403
  format %{ "CMP    $op1,$op2" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8404
  opcode(Assembler::subcc_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8405
  ins_encode( form3_rs1_rs2_rd( op1, op2, R_G0 ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8406
  ins_pipe(ialu_cconly_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8407
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8408
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8409
instruct compU_iReg(flagsRegU icc, iRegI op1, iRegI op2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8410
  match(Set icc (CmpU op1 op2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8411
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8412
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8413
  format %{ "CMP    $op1,$op2\t! unsigned" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8414
  opcode(Assembler::subcc_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8415
  ins_encode( form3_rs1_rs2_rd( op1, op2, R_G0 ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8416
  ins_pipe(ialu_cconly_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8417
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8418
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8419
instruct compI_iReg_imm13(flagsReg icc, iRegI op1, immI13 op2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8420
  match(Set icc (CmpI op1 op2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8421
  effect( DEF icc, USE op1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8422
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8423
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8424
  format %{ "CMP    $op1,$op2" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8425
  opcode(Assembler::subcc_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8426
  ins_encode( form3_rs1_simm13_rd( op1, op2, R_G0 ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8427
  ins_pipe(ialu_cconly_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8428
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8429
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8430
instruct testI_reg_reg( flagsReg icc, iRegI op1, iRegI op2, immI0 zero ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8431
  match(Set icc (CmpI (AndI op1 op2) zero));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8432
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8433
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8434
  format %{ "BTST   $op2,$op1" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8435
  opcode(Assembler::andcc_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8436
  ins_encode( form3_rs1_rs2_rd( op1, op2, R_G0 ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8437
  ins_pipe(ialu_cconly_reg_reg_zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8438
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8439
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8440
instruct testI_reg_imm( flagsReg icc, iRegI op1, immI13 op2, immI0 zero ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8441
  match(Set icc (CmpI (AndI op1 op2) zero));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8442
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8443
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8444
  format %{ "BTST   $op2,$op1" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8445
  opcode(Assembler::andcc_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8446
  ins_encode( form3_rs1_simm13_rd( op1, op2, R_G0 ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8447
  ins_pipe(ialu_cconly_reg_imm_zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8448
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8449
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8450
instruct compL_reg_reg(flagsRegL xcc, iRegL op1, iRegL op2 ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8451
  match(Set xcc (CmpL op1 op2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8452
  effect( DEF xcc, USE op1, USE op2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8453
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8454
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8455
  format %{ "CMP    $op1,$op2\t\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8456
  opcode(Assembler::subcc_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8457
  ins_encode( form3_rs1_rs2_rd( op1, op2, R_G0 ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8458
  ins_pipe(ialu_cconly_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8459
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8460
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8461
instruct compL_reg_con(flagsRegL xcc, iRegL op1, immL13 con) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8462
  match(Set xcc (CmpL op1 con));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8463
  effect( DEF xcc, USE op1, USE con );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8464
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8465
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8466
  format %{ "CMP    $op1,$con\t\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8467
  opcode(Assembler::subcc_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8468
  ins_encode( form3_rs1_simm13_rd( op1, con, R_G0 ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8469
  ins_pipe(ialu_cconly_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8470
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8471
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8472
instruct testL_reg_reg(flagsRegL xcc, iRegL op1, iRegL op2, immL0 zero) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8473
  match(Set xcc (CmpL (AndL op1 op2) zero));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8474
  effect( DEF xcc, USE op1, USE op2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8475
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8476
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8477
  format %{ "BTST   $op1,$op2\t\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8478
  opcode(Assembler::andcc_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8479
  ins_encode( form3_rs1_rs2_rd( op1, op2, R_G0 ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8480
  ins_pipe(ialu_cconly_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8481
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8482
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8483
// useful for checking the alignment of a pointer:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8484
instruct testL_reg_con(flagsRegL xcc, iRegL op1, immL13 con, immL0 zero) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8485
  match(Set xcc (CmpL (AndL op1 con) zero));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8486
  effect( DEF xcc, USE op1, USE con );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8487
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8488
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8489
  format %{ "BTST   $op1,$con\t\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8490
  opcode(Assembler::andcc_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8491
  ins_encode( form3_rs1_simm13_rd( op1, con, R_G0 ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8492
  ins_pipe(ialu_cconly_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8493
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8494
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8495
instruct compU_iReg_imm13(flagsRegU icc, iRegI op1, immU13 op2 ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8496
  match(Set icc (CmpU op1 op2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8497
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8498
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8499
  format %{ "CMP    $op1,$op2\t! unsigned" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8500
  opcode(Assembler::subcc_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8501
  ins_encode( form3_rs1_simm13_rd( op1, op2, R_G0 ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8502
  ins_pipe(ialu_cconly_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8503
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8504
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8505
// Compare Pointers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8506
instruct compP_iRegP(flagsRegP pcc, iRegP op1, iRegP op2 ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8507
  match(Set pcc (CmpP op1 op2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8508
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8509
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8510
  format %{ "CMP    $op1,$op2\t! ptr" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8511
  opcode(Assembler::subcc_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8512
  ins_encode( form3_rs1_rs2_rd( op1, op2, R_G0 ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8513
  ins_pipe(ialu_cconly_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8514
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8515
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8516
instruct compP_iRegP_imm13(flagsRegP pcc, iRegP op1, immP13 op2 ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8517
  match(Set pcc (CmpP op1 op2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8518
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8519
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8520
  format %{ "CMP    $op1,$op2\t! ptr" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8521
  opcode(Assembler::subcc_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8522
  ins_encode( form3_rs1_simm13_rd( op1, op2, R_G0 ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8523
  ins_pipe(ialu_cconly_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8524
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8525
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8526
// Compare Narrow oops
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8527
instruct compN_iRegN(flagsReg icc, iRegN op1, iRegN op2 ) %{
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8528
  match(Set icc (CmpN op1 op2));
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8529
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8530
  size(4);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8531
  format %{ "CMP    $op1,$op2\t! compressed ptr" %}
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8532
  opcode(Assembler::subcc_op3, Assembler::arith_op);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8533
  ins_encode( form3_rs1_rs2_rd( op1, op2, R_G0 ) );
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8534
  ins_pipe(ialu_cconly_reg_reg);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8535
%}
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8536
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8537
instruct compN_iRegN_immN0(flagsReg icc, iRegN op1, immN0 op2 ) %{
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8538
  match(Set icc (CmpN op1 op2));
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8539
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8540
  size(4);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8541
  format %{ "CMP    $op1,$op2\t! compressed ptr" %}
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8542
  opcode(Assembler::subcc_op3, Assembler::arith_op);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8543
  ins_encode( form3_rs1_simm13_rd( op1, op2, R_G0 ) );
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8544
  ins_pipe(ialu_cconly_reg_imm);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8545
%}
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8546
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8547
//----------Max and Min--------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8548
// Min Instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8549
// Conditional move for min
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8550
instruct cmovI_reg_lt( iRegI op2, iRegI op1, flagsReg icc ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8551
  effect( USE_DEF op2, USE op1, USE icc );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8552
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8553
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8554
  format %{ "MOVlt  icc,$op1,$op2\t! min" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8555
  opcode(Assembler::less);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8556
  ins_encode( enc_cmov_reg_minmax(op2,op1) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8557
  ins_pipe(ialu_reg_flags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8558
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8559
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8560
// Min Register with Register.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8561
instruct minI_eReg(iRegI op1, iRegI op2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8562
  match(Set op2 (MinI op1 op2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8563
  ins_cost(DEFAULT_COST*2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8564
  expand %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8565
    flagsReg icc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8566
    compI_iReg(icc,op1,op2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8567
    cmovI_reg_lt(op2,op1,icc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8568
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8569
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8570
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8571
// Max Instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8572
// Conditional move for max
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8573
instruct cmovI_reg_gt( iRegI op2, iRegI op1, flagsReg icc ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8574
  effect( USE_DEF op2, USE op1, USE icc );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8575
  format %{ "MOVgt  icc,$op1,$op2\t! max" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8576
  opcode(Assembler::greater);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8577
  ins_encode( enc_cmov_reg_minmax(op2,op1) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8578
  ins_pipe(ialu_reg_flags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8579
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8580
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8581
// Max Register with Register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8582
instruct maxI_eReg(iRegI op1, iRegI op2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8583
  match(Set op2 (MaxI op1 op2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8584
  ins_cost(DEFAULT_COST*2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8585
  expand %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8586
    flagsReg icc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8587
    compI_iReg(icc,op1,op2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8588
    cmovI_reg_gt(op2,op1,icc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8589
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8590
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8591
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8592
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8593
//----------Float Compares----------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8594
// Compare floating, generate condition code
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8595
instruct cmpF_cc(flagsRegF fcc, regF src1, regF src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8596
  match(Set fcc (CmpF src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8597
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8598
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8599
  format %{ "FCMPs  $fcc,$src1,$src2" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8600
  opcode(Assembler::fpop2_op3, Assembler::arith_op, Assembler::fcmps_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8601
  ins_encode( form3_opf_rs1F_rs2F_fcc( src1, src2, fcc ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8602
  ins_pipe(faddF_fcc_reg_reg_zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8603
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8604
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8605
instruct cmpD_cc(flagsRegF fcc, regD src1, regD src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8606
  match(Set fcc (CmpD src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8607
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8608
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8609
  format %{ "FCMPd  $fcc,$src1,$src2" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8610
  opcode(Assembler::fpop2_op3, Assembler::arith_op, Assembler::fcmpd_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8611
  ins_encode( form3_opf_rs1D_rs2D_fcc( src1, src2, fcc ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8612
  ins_pipe(faddD_fcc_reg_reg_zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8613
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8614
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8615
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8616
// Compare floating, generate -1,0,1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8617
instruct cmpF_reg(iRegI dst, regF src1, regF src2, flagsRegF0 fcc0) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8618
  match(Set dst (CmpF3 src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8619
  effect(KILL fcc0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8620
  ins_cost(DEFAULT_COST*3+BRANCH_COST*3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8621
  format %{ "fcmpl  $dst,$src1,$src2" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8622
  // Primary = float
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8623
  opcode( true );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8624
  ins_encode( floating_cmp( dst, src1, src2 ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8625
  ins_pipe( floating_cmp );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8626
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8627
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8628
instruct cmpD_reg(iRegI dst, regD src1, regD src2, flagsRegF0 fcc0) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8629
  match(Set dst (CmpD3 src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8630
  effect(KILL fcc0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8631
  ins_cost(DEFAULT_COST*3+BRANCH_COST*3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8632
  format %{ "dcmpl  $dst,$src1,$src2" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8633
  // Primary = double (not float)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8634
  opcode( false );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8635
  ins_encode( floating_cmp( dst, src1, src2 ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8636
  ins_pipe( floating_cmp );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8637
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8638
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8639
//----------Branches---------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8640
// Jump
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8641
// (compare 'operand indIndex' and 'instruct addP_reg_reg' above)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8642
instruct jumpXtnd(iRegX switch_val, o7RegI table) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8643
  match(Jump switch_val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8644
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8645
  ins_cost(350);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8646
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8647
  format %{  "SETHI  [hi(table_base)],O7\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8648
             "ADD    O7, lo(table_base), O7\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8649
             "LD     [O7+$switch_val], O7\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8650
             "JUMP   O7"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8651
         %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8652
  ins_encode( jump_enc( switch_val, table) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8653
  ins_pc_relative(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8654
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8655
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8656
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8657
// Direct Branch.  Use V8 version with longer range.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8658
instruct branch(label labl) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8659
  match(Goto);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8660
  effect(USE labl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8661
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8662
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8663
  ins_cost(BRANCH_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8664
  format %{ "BA     $labl" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8665
  // Prim = bits 24-22, Secnd = bits 31-30, Tert = cond
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8666
  opcode(Assembler::br_op2, Assembler::branch_op, Assembler::always);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8667
  ins_encode( enc_ba( labl ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8668
  ins_pc_relative(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8669
  ins_pipe(br);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8670
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8671
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8672
// Conditional Direct Branch
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8673
instruct branchCon(cmpOp cmp, flagsReg icc, label labl) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8674
  match(If cmp icc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8675
  effect(USE labl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8676
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8677
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8678
  ins_cost(BRANCH_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8679
  format %{ "BP$cmp   $icc,$labl" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8680
  // Prim = bits 24-22, Secnd = bits 31-30
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8681
  ins_encode( enc_bp( labl, cmp, icc ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8682
  ins_pc_relative(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8683
  ins_pipe(br_cc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8684
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8685
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8686
// Branch-on-register tests all 64 bits.  We assume that values
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8687
// in 64-bit registers always remains zero or sign extended
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8688
// unless our code munges the high bits.  Interrupts can chop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8689
// the high order bits to zero or sign at any time.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8690
instruct branchCon_regI(cmpOp_reg cmp, iRegI op1, immI0 zero, label labl) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8691
  match(If cmp (CmpI op1 zero));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8692
  predicate(can_branch_register(_kids[0]->_leaf, _kids[1]->_leaf));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8693
  effect(USE labl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8694
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8695
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8696
  ins_cost(BRANCH_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8697
  format %{ "BR$cmp   $op1,$labl" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8698
  ins_encode( enc_bpr( labl, cmp, op1 ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8699
  ins_pc_relative(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8700
  ins_pipe(br_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8701
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8702
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8703
instruct branchCon_regP(cmpOp_reg cmp, iRegP op1, immP0 null, label labl) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8704
  match(If cmp (CmpP op1 null));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8705
  predicate(can_branch_register(_kids[0]->_leaf, _kids[1]->_leaf));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8706
  effect(USE labl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8707
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8708
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8709
  ins_cost(BRANCH_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8710
  format %{ "BR$cmp   $op1,$labl" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8711
  ins_encode( enc_bpr( labl, cmp, op1 ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8712
  ins_pc_relative(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8713
  ins_pipe(br_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8714
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8715
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8716
instruct branchCon_regL(cmpOp_reg cmp, iRegL op1, immL0 zero, label labl) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8717
  match(If cmp (CmpL op1 zero));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8718
  predicate(can_branch_register(_kids[0]->_leaf, _kids[1]->_leaf));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8719
  effect(USE labl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8720
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8721
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8722
  ins_cost(BRANCH_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8723
  format %{ "BR$cmp   $op1,$labl" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8724
  ins_encode( enc_bpr( labl, cmp, op1 ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8725
  ins_pc_relative(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8726
  ins_pipe(br_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8727
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8728
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8729
instruct branchConU(cmpOpU cmp, flagsRegU icc, label labl) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8730
  match(If cmp icc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8731
  effect(USE labl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8732
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8733
  format %{ "BP$cmp  $icc,$labl" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8734
  // Prim = bits 24-22, Secnd = bits 31-30
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8735
  ins_encode( enc_bp( labl, cmp, icc ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8736
  ins_pc_relative(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8737
  ins_pipe(br_cc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8738
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8739
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8740
instruct branchConP(cmpOpP cmp, flagsRegP pcc, label labl) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8741
  match(If cmp pcc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8742
  effect(USE labl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8743
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8744
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8745
  ins_cost(BRANCH_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8746
  format %{ "BP$cmp  $pcc,$labl" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8747
  // Prim = bits 24-22, Secnd = bits 31-30
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8748
  ins_encode( enc_bpx( labl, cmp, pcc ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8749
  ins_pc_relative(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8750
  ins_pipe(br_cc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8751
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8752
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8753
instruct branchConF(cmpOpF cmp, flagsRegF fcc, label labl) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8754
  match(If cmp fcc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8755
  effect(USE labl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8756
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8757
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8758
  ins_cost(BRANCH_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8759
  format %{ "FBP$cmp $fcc,$labl" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8760
  // Prim = bits 24-22, Secnd = bits 31-30
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8761
  ins_encode( enc_fbp( labl, cmp, fcc ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8762
  ins_pc_relative(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8763
  ins_pipe(br_fcc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8764
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8765
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8766
instruct branchLoopEnd(cmpOp cmp, flagsReg icc, label labl) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8767
  match(CountedLoopEnd cmp icc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8768
  effect(USE labl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8769
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8770
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8771
  ins_cost(BRANCH_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8772
  format %{ "BP$cmp   $icc,$labl\t! Loop end" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8773
  // Prim = bits 24-22, Secnd = bits 31-30
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8774
  ins_encode( enc_bp( labl, cmp, icc ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8775
  ins_pc_relative(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8776
  ins_pipe(br_cc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8777
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8778
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8779
instruct branchLoopEndU(cmpOpU cmp, flagsRegU icc, label labl) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8780
  match(CountedLoopEnd cmp icc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8781
  effect(USE labl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8782
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8783
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8784
  ins_cost(BRANCH_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8785
  format %{ "BP$cmp  $icc,$labl\t! Loop end" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8786
  // Prim = bits 24-22, Secnd = bits 31-30
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8787
  ins_encode( enc_bp( labl, cmp, icc ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8788
  ins_pc_relative(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8789
  ins_pipe(br_cc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8790
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8791
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8792
// ============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8793
// Long Compare
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8794
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8795
// Currently we hold longs in 2 registers.  Comparing such values efficiently
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8796
// is tricky.  The flavor of compare used depends on whether we are testing
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8797
// for LT, LE, or EQ.  For a simple LT test we can check just the sign bit.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8798
// The GE test is the negated LT test.  The LE test can be had by commuting
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8799
// the operands (yielding a GE test) and then negating; negate again for the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8800
// GT test.  The EQ test is done by ORcc'ing the high and low halves, and the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8801
// NE test is negated from that.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8802
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8803
// Due to a shortcoming in the ADLC, it mixes up expressions like:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8804
// (foo (CmpI (CmpL X Y) 0)) and (bar (CmpI (CmpL X 0L) 0)).  Note the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8805
// difference between 'Y' and '0L'.  The tree-matches for the CmpI sections
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8806
// are collapsed internally in the ADLC's dfa-gen code.  The match for
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8807
// (CmpI (CmpL X Y) 0) is silently replaced with (CmpI (CmpL X 0L) 0) and the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8808
// foo match ends up with the wrong leaf.  One fix is to not match both
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8809
// reg-reg and reg-zero forms of long-compare.  This is unfortunate because
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8810
// both forms beat the trinary form of long-compare and both are very useful
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8811
// on Intel which has so few registers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8812
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8813
instruct branchCon_long(cmpOp cmp, flagsRegL xcc, label labl) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8814
  match(If cmp xcc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8815
  effect(USE labl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8816
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8817
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8818
  ins_cost(BRANCH_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8819
  format %{ "BP$cmp   $xcc,$labl" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8820
  // Prim = bits 24-22, Secnd = bits 31-30
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8821
  ins_encode( enc_bpl( labl, cmp, xcc ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8822
  ins_pc_relative(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8823
  ins_pipe(br_cc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8824
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8825
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8826
// Manifest a CmpL3 result in an integer register.  Very painful.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8827
// This is the test to avoid.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8828
instruct cmpL3_reg_reg(iRegI dst, iRegL src1, iRegL src2, flagsReg ccr ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8829
  match(Set dst (CmpL3 src1 src2) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8830
  effect( KILL ccr );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8831
  ins_cost(6*DEFAULT_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8832
  size(24);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8833
  format %{ "CMP    $src1,$src2\t\t! long\n"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8834
          "\tBLT,a,pn done\n"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8835
          "\tMOV    -1,$dst\t! delay slot\n"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8836
          "\tBGT,a,pn done\n"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8837
          "\tMOV    1,$dst\t! delay slot\n"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8838
          "\tCLR    $dst\n"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8839
    "done:"     %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8840
  ins_encode( cmpl_flag(src1,src2,dst) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8841
  ins_pipe(cmpL_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8842
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8843
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8844
// Conditional move
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8845
instruct cmovLL_reg(cmpOp cmp, flagsRegL xcc, iRegL dst, iRegL src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8846
  match(Set dst (CMoveL (Binary cmp xcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8847
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8848
  format %{ "MOV$cmp  $xcc,$src,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8849
  ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::xcc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8850
  ins_pipe(ialu_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8851
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8852
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8853
instruct cmovLL_imm(cmpOp cmp, flagsRegL xcc, iRegL dst, immL0 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8854
  match(Set dst (CMoveL (Binary cmp xcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8855
  ins_cost(140);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8856
  format %{ "MOV$cmp  $xcc,$src,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8857
  ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::xcc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8858
  ins_pipe(ialu_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8859
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8860
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8861
instruct cmovIL_reg(cmpOp cmp, flagsRegL xcc, iRegI dst, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8862
  match(Set dst (CMoveI (Binary cmp xcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8863
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8864
  format %{ "MOV$cmp  $xcc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8865
  ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::xcc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8866
  ins_pipe(ialu_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8867
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8868
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8869
instruct cmovIL_imm(cmpOp cmp, flagsRegL xcc, iRegI dst, immI11 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8870
  match(Set dst (CMoveI (Binary cmp xcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8871
  ins_cost(140);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8872
  format %{ "MOV$cmp  $xcc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8873
  ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::xcc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8874
  ins_pipe(ialu_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8875
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8876
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8877
instruct cmovNL_reg(cmpOp cmp, flagsRegL xcc, iRegN dst, iRegN src) %{
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8878
  match(Set dst (CMoveN (Binary cmp xcc) (Binary dst src)));
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8879
  ins_cost(150);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8880
  format %{ "MOV$cmp  $xcc,$src,$dst" %}
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8881
  ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::xcc)) );
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8882
  ins_pipe(ialu_reg);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8883
%}
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8884
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8885
instruct cmovPL_reg(cmpOp cmp, flagsRegL xcc, iRegP dst, iRegP src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8886
  match(Set dst (CMoveP (Binary cmp xcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8887
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8888
  format %{ "MOV$cmp  $xcc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8889
  ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::xcc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8890
  ins_pipe(ialu_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8891
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8892
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8893
instruct cmovPL_imm(cmpOp cmp, flagsRegL xcc, iRegP dst, immP0 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8894
  match(Set dst (CMoveP (Binary cmp xcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8895
  ins_cost(140);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8896
  format %{ "MOV$cmp  $xcc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8897
  ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::xcc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8898
  ins_pipe(ialu_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8899
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8900
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8901
instruct cmovFL_reg(cmpOp cmp, flagsRegL xcc, regF dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8902
  match(Set dst (CMoveF (Binary cmp xcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8903
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8904
  opcode(0x101);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8905
  format %{ "FMOVS$cmp $xcc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8906
  ins_encode( enc_cmovf_reg(cmp,dst,src, (Assembler::xcc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8907
  ins_pipe(int_conditional_float_move);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8908
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8909
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8910
instruct cmovDL_reg(cmpOp cmp, flagsRegL xcc, regD dst, regD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8911
  match(Set dst (CMoveD (Binary cmp xcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8912
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8913
  opcode(0x102);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8914
  format %{ "FMOVD$cmp $xcc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8915
  ins_encode( enc_cmovf_reg(cmp,dst,src, (Assembler::xcc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8916
  ins_pipe(int_conditional_float_move);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8917
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8918
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8919
// ============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8920
// Safepoint Instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8921
instruct safePoint_poll(iRegP poll) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8922
  match(SafePoint poll);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8923
  effect(USE poll);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8924
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8925
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8926
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8927
  format %{ "LDX    [$poll],R_G0\t! Safepoint: poll for GC" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8928
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8929
  format %{ "LDUW   [$poll],R_G0\t! Safepoint: poll for GC" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8930
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8931
  ins_encode %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8932
    __ relocate(relocInfo::poll_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8933
    __ ld_ptr($poll$$Register, 0, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8934
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8935
  ins_pipe(loadPollP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8936
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8937
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8938
// ============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8939
// Call Instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8940
// Call Java Static Instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8941
instruct CallStaticJavaDirect( method meth ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8942
  match(CallStaticJava);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8943
  effect(USE meth);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8944
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8945
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8946
  ins_cost(CALL_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8947
  format %{ "CALL,static  ; NOP ==> " %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8948
  ins_encode( Java_Static_Call( meth ), call_epilog );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8949
  ins_pc_relative(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8950
  ins_pipe(simple_call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8951
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8952
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8953
// Call Java Dynamic Instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8954
instruct CallDynamicJavaDirect( method meth ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8955
  match(CallDynamicJava);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8956
  effect(USE meth);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8957
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8958
  ins_cost(CALL_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8959
  format %{ "SET    (empty),R_G5\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8960
            "CALL,dynamic  ; NOP ==> " %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8961
  ins_encode( Java_Dynamic_Call( meth ), call_epilog );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8962
  ins_pc_relative(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8963
  ins_pipe(call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8964
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8965
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8966
// Call Runtime Instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8967
instruct CallRuntimeDirect(method meth, l7RegP l7) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8968
  match(CallRuntime);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8969
  effect(USE meth, KILL l7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8970
  ins_cost(CALL_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8971
  format %{ "CALL,runtime" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8972
  ins_encode( Java_To_Runtime( meth ),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8973
              call_epilog, adjust_long_from_native_call );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8974
  ins_pc_relative(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8975
  ins_pipe(simple_call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8976
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8977
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8978
// Call runtime without safepoint - same as CallRuntime
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8979
instruct CallLeafDirect(method meth, l7RegP l7) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8980
  match(CallLeaf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8981
  effect(USE meth, KILL l7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8982
  ins_cost(CALL_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8983
  format %{ "CALL,runtime leaf" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8984
  ins_encode( Java_To_Runtime( meth ),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8985
              call_epilog,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8986
              adjust_long_from_native_call );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8987
  ins_pc_relative(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8988
  ins_pipe(simple_call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8989
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8990
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8991
// Call runtime without safepoint - same as CallLeaf
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8992
instruct CallLeafNoFPDirect(method meth, l7RegP l7) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8993
  match(CallLeafNoFP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8994
  effect(USE meth, KILL l7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8995
  ins_cost(CALL_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8996
  format %{ "CALL,runtime leaf nofp" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8997
  ins_encode( Java_To_Runtime( meth ),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8998
              call_epilog,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8999
              adjust_long_from_native_call );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9000
  ins_pc_relative(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9001
  ins_pipe(simple_call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9002
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9003
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9004
// Tail Call; Jump from runtime stub to Java code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9005
// Also known as an 'interprocedural jump'.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9006
// Target of jump will eventually return to caller.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9007
// TailJump below removes the return address.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9008
instruct TailCalljmpInd(g3RegP jump_target, inline_cache_regP method_oop) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9009
  match(TailCall jump_target method_oop );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9010
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9011
  ins_cost(CALL_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9012
  format %{ "Jmp     $jump_target  ; NOP \t! $method_oop holds method oop" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9013
  ins_encode(form_jmpl(jump_target));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9014
  ins_pipe(tail_call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9015
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9016
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9017
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9018
// Return Instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9019
instruct Ret() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9020
  match(Return);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9021
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9022
  // The epilogue node did the ret already.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9023
  size(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9024
  format %{ "! return" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9025
  ins_encode();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9026
  ins_pipe(empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9027
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9028
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9029
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9030
// Tail Jump; remove the return address; jump to target.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9031
// TailCall above leaves the return address around.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9032
// TailJump is used in only one place, the rethrow_Java stub (fancy_jump=2).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9033
// ex_oop (Exception Oop) is needed in %o0 at the jump. As there would be a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9034
// "restore" before this instruction (in Epilogue), we need to materialize it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9035
// in %i0.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9036
instruct tailjmpInd(g1RegP jump_target, i0RegP ex_oop) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9037
  match( TailJump jump_target ex_oop );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9038
  ins_cost(CALL_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9039
  format %{ "! discard R_O7\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9040
            "Jmp     $jump_target  ; ADD O7,8,O1 \t! $ex_oop holds exc. oop" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9041
  ins_encode(form_jmpl_set_exception_pc(jump_target));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9042
  // opcode(Assembler::jmpl_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9043
  // The hack duplicates the exception oop into G3, so that CreateEx can use it there.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9044
  // ins_encode( form3_rs1_simm13_rd( jump_target, 0x00, R_G0 ), move_return_pc_to_o1() );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9045
  ins_pipe(tail_call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9046
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9047
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9048
// Create exception oop: created by stack-crawling runtime code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9049
// Created exception is now available to this handler, and is setup
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9050
// just prior to jumping to this handler.  No code emitted.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9051
instruct CreateException( o0RegP ex_oop )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9052
%{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9053
  match(Set ex_oop (CreateEx));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9054
  ins_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9055
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9056
  size(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9057
  // use the following format syntax
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9058
  format %{ "! exception oop is in R_O0; no code emitted" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9059
  ins_encode();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9060
  ins_pipe(empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9061
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9062
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9063
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9064
// Rethrow exception:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9065
// The exception oop will come in the first argument position.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9066
// Then JUMP (not call) to the rethrow stub code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9067
instruct RethrowException()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9068
%{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9069
  match(Rethrow);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9070
  ins_cost(CALL_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9071
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9072
  // use the following format syntax
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9073
  format %{ "Jmp    rethrow_stub" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9074
  ins_encode(enc_rethrow);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9075
  ins_pipe(tail_call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9076
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9077
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9078
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9079
// Die now
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9080
instruct ShouldNotReachHere( )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9081
%{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9082
  match(Halt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9083
  ins_cost(CALL_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9084
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9085
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9086
  // Use the following format syntax
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9087
  format %{ "ILLTRAP   ; ShouldNotReachHere" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9088
  ins_encode( form2_illtrap() );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9089
  ins_pipe(tail_call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9090
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9091
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9092
// ============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9093
// The 2nd slow-half of a subtype check.  Scan the subklass's 2ndary superklass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9094
// array for an instance of the superklass.  Set a hidden internal cache on a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9095
// hit (cache is checked with exposed code in gen_subtype_check()).  Return
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9096
// not zero for a miss or zero for a hit.  The encoding ALSO sets flags.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9097
instruct partialSubtypeCheck( o0RegP index, o1RegP sub, o2RegP super, flagsRegP pcc, o7RegP o7 ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9098
  match(Set index (PartialSubtypeCheck sub super));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9099
  effect( KILL pcc, KILL o7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9100
  ins_cost(DEFAULT_COST*10);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9101
  format %{ "CALL   PartialSubtypeCheck\n\tNOP" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9102
  ins_encode( enc_PartialSubtypeCheck() );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9103
  ins_pipe(partial_subtype_check_pipe);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9104
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9105
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9106
instruct partialSubtypeCheck_vs_zero( flagsRegP pcc, o1RegP sub, o2RegP super, immP0 zero, o0RegP idx, o7RegP o7 ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9107
  match(Set pcc (CmpP (PartialSubtypeCheck sub super) zero));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9108
  effect( KILL idx, KILL o7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9109
  ins_cost(DEFAULT_COST*10);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9110
  format %{ "CALL   PartialSubtypeCheck\n\tNOP\t# (sets condition codes)" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9111
  ins_encode( enc_PartialSubtypeCheck() );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9112
  ins_pipe(partial_subtype_check_pipe);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9113
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9114
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  9115
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9116
// ============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9117
// inlined locking and unlocking
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9118
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9119
instruct cmpFastLock(flagsRegP pcc, iRegP object, iRegP box, iRegP scratch2, o7RegP scratch ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9120
  match(Set pcc (FastLock object box));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9121
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9122
  effect(KILL scratch, TEMP scratch2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9123
  ins_cost(100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9124
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9125
  size(4*112);       // conservative overestimation ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9126
  format %{ "FASTLOCK  $object, $box; KILL $scratch, $scratch2, $box" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9127
  ins_encode( Fast_Lock(object, box, scratch, scratch2) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9128
  ins_pipe(long_memory_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9129
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9130
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9131
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9132
instruct cmpFastUnlock(flagsRegP pcc, iRegP object, iRegP box, iRegP scratch2, o7RegP scratch ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9133
  match(Set pcc (FastUnlock object box));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9134
  effect(KILL scratch, TEMP scratch2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9135
  ins_cost(100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9136
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9137
  size(4*120);       // conservative overestimation ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9138
  format %{ "FASTUNLOCK  $object, $box; KILL $scratch, $scratch2, $box" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9139
  ins_encode( Fast_Unlock(object, box, scratch, scratch2) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9140
  ins_pipe(long_memory_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9141
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9142
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9143
// Count and Base registers are fixed because the allocator cannot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9144
// kill unknown registers.  The encodings are generic.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9145
instruct clear_array(iRegX cnt, iRegP base, iRegX temp, Universe dummy, flagsReg ccr) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9146
  match(Set dummy (ClearArray cnt base));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9147
  effect(TEMP temp, KILL ccr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9148
  ins_cost(300);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9149
  format %{ "MOV    $cnt,$temp\n"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9150
    "loop:   SUBcc  $temp,8,$temp\t! Count down a dword of bytes\n"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9151
    "        BRge   loop\t\t! Clearing loop\n"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9152
    "        STX    G0,[$base+$temp]\t! delay slot" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9153
  ins_encode( enc_Clear_Array(cnt, base, temp) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9154
  ins_pipe(long_memory_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9155
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9156
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  9157
instruct string_compare(o0RegP str1, o1RegP str2, g3RegP tmp1, g4RegP tmp2, notemp_iRegI result,
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  9158
                        o7RegI tmp3, flagsReg ccr) %{
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9159
  match(Set result (StrComp str1 str2));
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  9160
  effect(USE_KILL str1, USE_KILL str2, KILL tmp1, KILL tmp2, KILL ccr, KILL tmp3);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9161
  ins_cost(300);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9162
  format %{ "String Compare $str1,$str2 -> $result" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9163
  ins_encode( enc_String_Compare(str1, str2, tmp1, tmp2, result) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9164
  ins_pipe(long_memory_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9165
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9166
2348
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  9167
instruct string_equals(o0RegP str1, o1RegP str2, g3RegP tmp1, g4RegP tmp2, notemp_iRegI result,
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  9168
                       o7RegI tmp3, flagsReg ccr) %{
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  9169
  match(Set result (StrEquals str1 str2));
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  9170
  effect(USE_KILL str1, USE_KILL str2, KILL tmp1, KILL tmp2, KILL ccr, KILL tmp3);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  9171
  ins_cost(300);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  9172
  format %{ "String Equals $str1,$str2 -> $result" %}
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  9173
  ins_encode( enc_String_Equals(str1, str2, tmp1, tmp2, result) );
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  9174
  ins_pipe(long_memory_op);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  9175
%}
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  9176
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  9177
instruct array_equals(o0RegP ary1, o1RegP ary2, g3RegP tmp1, g4RegP tmp2, notemp_iRegI result,
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  9178
                        flagsReg ccr) %{
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  9179
  match(Set result (AryEq ary1 ary2));
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  9180
  effect(USE_KILL ary1, USE_KILL ary2, KILL tmp1, KILL tmp2, KILL ccr);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  9181
  ins_cost(300);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  9182
  format %{ "Array Equals $ary1,$ary2 -> $result" %}
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  9183
  ins_encode( enc_Array_Equals(ary1, ary2, tmp1, tmp2, result));
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  9184
  ins_pipe(long_memory_op);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
  9185
%}
2255
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
  9186
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
  9187
//---------- Population Count Instructions -------------------------------------
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
  9188
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
  9189
instruct popCountI(iRegI dst, iRegI src) %{
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
  9190
  predicate(UsePopCountInstruction);
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
  9191
  match(Set dst (PopCountI src));
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
  9192
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
  9193
  format %{ "POPC   $src, $dst" %}
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
  9194
  ins_encode %{
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
  9195
    __ popc($src$$Register, $dst$$Register);
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
  9196
  %}
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
  9197
  ins_pipe(ialu_reg);
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
  9198
%}
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
  9199
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
  9200
// Note: Long.bitCount(long) returns an int.
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
  9201
instruct popCountL(iRegI dst, iRegL src) %{
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
  9202
  predicate(UsePopCountInstruction);
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
  9203
  match(Set dst (PopCountL src));
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
  9204
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
  9205
  format %{ "POPC   $src, $dst" %}
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
  9206
  ins_encode %{
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
  9207
    __ popc($src$$Register, $dst$$Register);
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
  9208
  %}
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
  9209
  ins_pipe(ialu_reg);
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
  9210
%}
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
  9211
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
  9212
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9213
// ============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9214
//------------Bytes reverse--------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9215
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9216
instruct bytes_reverse_int(iRegI dst, stackSlotI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9217
  match(Set dst (ReverseBytesI src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9218
  effect(DEF dst, USE src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9219
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9220
  // Op cost is artificially doubled to make sure that load or store
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9221
  // instructions are preferred over this one which requires a spill
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9222
  // onto a stack slot.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9223
  ins_cost(2*DEFAULT_COST + MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9224
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9225
  format %{ "LDUWA  $src, $dst\t!asi=primary_little" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9226
  opcode(Assembler::lduwa_op3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9227
  ins_encode( form3_mem_reg_little(src, dst) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9228
  ins_pipe( iload_mem );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9229
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9230
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9231
instruct bytes_reverse_long(iRegL dst, stackSlotL src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9232
  match(Set dst (ReverseBytesL src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9233
  effect(DEF dst, USE src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9234
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9235
  // Op cost is artificially doubled to make sure that load or store
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9236
  // instructions are preferred over this one which requires a spill
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9237
  // onto a stack slot.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9238
  ins_cost(2*DEFAULT_COST + MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9239
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9240
  format %{ "LDXA   $src, $dst\t!asi=primary_little" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9241
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9242
  opcode(Assembler::ldxa_op3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9243
  ins_encode( form3_mem_reg_little(src, dst) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9244
  ins_pipe( iload_mem );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9245
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9246
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9247
// Load Integer reversed byte order
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9248
instruct loadI_reversed(iRegI dst, memory src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9249
  match(Set dst (ReverseBytesI (LoadI src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9250
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9251
  ins_cost(DEFAULT_COST + MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9252
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9253
  format %{ "LDUWA  $src, $dst\t!asi=primary_little" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9254
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9255
  opcode(Assembler::lduwa_op3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9256
  ins_encode( form3_mem_reg_little( src, dst) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9257
  ins_pipe(iload_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9258
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9259
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9260
// Load Long - aligned and reversed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9261
instruct loadL_reversed(iRegL dst, memory src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9262
  match(Set dst (ReverseBytesL (LoadL src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9263
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9264
  ins_cost(DEFAULT_COST + MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9265
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9266
  format %{ "LDXA   $src, $dst\t!asi=primary_little" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9267
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9268
  opcode(Assembler::ldxa_op3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9269
  ins_encode( form3_mem_reg_little( src, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9270
  ins_pipe(iload_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9271
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9272
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9273
// Store Integer reversed byte order
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9274
instruct storeI_reversed(memory dst, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9275
  match(Set dst (StoreI dst (ReverseBytesI src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9276
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9277
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9278
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9279
  format %{ "STWA   $src, $dst\t!asi=primary_little" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9280
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9281
  opcode(Assembler::stwa_op3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9282
  ins_encode( form3_mem_reg_little( dst, src) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9283
  ins_pipe(istore_mem_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9284
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9285
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9286
// Store Long reversed byte order
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9287
instruct storeL_reversed(memory dst, iRegL src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9288
  match(Set dst (StoreL dst (ReverseBytesL src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9289
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9290
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9291
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9292
  format %{ "STXA   $src, $dst\t!asi=primary_little" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9293
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9294
  opcode(Assembler::stxa_op3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9295
  ins_encode( form3_mem_reg_little( dst, src) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9296
  ins_pipe(istore_mem_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9297
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9298
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9299
//----------PEEPHOLE RULES-----------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9300
// These must follow all instruction definitions as they use the names
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9301
// defined in the instructions definitions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9302
//
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 2022
diff changeset
  9303
// peepmatch ( root_instr_name [preceding_instruction]* );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9304
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9305
// peepconstraint %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9306
// (instruction_number.operand_name relational_op instruction_number.operand_name
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9307
//  [, ...] );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9308
// // instruction numbers are zero-based using left to right order in peepmatch
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9309
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9310
// peepreplace ( instr_name  ( [instruction_number.operand_name]* ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9311
// // provide an instruction_number.operand_name for each operand that appears
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9312
// // in the replacement instruction's match rule
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9313
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9314
// ---------VM FLAGS---------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9315
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9316
// All peephole optimizations can be turned off using -XX:-OptoPeephole
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9317
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9318
// Each peephole rule is given an identifying number starting with zero and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9319
// increasing by one in the order seen by the parser.  An individual peephole
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9320
// can be enabled, and all others disabled, by using -XX:OptoPeepholeAt=#
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9321
// on the command-line.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9322
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9323
// ---------CURRENT LIMITATIONS----------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9324
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9325
// Only match adjacent instructions in same basic block
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9326
// Only equality constraints
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9327
// Only constraints between operands, not (0.dest_reg == EAX_enc)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9328
// Only one replacement instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9329
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9330
// ---------EXAMPLE----------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9331
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9332
// // pertinent parts of existing instructions in architecture description
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9333
// instruct movI(eRegI dst, eRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9334
//   match(Set dst (CopyI src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9335
// %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9336
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9337
// instruct incI_eReg(eRegI dst, immI1 src, eFlagsReg cr) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9338
//   match(Set dst (AddI dst src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9339
//   effect(KILL cr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9340
// %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9341
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9342
// // Change (inc mov) to lea
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9343
// peephole %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9344
//   // increment preceeded by register-register move
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9345
//   peepmatch ( incI_eReg movI );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9346
//   // require that the destination register of the increment
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9347
//   // match the destination register of the move
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9348
//   peepconstraint ( 0.dst == 1.dst );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9349
//   // construct a replacement instruction that sets
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9350
//   // the destination to ( move's source register + one )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9351
//   peepreplace ( incI_eReg_immI1( 0.dst 1.src 0.src ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9352
// %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9353
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9354
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9355
// // Change load of spilled value to only a spill
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9356
// instruct storeI(memory mem, eRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9357
//   match(Set mem (StoreI mem src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9358
// %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9359
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9360
// instruct loadI(eRegI dst, memory mem) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9361
//   match(Set dst (LoadI mem));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9362
// %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9363
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9364
// peephole %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9365
//   peepmatch ( loadI storeI );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9366
//   peepconstraint ( 1.src == 0.dst, 1.mem == 0.mem );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9367
//   peepreplace ( storeI( 1.mem 1.mem 1.src ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9368
// %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9369
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9370
//----------SMARTSPILL RULES---------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9371
// These must follow all instruction definitions as they use the names
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9372
// defined in the instructions definitions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9373
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9374
// SPARC will probably not have any of these rules due to RISC instruction set.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9375
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9376
//----------PIPELINE-----------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9377
// Rules which define the behavior of the target architectures pipeline.