src/hotspot/cpu/sparc/sparc.ad
author roland
Mon, 23 Sep 2019 16:49:09 +0200
changeset 58311 88fce7eea1f6
parent 58019 86b95fc6ca32
permissions -rw-r--r--
8229483: Sinking load out of loop may trigger: assert(found_sfpt) failed: no node in loop that's not input to safepoint Reviewed-by: thartmann, neliasso
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
//
54960
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 54780
diff changeset
     2
// Copyright (c) 1998, 2019, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
// DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
// This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
// under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
// published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
// This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
// version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
// accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
// You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
// 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
// Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
//
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5352
diff changeset
    19
// Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5352
diff changeset
    20
// or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5352
diff changeset
    21
// questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
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.
4010
7467ebf34334 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 3905
diff changeset
   196
reg_def R_D32 (SOC, SOC, Op_RegD,  1, F32->as_VMReg());
7467ebf34334 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 3905
diff changeset
   197
reg_def R_D32x(SOC, SOC, Op_RegD,255, F32->as_VMReg()->next());
7467ebf34334 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 3905
diff changeset
   198
reg_def R_D34 (SOC, SOC, Op_RegD,  3, F34->as_VMReg());
7467ebf34334 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 3905
diff changeset
   199
reg_def R_D34x(SOC, SOC, Op_RegD,255, F34->as_VMReg()->next());
7467ebf34334 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 3905
diff changeset
   200
reg_def R_D36 (SOC, SOC, Op_RegD,  5, F36->as_VMReg());
7467ebf34334 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 3905
diff changeset
   201
reg_def R_D36x(SOC, SOC, Op_RegD,255, F36->as_VMReg()->next());
7467ebf34334 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 3905
diff changeset
   202
reg_def R_D38 (SOC, SOC, Op_RegD,  7, F38->as_VMReg());
7467ebf34334 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 3905
diff changeset
   203
reg_def R_D38x(SOC, SOC, Op_RegD,255, F38->as_VMReg()->next());
7467ebf34334 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 3905
diff changeset
   204
reg_def R_D40 (SOC, SOC, Op_RegD,  9, F40->as_VMReg());
7467ebf34334 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 3905
diff changeset
   205
reg_def R_D40x(SOC, SOC, Op_RegD,255, F40->as_VMReg()->next());
7467ebf34334 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 3905
diff changeset
   206
reg_def R_D42 (SOC, SOC, Op_RegD, 11, F42->as_VMReg());
7467ebf34334 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 3905
diff changeset
   207
reg_def R_D42x(SOC, SOC, Op_RegD,255, F42->as_VMReg()->next());
7467ebf34334 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 3905
diff changeset
   208
reg_def R_D44 (SOC, SOC, Op_RegD, 13, F44->as_VMReg());
7467ebf34334 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 3905
diff changeset
   209
reg_def R_D44x(SOC, SOC, Op_RegD,255, F44->as_VMReg()->next());
7467ebf34334 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 3905
diff changeset
   210
reg_def R_D46 (SOC, SOC, Op_RegD, 15, F46->as_VMReg());
7467ebf34334 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 3905
diff changeset
   211
reg_def R_D46x(SOC, SOC, Op_RegD,255, F46->as_VMReg()->next());
7467ebf34334 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 3905
diff changeset
   212
reg_def R_D48 (SOC, SOC, Op_RegD, 17, F48->as_VMReg());
7467ebf34334 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 3905
diff changeset
   213
reg_def R_D48x(SOC, SOC, Op_RegD,255, F48->as_VMReg()->next());
7467ebf34334 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 3905
diff changeset
   214
reg_def R_D50 (SOC, SOC, Op_RegD, 19, F50->as_VMReg());
7467ebf34334 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 3905
diff changeset
   215
reg_def R_D50x(SOC, SOC, Op_RegD,255, F50->as_VMReg()->next());
7467ebf34334 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 3905
diff changeset
   216
reg_def R_D52 (SOC, SOC, Op_RegD, 21, F52->as_VMReg());
7467ebf34334 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 3905
diff changeset
   217
reg_def R_D52x(SOC, SOC, Op_RegD,255, F52->as_VMReg()->next());
7467ebf34334 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 3905
diff changeset
   218
reg_def R_D54 (SOC, SOC, Op_RegD, 23, F54->as_VMReg());
7467ebf34334 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 3905
diff changeset
   219
reg_def R_D54x(SOC, SOC, Op_RegD,255, F54->as_VMReg()->next());
7467ebf34334 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 3905
diff changeset
   220
reg_def R_D56 (SOC, SOC, Op_RegD, 25, F56->as_VMReg());
7467ebf34334 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 3905
diff changeset
   221
reg_def R_D56x(SOC, SOC, Op_RegD,255, F56->as_VMReg()->next());
7467ebf34334 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 3905
diff changeset
   222
reg_def R_D58 (SOC, SOC, Op_RegD, 27, F58->as_VMReg());
7467ebf34334 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 3905
diff changeset
   223
reg_def R_D58x(SOC, SOC, Op_RegD,255, F58->as_VMReg()->next());
7467ebf34334 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 3905
diff changeset
   224
reg_def R_D60 (SOC, SOC, Op_RegD, 29, F60->as_VMReg());
7467ebf34334 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 3905
diff changeset
   225
reg_def R_D60x(SOC, SOC, Op_RegD,255, F60->as_VMReg()->next());
7467ebf34334 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 3905
diff changeset
   226
reg_def R_D62 (SOC, SOC, Op_RegD, 31, F62->as_VMReg());
7467ebf34334 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 3905
diff changeset
   227
reg_def R_D62x(SOC, SOC, Op_RegD,255, F62->as_VMReg()->next());
1
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
// 64-bit build means 64-bit pointers means hi/lo pairs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
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
   316
                  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
   317
                  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
   318
                  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
   319
// Lock encodings use G3 and G4 internally
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
reg_class lock_ptr_reg(       R_G1H,R_G1,                                     R_G5H,R_G5,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
                  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
   322
                  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
   323
                  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
   324
// Special class for storeP instructions, which can store SP or RPC to TLS.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
// It is also used for memory addressing, allowing direct TLS addressing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
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
   327
                  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
   328
                  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
   329
                  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
   330
// R_L7 is the lowest-priority callee-save (i.e., NS) register
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
// We use it to save R_G2 across calls out of Java.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
reg_class l7_regP(R_L7H,R_L7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
// Other special pointer regs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
reg_class g1_regP(R_G1H,R_G1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
reg_class g2_regP(R_G2H,R_G2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
reg_class g3_regP(R_G3H,R_G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
reg_class g4_regP(R_G4H,R_G4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
reg_class g5_regP(R_G5H,R_G5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
reg_class i0_regP(R_I0H,R_I0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
reg_class o0_regP(R_O0H,R_O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
reg_class o1_regP(R_O1H,R_O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
reg_class o2_regP(R_O2H,R_O2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
reg_class o7_regP(R_O7H,R_O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
// ----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
// Long Register Classes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
// ----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
// Longs in 1 register.  Aligned adjacent hi/lo pairs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
// Note:  O7 is never in this class; it is sometimes used as an encoding temp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
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
   353
                   ,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
   354
// 64-bit, longs in 1 register: use all 64-bit integer registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
                   ,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
   356
                   ,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
   357
                  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
reg_class g1_regL(R_G1H,R_G1);
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
   360
reg_class g3_regL(R_G3H,R_G3);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
reg_class o2_regL(R_O2H,R_O2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
reg_class o7_regL(R_O7H,R_O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
// ----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
// Special Class for Condition Code Flags Register
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
reg_class int_flags(CCR);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
reg_class float_flags(FCC0,FCC1,FCC2,FCC3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
reg_class float_flag0(FCC0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
// ----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
// Float Point Register Classes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
// ----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
// Skip F30/F31, they are reserved for mem-mem copies
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
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
   376
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
// Paired floating point registers--they show up in the same order as the floats,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
// but they are used with the "Op_RegD" type, and always occur in even/odd pairs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
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
   380
                   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
   381
                   /* Use extra V9 double registers; this AD file does not support V8 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
                   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
   383
                   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
   384
                   );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
// Paired floating point registers--they show up in the same order as the floats,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
// but they are used with the "Op_RegD" type, and always occur in even/odd pairs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
// This class is usable for mis-aligned loads as happen in I2C adapters.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
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,
10027
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
   390
                   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);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
//----------DEFINITION BLOCK---------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
// Define name --> value mappings to inform the ADLC of an integer valued name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
// Current support includes integer values in the range [0, 0x7FFFFFFF]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
// Format:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
//        int_def  <name>         ( <int_value>, <expression>);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
// Generated Code in ad_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
//        #define  <name>   (<expression>)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
//        // value == <int_value>
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
// Generated code in ad_<arch>.cpp adlc_verification()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
//        assert( <name> == <int_value>, "Expect (<expression>) to equal <int_value>");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
definitions %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
// The default cost (of an ALU instruction).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  int_def DEFAULT_COST      (    100,     100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  int_def HUGE_COST         (1000000, 1000000);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
// Memory refs are twice as expensive as run-of-the-mill.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  int_def MEMORY_REF_COST   (    200, DEFAULT_COST * 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
// Branches are even more expensive.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  int_def BRANCH_COST       (    300, DEFAULT_COST * 3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  int_def CALL_COST         (    300, DEFAULT_COST * 3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
//----------SOURCE BLOCK-------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
// This is a block of C++ code which provides values, functions, and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
// definitions necessary in the rest of the architecture description
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
source_hpp %{
23498
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   422
// Header information of the source block.
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   423
// Method declarations/definitions which are used outside
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   424
// the ad-scope can conveniently be defined here.
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   425
//
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   426
// To keep related declarations/definitions/uses close together,
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   427
// we switch between source %{ }% and source_hpp %{ }% freely as needed.
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   428
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
// Must be visible to the DFA in dfa_sparc.cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
extern bool can_branch_register( Node *bol, Node *cmp );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
10501
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
   432
extern bool use_block_zeroing(Node* count);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
   433
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
// Macros to extract hi & lo halves from a long pair.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
// G0 is not part of any long pair, so assert on that.
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 2022
diff changeset
   436
// Prevents accidentally using G1 instead of G0.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
#define LONG_HI_REG(x) (x)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
#define LONG_LO_REG(x) (x)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
23498
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   440
class CallStubImpl {
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   441
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   442
  //--------------------------------------------------------------
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   443
  //---<  Used for optimization in Compile::Shorten_branches  >---
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   444
  //--------------------------------------------------------------
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   445
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   446
 public:
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   447
  // Size of call trampoline stub.
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   448
  static uint size_call_trampoline() {
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   449
    return 0; // no call trampolines on this platform
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   450
  }
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   451
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   452
  // number of relocations needed by a call trampoline stub
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   453
  static uint reloc_call_trampoline() {
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   454
    return 0; // no call trampolines on this platform
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   455
  }
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   456
};
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   457
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   458
class HandlerImpl {
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   459
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   460
 public:
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   461
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   462
  static int emit_exception_handler(CodeBuffer &cbuf);
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   463
  static int emit_deopt_handler(CodeBuffer& cbuf);
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   464
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   465
  static uint size_exception_handler() {
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   466
    return ( NativeJump::instruction_size ); // sethi;jmp;nop
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   467
  }
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   468
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   469
  static uint size_deopt_handler() {
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   470
    return ( 4+  NativeJump::instruction_size ); // save;sethi;jmp;restore
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   471
  }
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   472
};
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
   473
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
source %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
#define __ _masm.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
// tertiary op of a LoadP or StoreP encoding
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
#define REGP_OP true
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
static FloatRegister reg_to_SingleFloatRegister_object(int register_encoding);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
static FloatRegister reg_to_DoubleFloatRegister_object(int register_encoding);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
static Register reg_to_register_object(int register_encoding);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
// Used by the DFA in dfa_sparc.cpp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
// Check for being able to use a V9 branch-on-register.  Requires a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
// compare-vs-zero, equal/not-equal, of a value which was zero- or sign-
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
// extended.  Doesn't work following an integer ADD, for example, because of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
// overflow (-1 incremented yields 0 plus a carry in the high-order word).  On
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
// 32-bit V9 systems, interrupts currently blow away the high-order 32 bits and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
// replace them with zero, which could become sign-extension in a different OS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
// release.  There's no obvious reason why an interrupt will ever fill these
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
// bits with non-zero junk (the registers are reloaded with standard LD
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
// instructions which either zero-fill or sign-fill).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
bool can_branch_register( Node *bol, Node *cmp ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  if( !BranchOnRegister ) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  if( cmp->Opcode() == Op_CmpP )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
    return true;  // No problems with pointer compares
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  if( cmp->Opcode() == Op_CmpL )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
    return true;  // No problems with long compares
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  if( !SparcV9RegsHiBitsZero ) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  if( bol->as_Bool()->_test._test != BoolTest::ne &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
      bol->as_Bool()->_test._test != BoolTest::eq )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
     return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  // Check for comparing against a 'safe' value.  Any operation which
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
  // clears out the high word is safe.  Thus, loads and certain shifts
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
  // are safe, as are non-negative constants.  Any operation which
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  // preserves zero bits in the high word is safe as long as each of its
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  // inputs are safe.  Thus, phis and bitwise booleans are safe if their
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
  // inputs are safe.  At present, the only important case to recognize
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  // seems to be loads.  Constants should fold away, and shifts &
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  // logicals can use the 'cc' forms.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  Node *x = cmp->in(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  if( x->is_Load() ) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  if( x->is_Phi() ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
    for( uint i = 1; i < x->req(); i++ )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
      if( !x->in(i)->is_Load() )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
        return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
10501
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
   527
bool use_block_zeroing(Node* count) {
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
   528
  // Use BIS for zeroing if count is not constant
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
   529
  // or it is >= BlockZeroingLowLimit.
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
   530
  return UseBlockZeroing && (count->find_intptr_t_con(BlockZeroingLowLimit) >= BlockZeroingLowLimit);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
   531
}
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
   532
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
// ****************************************************************************
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
// REQUIRED FUNCTIONALITY
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
// !!!!! Special hack to get all type of calls to specify the byte offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
//       from the start of the call to the point where the return address
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
//       will point.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
//       The "return address" is the address of the call instruction, plus 8.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
int MachCallStaticJavaNode::ret_addr_offset() {
5690
796ff3814b23 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 5352
diff changeset
   543
  int offset = NativeCall::instruction_size;  // call; delay slot
796ff3814b23 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 5352
diff changeset
   544
  if (_method_handle_invoke)
796ff3814b23 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 5352
diff changeset
   545
    offset += 4;  // restore SP
796ff3814b23 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 5352
diff changeset
   546
  return offset;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
int MachCallDynamicJavaNode::ret_addr_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
  int vtable_index = this->_vtable_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
  if (vtable_index < 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
    // must be invalid_vtable_index, not nonvirtual_vtable_index
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13104
diff changeset
   553
    assert(vtable_index == Method::invalid_vtable_index, "correct sentinel value");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
    return (NativeMovConstReg::instruction_size +
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
           NativeCall::instruction_size);  // sethi; setlo; call; delay slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
    assert(!UseInlineCaches, "expect vtable calls only if not using ICs");
35899
0dbc821628fc 8148047: Move the vtable length field to Klass
mgerdin
parents: 35871
diff changeset
   558
    int entry_offset = in_bytes(Klass::vtable_start_offset()) + vtable_index*vtableEntry::size_in_bytes();
35871
607bf949dfb3 8147461: Use byte offsets for vtable start and vtable length offsets
mgerdin
parents: 35135
diff changeset
   559
    int v_off = entry_offset + 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
   560
    int klass_load_size;
19979
ebe1dbb6e1aa 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents: 19319
diff changeset
   561
    if (UseCompressedClassPointers) {
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2150
diff changeset
   562
      assert(Universe::heap() != NULL, "java heap should be initialized");
19319
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18097
diff changeset
   563
      klass_load_size = MacroAssembler::instr_size_for_decode_klass_not_null() + 1*BytesPerInstWord;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
   564
    } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
   565
      klass_load_size = 1*BytesPerInstWord;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
   566
    }
11190
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
   567
    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
   568
      return klass_load_size +
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
   569
             (2*BytesPerInstWord +           // ld_ptr, ld_ptr
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
             NativeCall::instruction_size);  // call; delay slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
    } else {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
   572
      return klass_load_size +
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
   573
             (4*BytesPerInstWord +           // set_hi, set, ld_ptr, ld_ptr
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
             NativeCall::instruction_size);  // call; delay slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
int MachCallRuntimeNode::ret_addr_offset() {
7892
ff4948f95c49 7011627: C1: call_RT must support targets that don't fit in wdisp30
iveresov
parents: 7704
diff changeset
   580
  if (MacroAssembler::is_far_target(entry_point())) {
ff4948f95c49 7011627: C1: call_RT must support targets that don't fit in wdisp30
iveresov
parents: 7704
diff changeset
   581
    return NativeFarCall::instruction_size;
ff4948f95c49 7011627: C1: call_RT must support targets that don't fit in wdisp30
iveresov
parents: 7704
diff changeset
   582
  } else {
ff4948f95c49 7011627: C1: call_RT must support targets that don't fit in wdisp30
iveresov
parents: 7704
diff changeset
   583
    return NativeCall::instruction_size;
ff4948f95c49 7011627: C1: call_RT must support targets that don't fit in wdisp30
iveresov
parents: 7704
diff changeset
   584
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
// Indicate if the safepoint node needs the polling page as an input.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
// Since Sparc does not have absolute addressing, it does.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
bool SafePointNode::needs_polling_address_input() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
// emit an interrupt that is caught by the debugger (for debugging compiler)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
void emit_break(CodeBuffer &cbuf) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
  __ breakpoint_trap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
void MachBreakpointNode::format( PhaseRegAlloc *, outputStream *st ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
  st->print("TA");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
void MachBreakpointNode::emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
  emit_break(cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
uint MachBreakpointNode::size(PhaseRegAlloc *ra_) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  return MachNode::size(ra_);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
// Traceable jump
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
void  emit_jmpl(CodeBuffer &cbuf, int jump_target) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
  MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  Register rdest = reg_to_register_object(jump_target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
  __ JMP(rdest, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
  __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
// Traceable jump and set exception pc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
void  emit_jmpl_set_exception_pc(CodeBuffer &cbuf, int jump_target) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
  MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
  Register rdest = reg_to_register_object(jump_target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
  __ JMP(rdest, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
  __ delayed()->add(O7, frame::pc_return_offset, Oissuing_pc );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
void emit_nop(CodeBuffer &cbuf) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
  MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
  __ nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
void emit_illtrap(CodeBuffer &cbuf) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
  MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
  __ illtrap(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
intptr_t get_offset_from_base(const MachNode* n, const TypePtr* atype, int disp32) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
  assert(n->rule() != loadUB_rule, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
  intptr_t offset = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
  const TypePtr *adr_type = TYPE_PTR_SENTINAL;  // Check for base==RegI, disp==immP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
  const Node* addr = n->get_base_and_disp(offset, adr_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
  assert(adr_type == (const TypePtr*)-1, "VerifyOops: no support for sparc operands with base==RegI, disp==immP");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
  assert(addr != NULL && addr != (Node*)-1, "invalid addr");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
  assert(addr->bottom_type()->isa_oopptr() == atype, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  atype = atype->add_offset(offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
  assert(disp32 == offset, "wrong disp32");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
  return atype->_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
intptr_t get_offset_from_base_2(const MachNode* n, const TypePtr* atype, int disp32) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
  assert(n->rule() != loadUB_rule, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
  intptr_t offset = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
  Node* addr = n->in(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
  assert(addr->bottom_type()->isa_oopptr() == atype, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
  if (addr->is_Mach() && addr->as_Mach()->ideal_Opcode() == Op_AddP) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
    Node* a = addr->in(2/*AddPNode::Address*/);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
    Node* o = addr->in(3/*AddPNode::Offset*/);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
    offset = o->is_Con() ? o->bottom_type()->is_intptr_t()->get_con() : Type::OffsetBot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
    atype = a->bottom_type()->is_ptr()->add_offset(offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
    assert(atype->isa_oop_ptr(), "still an oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
  offset = atype->is_ptr()->_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
  if (offset != Type::OffsetBot)  offset += disp32;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
  return offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
40040
7644f470d923 8160425: Vectorization with signalling NaN returns wrong result
thartmann
parents: 40032
diff changeset
   673
static inline jlong replicate_immI(int con, int count, int width) {
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
   674
  // Load a constant replicated "count" times with width "width"
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
   675
  assert(count*width == 8 && width <= 4, "sanity");
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
   676
  int bit_width = width * 8;
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
   677
  jlong val = con;
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
   678
  val &= (((jlong) 1) << bit_width) - 1;  // mask off sign bits
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
   679
  for (int i = 0; i < count - 1; i++) {
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
   680
    val |= (val << bit_width);
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
   681
  }
40040
7644f470d923 8160425: Vectorization with signalling NaN returns wrong result
thartmann
parents: 40032
diff changeset
   682
  return val;
7644f470d923 8160425: Vectorization with signalling NaN returns wrong result
thartmann
parents: 40032
diff changeset
   683
}
7644f470d923 8160425: Vectorization with signalling NaN returns wrong result
thartmann
parents: 40032
diff changeset
   684
7644f470d923 8160425: Vectorization with signalling NaN returns wrong result
thartmann
parents: 40032
diff changeset
   685
static inline jlong replicate_immF(float con) {
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
   686
  // Replicate float con 2 times and pack into vector.
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
   687
  int val = *((int*)&con);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
   688
  jlong lval = val;
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
   689
  lval = (lval << 32) | (lval & 0xFFFFFFFFl);
40040
7644f470d923 8160425: Vectorization with signalling NaN returns wrong result
thartmann
parents: 40032
diff changeset
   690
  return lval;
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
   691
}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
   692
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
// Standard Sparc opcode form2 field breakdown
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
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
   695
  f0 &= (1<<19)-1;     // Mask displacement to 19 bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
  int op = (f30 << 30) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
           (f29 << 29) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
           (f25 << 25) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
           (f22 << 22) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
           (f20 << 20) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
           (f19 << 19) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
           (f0  <<  0);
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5702
diff changeset
   703
  cbuf.insts()->emit_int32(op);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
// Standard Sparc opcode form2 field breakdown
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
static inline void emit2_22(CodeBuffer &cbuf, int f30, int f25, int f22, int f0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
  f0 >>= 10;           // Drop 10 bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
  f0 &= (1<<22)-1;     // Mask displacement to 22 bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
  int op = (f30 << 30) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
           (f25 << 25) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
           (f22 << 22) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
           (f0  <<  0);
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5702
diff changeset
   714
  cbuf.insts()->emit_int32(op);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
// Standard Sparc opcode form3 field breakdown
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
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
   719
  int op = (f30 << 30) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
           (f25 << 25) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
           (f19 << 19) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
           (f14 << 14) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
           (f5  <<  5) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
           (f0  <<  0);
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5702
diff changeset
   725
  cbuf.insts()->emit_int32(op);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
// Standard Sparc opcode form3 field breakdown
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
static inline void emit3_simm13(CodeBuffer &cbuf, int f30, int f25, int f19, int f14, int simm13 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
  simm13 &= (1<<13)-1; // Mask to 13 bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
  int op = (f30 << 30) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
           (f25 << 25) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
           (f19 << 19) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
           (f14 << 14) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
           (1   << 13) | // bit to indicate immediate-mode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
           (simm13<<0);
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5702
diff changeset
   737
  cbuf.insts()->emit_int32(op);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
static inline void emit3_simm10(CodeBuffer &cbuf, int f30, int f25, int f19, int f14, int simm10 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
  simm10 &= (1<<10)-1; // Mask to 10 bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
  emit3_simm13(cbuf,f30,f25,f19,f14,simm10);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
// Helper function for VerifyOops in emit_form3_mem_reg
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
void verify_oops_warning(const MachNode *n, int ideal_op, int mem_op) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
  warning("VerifyOops encountered unexpected instruction:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
  n->dump(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
  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
   751
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
22228
f0a0d6be25c6 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 21523
diff changeset
   755
void emit_form3_mem_reg(CodeBuffer &cbuf, PhaseRegAlloc* ra, const MachNode* n, int primary, int tertiary,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
                        int src1_enc, int disp32, int src2_enc, int dst_enc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
  // The following code implements the +VerifyOops feature.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
  // It verifies oop values which are loaded into or stored out of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
  // the current method activation.  +VerifyOops complements techniques
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
  // like ScavengeALot, because it eagerly inspects oops in transit,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
  // as they enter or leave the stack, as opposed to ScavengeALot,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
  // which inspects oops "at rest", in the stack or heap, at safepoints.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
  // For this reason, +VerifyOops can sometimes detect bugs very close
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
  // to their point of creation.  It can also serve as a cross-check
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
  // on the validity of oop maps, when used toegether with ScavengeALot.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
  // It would be good to verify oops at other points, especially
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
  // when an oop is used as a base pointer for a load or store.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
  // This is presently difficult, because it is hard to know when
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
  // a base address is biased or not.  (If we had such information,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
  // it would be easy and useful to make a two-argument version of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
  // verify_oop which unbiases the base, and performs verification.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
  assert((uint)tertiary == 0xFFFFFFFF || tertiary == REGP_OP, "valid tertiary");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
  bool is_verified_oop_base  = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
  bool is_verified_oop_load  = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
  bool is_verified_oop_store = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
  int tmp_enc = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
  if (VerifyOops && src1_enc != R_SP_enc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
    // classify the op, mainly for an assert check
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
    int st_op = 0, ld_op = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
    switch (primary) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
    case Assembler::stb_op3:  st_op = Op_StoreB; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
    case Assembler::sth_op3:  st_op = Op_StoreC; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
    case Assembler::stx_op3:  // may become StoreP or stay StoreI or StoreD0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
    case Assembler::stw_op3:  st_op = Op_StoreI; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
    case Assembler::std_op3:  st_op = Op_StoreL; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
    case Assembler::stf_op3:  st_op = Op_StoreF; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
    case Assembler::stdf_op3: st_op = Op_StoreD; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
    case Assembler::ldsb_op3: ld_op = Op_LoadB; break;
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
   794
    case Assembler::ldub_op3: ld_op = Op_LoadUB; break;
2022
28ce8115a91d 6796746: rename LoadC (char) opcode class to LoadUS (unsigned short)
twisti
parents: 2015
diff changeset
   795
    case Assembler::lduh_op3: ld_op = Op_LoadUS; break;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
    case Assembler::ldsh_op3: ld_op = Op_LoadS; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
    case Assembler::ldx_op3:  // may become LoadP or stay LoadI
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
    case Assembler::ldsw_op3: // may become LoadP or stay LoadI
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
    case Assembler::lduw_op3: ld_op = Op_LoadI; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
    case Assembler::ldd_op3:  ld_op = Op_LoadL; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
    case Assembler::ldf_op3:  ld_op = Op_LoadF; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
    case Assembler::lddf_op3: ld_op = Op_LoadD; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
    case Assembler::prefetch_op3: ld_op = Op_LoadI; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
    default: ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
    if (tertiary == REGP_OP) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
      if      (st_op == Op_StoreI)  st_op = Op_StoreP;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
      else if (ld_op == Op_LoadI)   ld_op = Op_LoadP;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
      else                          ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
      if (st_op) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
        // a store
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
        // inputs are (0:control, 1:memory, 2:address, 3:value)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
        Node* n2 = n->in(3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
        if (n2 != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
          const Type* t = n2->bottom_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
          is_verified_oop_store = t->isa_oop_ptr() ? (t->is_ptr()->_offset==0) : false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
        // a load
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
        const Type* t = n->bottom_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
        is_verified_oop_load = t->isa_oop_ptr() ? (t->is_ptr()->_offset==0) : false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
    if (ld_op) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
      // a Load
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
      // inputs are (0:control, 1:memory, 2:address)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
      if (!(n->ideal_Opcode()==ld_op)       && // Following are special cases
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
          !(n->ideal_Opcode()==Op_LoadPLocked && ld_op==Op_LoadP) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
          !(n->ideal_Opcode()==Op_LoadI     && ld_op==Op_LoadF) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
          !(n->ideal_Opcode()==Op_LoadF     && ld_op==Op_LoadI) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
          !(n->ideal_Opcode()==Op_LoadRange && ld_op==Op_LoadI) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
          !(n->ideal_Opcode()==Op_LoadKlass && ld_op==Op_LoadP) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
          !(n->ideal_Opcode()==Op_LoadL     && ld_op==Op_LoadI) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
          !(n->ideal_Opcode()==Op_LoadL_unaligned && ld_op==Op_LoadI) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
          !(n->ideal_Opcode()==Op_LoadD_unaligned && ld_op==Op_LoadF) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
          !(n->ideal_Opcode()==Op_ConvI2F   && ld_op==Op_LoadF) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
          !(n->ideal_Opcode()==Op_ConvI2D   && ld_op==Op_LoadF) &&
10507
4b1c5c1cf1b8 7085137: -XX:+VerifyOops is broken
kvn
parents: 10501
diff changeset
   840
          !(n->ideal_Opcode()==Op_PrefetchAllocation && ld_op==Op_LoadI) &&
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
   841
          !(n->ideal_Opcode()==Op_LoadVector && ld_op==Op_LoadD) &&
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
          !(n->rule() == loadUB_rule)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
        verify_oops_warning(n, n->ideal_Opcode(), ld_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
    } else if (st_op) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
      // a Store
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
      // inputs are (0:control, 1:memory, 2:address, 3:value)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
      if (!(n->ideal_Opcode()==st_op)    && // Following are special cases
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
          !(n->ideal_Opcode()==Op_StoreCM && st_op==Op_StoreB) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
          !(n->ideal_Opcode()==Op_StoreI && st_op==Op_StoreF) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
          !(n->ideal_Opcode()==Op_StoreF && st_op==Op_StoreI) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
          !(n->ideal_Opcode()==Op_StoreL && st_op==Op_StoreI) &&
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
   853
          !(n->ideal_Opcode()==Op_StoreVector && st_op==Op_StoreD) &&
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
          !(n->ideal_Opcode()==Op_StoreD && st_op==Op_StoreI && n->rule() == storeD0_rule)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
        verify_oops_warning(n, n->ideal_Opcode(), st_op);
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 (src2_enc == R_G0_enc && n->rule() != loadUB_rule && n->ideal_Opcode() != Op_StoreCM ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
      Node* addr = n->in(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
      if (!(addr->is_Mach() && addr->as_Mach()->ideal_Opcode() == Op_AddP)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
        const TypeOopPtr* atype = addr->bottom_type()->isa_instptr();  // %%% oopptr?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
        if (atype != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
          intptr_t offset = get_offset_from_base(n, atype, disp32);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
          intptr_t offset_2 = get_offset_from_base_2(n, atype, disp32);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
          if (offset != offset_2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
            get_offset_from_base(n, atype, disp32);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
            get_offset_from_base_2(n, atype, disp32);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
          assert(offset == offset_2, "different offsets");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
          if (offset == disp32) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
            // we now know that src1 is a true oop pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
            is_verified_oop_base = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
            if (ld_op && src1_enc == dst_enc && ld_op != Op_LoadF && ld_op != Op_LoadD) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
              if( primary == Assembler::ldd_op3 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
                is_verified_oop_base = false; // Cannot 'ldd' into O7
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
              } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
                tmp_enc = dst_enc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
                dst_enc = R_O7_enc; // Load into O7; preserve source oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
                assert(src1_enc != dst_enc, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
              }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
          if (st_op && (( offset == oopDesc::klass_offset_in_bytes())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
                       || offset == oopDesc::mark_offset_in_bytes())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
                      // loading the mark should not be allowed either, but
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
                      // we don't check this since it conflicts with InlineObjectHash
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
                      // usage of LoadINode to get the mark. We could keep the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
                      // check if we create a new LoadMarkNode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
            // but do not verify the object before its header is initialized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
            ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
   899
  uint instr = (Assembler::ldst_op << 30)
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
   900
             | (dst_enc        << 25)
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
   901
             | (primary        << 19)
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
   902
             | (src1_enc       << 14);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
  uint index = src2_enc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
  int disp = disp32;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
22228
f0a0d6be25c6 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 21523
diff changeset
   907
  if (src1_enc == R_SP_enc || src1_enc == R_FP_enc) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
    disp += STACK_BIAS;
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
   909
    // Check that stack offset fits, load into O7 if not
22228
f0a0d6be25c6 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 21523
diff changeset
   910
    if (!Assembler::is_simm13(disp)) {
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
   911
      MacroAssembler _masm(&cbuf);
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
   912
      __ set(disp, O7);
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
   913
      if (index != R_G0_enc) {
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
   914
        __ add(O7, reg_to_register_object(index), O7);
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
   915
      }
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
   916
      index = R_O7_enc;
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
   917
      disp = 0;
22228
f0a0d6be25c6 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 21523
diff changeset
   918
    }
f0a0d6be25c6 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 21523
diff changeset
   919
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
  if( disp == 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
    // use reg-reg form
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
    // bit 13 is already zero
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
    instr |= index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
    // use reg-imm form
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
    instr |= 0x00002000;          // set bit 13 to one
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
    instr |= disp & 0x1FFF;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5702
diff changeset
   931
  cbuf.insts()->emit_int32(instr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
#ifdef ASSERT
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
   934
  if (VerifyOops) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
    if (is_verified_oop_base) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
      __ verify_oop(reg_to_register_object(src1_enc));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
    if (is_verified_oop_store) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
      __ verify_oop(reg_to_register_object(dst_enc));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
    if (tmp_enc != -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
      __ mov(O7, reg_to_register_object(tmp_enc));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
    if (is_verified_oop_load) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
      __ verify_oop(reg_to_register_object(dst_enc));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 34162
diff changeset
   952
void emit_call_reloc(CodeBuffer &cbuf, intptr_t entry_point, RelocationHolder const& rspec, bool preserve_g2 = false) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
  // The method which records debug information at every safepoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
  // expects the call to be the first instruction in the snippet as
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
  // it creates a PcDesc structure which tracks the offset of a call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
  // from the start of the codeBlob. This offset is computed as
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
  // code_end() - code_begin() of the code which has been emitted
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
  // so far.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
  // In this particular case we have skirted around the problem by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
  // putting the "mov" instruction in the delay slot but the problem
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
  // may bite us again at some other point and a cleaner/generic
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
  // solution using relocations would be needed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
  MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
  __ set_inst_mark();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
  // We flush the current window just so that there is a valid stack copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
  // the fact that the current window becomes active again instantly is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
  // not a problem there is nothing live in it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
  int startpos = __ offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
#endif /* ASSERT */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 34162
diff changeset
   974
  __ call((address)entry_point, rspec);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
  if (preserve_g2)   __ delayed()->mov(G2, L7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
  else __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
  if (preserve_g2)   __ mov(L7, G2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
  if (preserve_g2 && (VerifyCompiledCode || VerifyOops)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
    // Trash argument dump slots.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
    __ set(0xb0b8ac0db0b8ac0d, G1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
    __ mov(G1, G5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
    __ stx(G1, SP, STACK_BIAS + 0x80);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
    __ stx(G1, SP, STACK_BIAS + 0x88);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
    __ stx(G1, SP, STACK_BIAS + 0x90);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
    __ stx(G1, SP, STACK_BIAS + 0x98);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
    __ stx(G1, SP, STACK_BIAS + 0xA0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
    __ stx(G1, SP, STACK_BIAS + 0xA8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
#endif /*ASSERT*/
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
// REQUIRED FUNCTIONALITY for encoding
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
void emit_lo(CodeBuffer &cbuf, int val) {  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
void emit_hi(CodeBuffer &cbuf, int val) {  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
//=============================================================================
11197
158eecd6b330 7090968: Allow adlc register class to depend on runtime conditions
roland
parents: 11190
diff changeset
  1003
const RegMask& MachConstantBaseNode::_out_RegMask = PTR_REG_mask();
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1004
11190
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1005
int Compile::ConstantTable::calculate_table_base_offset() const {
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1006
  if (UseRDPCForConstantTableBase) {
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1007
    // The table base offset might be less but then it fits into
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1008
    // simm13 anyway and we are good (cf. MachConstantBaseNode::emit).
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1009
    return Assembler::min_simm13();
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1010
  } else {
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1011
    int offset = -(size() / 2);
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1012
    if (!Assembler::is_simm13(offset)) {
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1013
      offset = Assembler::min_simm13();
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1014
    }
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1015
    return offset;
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1016
  }
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1017
}
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1018
22844
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 22838
diff changeset
  1019
bool MachConstantBaseNode::requires_postalloc_expand() const { return false; }
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 22838
diff changeset
  1020
void MachConstantBaseNode::postalloc_expand(GrowableArray <Node *> *nodes, PhaseRegAlloc *ra_) {
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 22838
diff changeset
  1021
  ShouldNotReachHere();
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 22838
diff changeset
  1022
}
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 22838
diff changeset
  1023
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1024
void MachConstantBaseNode::emit(CodeBuffer& cbuf, PhaseRegAlloc* ra_) const {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1025
  Compile* C = ra_->C;
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1026
  Compile::ConstantTable& constant_table = C->constant_table();
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1027
  MacroAssembler _masm(&cbuf);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1028
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1029
  Register r = as_Register(ra_->get_encode(this));
11190
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1030
  CodeSection* consts_section = __ code()->consts();
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1031
  int consts_size = consts_section->align_at_start(consts_section->size());
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32082
diff changeset
  1032
  assert(constant_table.size() == consts_size, "must be: %d == %d", constant_table.size(), consts_size);
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1033
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1034
  if (UseRDPCForConstantTableBase) {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1035
    // For the following RDPC logic to work correctly the consts
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1036
    // section must be allocated right before the insts section.  This
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1037
    // assert checks for that.  The layout and the SECT_* constants
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1038
    // are defined in src/share/vm/asm/codeBuffer.hpp.
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1039
    assert(CodeBuffer::SECT_CONSTS + 1 == CodeBuffer::SECT_INSTS, "must be");
11190
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1040
    int insts_offset = __ offset();
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1041
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1042
    // Layout:
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1043
    //
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1044
    // |----------- consts section ------------|----------- insts section -----------...
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1045
    // |------ constant table -----|- padding -|------------------x----
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1046
    //                                                            \ current PC (RDPC instruction)
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1047
    // |<------------- consts_size ----------->|<- insts_offset ->|
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1048
    //                                                            \ table base
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1049
    // The table base offset is later added to the load displacement
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1050
    // so it has to be negative.
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1051
    int table_base_offset = -(consts_size + insts_offset);
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1052
    int disp;
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1053
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1054
    // If the displacement from the current PC to the constant table
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1055
    // base fits into simm13 we set the constant table base to the
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1056
    // current PC.
11190
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1057
    if (Assembler::is_simm13(table_base_offset)) {
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1058
      constant_table.set_table_base_offset(table_base_offset);
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1059
      disp = 0;
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1060
    } else {
11190
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1061
      // Otherwise we set the constant table base offset to the
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1062
      // maximum negative displacement of load instructions to keep
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1063
      // the disp as small as possible:
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1064
      //
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1065
      // |<------------- consts_size ----------->|<- insts_offset ->|
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1066
      // |<--------- min_simm13 --------->|<-------- disp --------->|
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1067
      //                                  \ table base
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1068
      table_base_offset = Assembler::min_simm13();
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1069
      constant_table.set_table_base_offset(table_base_offset);
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1070
      disp = (consts_size + insts_offset) + table_base_offset;
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1071
    }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1072
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1073
    __ rdpc(r);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1074
46596
a7c9706d25a9 8144448: Avoid placing CTI immediately following or preceding RDPC instruction
neliasso
parents: 46595
diff changeset
  1075
    if (disp == 0) {
a7c9706d25a9 8144448: Avoid placing CTI immediately following or preceding RDPC instruction
neliasso
parents: 46595
diff changeset
  1076
      // Emitting an additional 'nop' instruction in order not to cause a code
a7c9706d25a9 8144448: Avoid placing CTI immediately following or preceding RDPC instruction
neliasso
parents: 46595
diff changeset
  1077
      // size adjustment in the code following the table setup (if the instruction
a7c9706d25a9 8144448: Avoid placing CTI immediately following or preceding RDPC instruction
neliasso
parents: 46595
diff changeset
  1078
      // immediately following after this section is a CTI).
a7c9706d25a9 8144448: Avoid placing CTI immediately following or preceding RDPC instruction
neliasso
parents: 46595
diff changeset
  1079
      __ nop();
a7c9706d25a9 8144448: Avoid placing CTI immediately following or preceding RDPC instruction
neliasso
parents: 46595
diff changeset
  1080
    }
a7c9706d25a9 8144448: Avoid placing CTI immediately following or preceding RDPC instruction
neliasso
parents: 46595
diff changeset
  1081
    else {
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1082
      assert(r != O7, "need temporary");
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1083
      __ sub(r, __ ensure_simm13_or_reg(disp, O7), r);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1084
    }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1085
  }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1086
  else {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1087
    // Materialize the constant table base.
11190
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1088
    address baseaddr = consts_section->start() + -(constant_table.table_base_offset());
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1089
    RelocationHolder rspec = internal_word_Relocation::spec(baseaddr);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1090
    AddressLiteral base(baseaddr, rspec);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1091
    __ set(base, r);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1092
  }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1093
}
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1094
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1095
uint MachConstantBaseNode::size(PhaseRegAlloc*) const {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1096
  if (UseRDPCForConstantTableBase) {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1097
    // This is really the worst case but generally it's only 1 instruction.
7700
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7437
diff changeset
  1098
    return (1 /*rdpc*/ + 1 /*sub*/ + MacroAssembler::worst_case_insts_for_set()) * BytesPerInstWord;
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1099
  } else {
7700
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7437
diff changeset
  1100
    return MacroAssembler::worst_case_insts_for_set() * BytesPerInstWord;
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1101
  }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1102
}
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1103
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1104
#ifndef PRODUCT
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1105
void MachConstantBaseNode::format(PhaseRegAlloc* ra_, outputStream* st) const {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1106
  char reg[128];
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1107
  ra_->dump_register(this, reg);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1108
  if (UseRDPCForConstantTableBase) {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1109
    st->print("RDPC   %s\t! constant table base", reg);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1110
  } else {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1111
    st->print("SET    &constanttable,%s\t! constant table base", reg);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1112
  }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1113
}
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1114
#endif
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1115
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1116
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  1117
//=============================================================================
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1119
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
void MachPrologNode::format( PhaseRegAlloc *ra_, outputStream *st ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
  Compile* C = ra_->C;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
  for (int i = 0; i < OptoPrologueNops; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1124
    st->print_cr("NOP"); st->print("\t");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1127
  if( VerifyThread ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1128
    st->print_cr("Verify_Thread"); st->print("\t");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1129
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
24018
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 24008
diff changeset
  1131
  size_t framesize = C->frame_size_in_bytes();
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 24008
diff changeset
  1132
  int bangsize = C->bang_size_in_bytes();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1134
  // Calls to C2R adapters often do not accept exceptional returns.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1135
  // We require that their callers must bang for them.  But be careful, because
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1136
  // some VM calls (such as call site linkage) can use several kilobytes of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
  // stack.  But the stack safety zone should account for that.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
  // See bugs 4446381, 4468289, 4497237.
24018
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 24008
diff changeset
  1139
  if (C->need_stack_bang(bangsize)) {
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 24008
diff changeset
  1140
    st->print_cr("! stack bang (%d bytes)", bangsize); st->print("\t");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1142
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
  if (Assembler::is_simm13(-framesize)) {
24932
374cc5d929fb 8044735: Print format/argument warnings
mikael
parents: 24018
diff changeset
  1144
    st->print   ("SAVE   R_SP,-" SIZE_FORMAT ",R_SP",framesize);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
  } else {
24932
374cc5d929fb 8044735: Print format/argument warnings
mikael
parents: 24018
diff changeset
  1146
    st->print_cr("SETHI  R_SP,hi%%(-" SIZE_FORMAT "),R_G3",framesize); st->print("\t");
374cc5d929fb 8044735: Print format/argument warnings
mikael
parents: 24018
diff changeset
  1147
    st->print_cr("ADD    R_G3,lo%%(-" SIZE_FORMAT "),R_G3",framesize); st->print("\t");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1148
    st->print   ("SAVE   R_SP,R_G3,R_SP");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1149
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1150
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1153
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1154
void MachPrologNode::emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1155
  Compile* C = ra_->C;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1156
  MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1157
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1158
  for (int i = 0; i < OptoPrologueNops; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1159
    __ nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1160
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1161
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
  __ verify_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1163
24018
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 24008
diff changeset
  1164
  size_t framesize = C->frame_size_in_bytes();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1165
  assert(framesize >= 16*wordSize, "must have room for reg. save area");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1166
  assert(framesize%(2*wordSize) == 0, "must preserve 2*wordSize alignment");
24018
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 24008
diff changeset
  1167
  int bangsize = C->bang_size_in_bytes();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1168
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1169
  // Calls to C2R adapters often do not accept exceptional returns.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1170
  // We require that their callers must bang for them.  But be careful, because
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1171
  // some VM calls (such as call site linkage) can use several kilobytes of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1172
  // stack.  But the stack safety zone should account for that.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
  // See bugs 4446381, 4468289, 4497237.
24018
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 24008
diff changeset
  1174
  if (C->need_stack_bang(bangsize)) {
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 24008
diff changeset
  1175
    __ generate_stack_overflow_check(bangsize);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1177
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1178
  if (Assembler::is_simm13(-framesize)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1179
    __ save(SP, -framesize, SP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1181
    __ sethi(-framesize & ~0x3ff, G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1182
    __ add(G3, -framesize & 0x3ff, G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1183
    __ save(SP, G3, SP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1185
  C->set_frame_complete( __ offset() );
11190
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1186
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1187
  if (!UseRDPCForConstantTableBase && C->has_mach_constant_base_node()) {
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1188
    // NOTE: We set the table base offset here because users might be
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1189
    // emitted before MachConstantBaseNode.
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1190
    Compile::ConstantTable& constant_table = C->constant_table();
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1191
    constant_table.set_table_base_offset(constant_table.calculate_table_base_offset());
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1192
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1194
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1195
uint MachPrologNode::size(PhaseRegAlloc *ra_) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1196
  return MachNode::size(ra_);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1197
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1198
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1199
int MachPrologNode::reloc() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1200
  return 10; // a large enough number
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1201
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1202
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1203
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1204
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1205
void MachEpilogNode::format( PhaseRegAlloc *ra_, outputStream *st ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1206
  Compile* C = ra_->C;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1207
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  1208
  if(do_polling() && ra_->C->is_method_compilation()) {
47881
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47563
diff changeset
  1209
    if (SafepointMechanism::uses_global_page_poll()) {
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47563
diff changeset
  1210
      st->print("SETHI  #PollAddr,L0\t! Load Polling address\n\t");
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47563
diff changeset
  1211
    } else {
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47563
diff changeset
  1212
      st->print("LDX    [R_G2 + #poll_offset],L0\t! Load local polling address\n\t");
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47563
diff changeset
  1213
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1214
    st->print("LDX    [L0],G0\t!Poll for Safepointing\n\t");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1215
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1216
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  1217
  if(do_polling()) {
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  1218
    if (UseCBCond && !ra_->C->is_method_compilation()) {
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  1219
      st->print("NOP\n\t");
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  1220
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1221
    st->print("RET\n\t");
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  1222
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1223
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1224
  st->print("RESTORE");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1225
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1226
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
void MachEpilogNode::emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1229
  MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1230
  Compile* C = ra_->C;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1231
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1232
  __ verify_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1233
35071
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 34667
diff changeset
  1234
  if (StackReservedPages > 0 && C->has_reserved_stack_access()) {
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 34667
diff changeset
  1235
    __ reserved_stack_check();
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 34667
diff changeset
  1236
  }
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 34667
diff changeset
  1237
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1238
  // If this does safepoint polling, then do it here
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  1239
  if(do_polling() && ra_->C->is_method_compilation()) {
47881
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47563
diff changeset
  1240
    if (SafepointMechanism::uses_thread_local_poll()) {
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47563
diff changeset
  1241
      __ ld_ptr(Address(G2_thread, Thread::polling_page_offset()), L0);
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47563
diff changeset
  1242
    } else {
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47563
diff changeset
  1243
      AddressLiteral polling_page(os::get_polling_page());
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47563
diff changeset
  1244
      __ sethi(polling_page, L0);
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47563
diff changeset
  1245
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1246
    __ relocate(relocInfo::poll_return_type);
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  1247
    __ ld_ptr(L0, 0, G0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1248
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1249
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1250
  // If this is a return, then stuff the restore in the delay slot
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  1251
  if(do_polling()) {
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  1252
    if (UseCBCond && !ra_->C->is_method_compilation()) {
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  1253
      // Insert extra padding for the case when the epilogue is preceded by
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  1254
      // a cbcond jump, which can't be followed by a CTI instruction
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  1255
      __ nop();
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  1256
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1257
    __ ret();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1258
    __ delayed()->restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1259
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1260
    __ restore();
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
uint MachEpilogNode::size(PhaseRegAlloc *ra_) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1265
  return MachNode::size(ra_);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1266
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1267
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1268
int MachEpilogNode::reloc() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1269
  return 16; // a large enough number
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1270
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1271
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1272
const Pipeline * MachEpilogNode::pipeline() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1273
  return MachNode::pipeline_class();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1274
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1275
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1276
int MachEpilogNode::safepoint_offset() const {
47881
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47563
diff changeset
  1277
  assert(SafepointMechanism::uses_global_page_poll(), "sanity");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1278
  assert( do_polling(), "no return for this epilog node");
7700
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7437
diff changeset
  1279
  return MacroAssembler::insts_for_sethi(os::get_polling_page()) * BytesPerInstWord;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1280
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1281
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1282
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1283
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1284
// Figure out which register class each belongs in: rc_int, rc_float, rc_stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1285
enum RC { rc_bad, rc_int, rc_float, rc_stack };
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1286
static enum RC rc_class( OptoReg::Name reg ) {
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1287
  if (!OptoReg::is_valid(reg)) return rc_bad;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1288
  if (OptoReg::is_stack(reg)) return rc_stack;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1289
  VMReg r = OptoReg::as_VMReg(reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1290
  if (r->is_Register()) return rc_int;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1291
  assert(r->is_FloatRegister(), "must be");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1292
  return rc_float;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1293
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1294
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1295
#ifndef PRODUCT
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1296
ATTRIBUTE_PRINTF(2, 3)
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1297
static void print_helper(outputStream* st, const char* format, ...) {
54960
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 54780
diff changeset
  1298
  const int tab_size = 8;
e46fe26d7f77 8213084: Rework and enhance Print[Opto]Assembly output
lucy
parents: 54780
diff changeset
  1299
  if (st->position() > tab_size) {
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1300
    st->cr();
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1301
    st->sp();
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1302
  }
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1303
  va_list ap;
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1304
  va_start(ap, format);
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1305
  st->vprint(format, ap);
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1306
  va_end(ap);
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1307
}
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1308
#endif // !PRODUCT
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1309
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1310
static void impl_helper(const MachNode* mach, CodeBuffer* cbuf, PhaseRegAlloc* ra, bool is_load, int offset, int reg, int opcode, const char *op_str, outputStream* st) {
22228
f0a0d6be25c6 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 21523
diff changeset
  1311
  if (cbuf) {
f0a0d6be25c6 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 21523
diff changeset
  1312
    emit_form3_mem_reg(*cbuf, ra, mach, opcode, -1, R_SP_enc, offset, 0, Matcher::_regEncode[reg]);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1313
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1314
#ifndef PRODUCT
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1315
  else {
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1316
    if (is_load) {
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1317
      print_helper(st, "%s   [R_SP + #%d],R_%s\t! spill", op_str, offset, OptoReg::regname(reg));
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1318
    } else {
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1319
      print_helper(st, "%s   R_%s,[R_SP + #%d]\t! spill", op_str, OptoReg::regname(reg), offset);
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1320
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1321
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1322
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1323
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1324
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1325
static void impl_mov_helper(CodeBuffer *cbuf, int src, int dst, int op1, int op2, const char *op_str, outputStream* st) {
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1326
  if (cbuf) {
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1327
    emit3(*cbuf, Assembler::arith_op, Matcher::_regEncode[dst], op1, 0, op2, Matcher::_regEncode[src]);
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1328
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1329
#ifndef PRODUCT
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1330
  else {
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1331
    print_helper(st, "%s  R_%s,R_%s\t! spill", op_str, OptoReg::regname(src), OptoReg::regname(dst));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1332
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1333
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1334
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1335
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1336
static void mach_spill_copy_implementation_helper(const MachNode* mach,
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1337
                                                  CodeBuffer *cbuf,
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1338
                                                  PhaseRegAlloc *ra_,
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1339
                                                  outputStream* st) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1340
  // Get registers to move
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1341
  OptoReg::Name src_second = ra_->get_reg_second(mach->in(1));
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1342
  OptoReg::Name src_first  = ra_->get_reg_first(mach->in(1));
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1343
  OptoReg::Name dst_second = ra_->get_reg_second(mach);
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1344
  OptoReg::Name dst_first  = ra_->get_reg_first(mach);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1345
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1346
  enum RC src_second_rc = rc_class(src_second);
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1347
  enum RC src_first_rc  = rc_class(src_first);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1348
  enum RC dst_second_rc = rc_class(dst_second);
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1349
  enum RC dst_first_rc  = rc_class(dst_first);
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1350
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1351
  assert(OptoReg::is_valid(src_first) && OptoReg::is_valid(dst_first), "must move at least 1 register");
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1352
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1353
  if (src_first == dst_first && src_second == dst_second) {
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1354
    return; // Self copy, no move
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1355
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1356
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1357
  // --------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1358
  // Check for mem-mem move.  Load into unused float registers and fall into
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1359
  // the float-store case.
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1360
  if (src_first_rc == rc_stack && dst_first_rc == rc_stack) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1361
    int offset = ra_->reg2offset(src_first);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1362
    // Further check for aligned-adjacent pair, so we can use a double load
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1363
    if ((src_first&1) == 0 && src_first+1 == src_second) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1364
      src_second    = OptoReg::Name(R_F31_num);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1365
      src_second_rc = rc_float;
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1366
      impl_helper(mach, cbuf, ra_, true, offset, R_F30_num, Assembler::lddf_op3, "LDDF", st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1367
    } else {
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1368
      impl_helper(mach, cbuf, ra_, true, offset, R_F30_num, Assembler::ldf_op3, "LDF ", st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1369
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1370
    src_first    = OptoReg::Name(R_F30_num);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1371
    src_first_rc = rc_float;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1372
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1373
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1374
  if( src_second_rc == rc_stack && dst_second_rc == rc_stack ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1375
    int offset = ra_->reg2offset(src_second);
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1376
    impl_helper(mach, cbuf, ra_, true, offset, R_F31_num, Assembler::ldf_op3, "LDF ", st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1377
    src_second    = OptoReg::Name(R_F31_num);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1378
    src_second_rc = rc_float;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1379
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1380
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1381
  // --------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1382
  // Check for float->int copy; requires a trip through memory
10027
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  1383
  if (src_first_rc == rc_float && dst_first_rc == rc_int && UseVIS < 3) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1384
    int offset = frame::register_save_words*wordSize;
10027
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  1385
    if (cbuf) {
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1386
      emit3_simm13(*cbuf, Assembler::arith_op, R_SP_enc, Assembler::sub_op3, R_SP_enc, 16);
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1387
      impl_helper(mach, cbuf, ra_, false, offset, src_first,  Assembler::stf_op3, "STF ", st);
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1388
      impl_helper(mach, cbuf, ra_,  true, offset, dst_first, Assembler::lduw_op3, "LDUW", st);
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1389
      emit3_simm13(*cbuf, Assembler::arith_op, R_SP_enc, Assembler::add_op3, R_SP_enc, 16);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1390
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1391
#ifndef PRODUCT
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1392
    else {
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1393
      print_helper(st, "SUB    R_SP,16,R_SP");
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1394
      impl_helper(mach, cbuf, ra_, false, offset, src_first,  Assembler::stf_op3, "STF ", st);
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1395
      impl_helper(mach, cbuf, ra_,  true, offset, dst_first, Assembler::lduw_op3, "LDUW", st);
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1396
      print_helper(st, "ADD    R_SP,16,R_SP");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1397
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1398
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1399
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1400
10027
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  1401
  // Check for float->int copy on T4
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  1402
  if (src_first_rc == rc_float && dst_first_rc == rc_int && UseVIS >= 3) {
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  1403
    // Further check for aligned-adjacent pair, so we can use a double move
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1404
    if ((src_first & 1) == 0 && src_first + 1 == src_second && (dst_first & 1) == 0 && dst_first + 1 == dst_second) {
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1405
      impl_mov_helper(cbuf, src_first, dst_first, Assembler::mftoi_op3, Assembler::mdtox_opf, "MOVDTOX", st);
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1406
      return;
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1407
    }
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1408
    impl_mov_helper(cbuf, src_first, dst_first, Assembler::mftoi_op3, Assembler::mstouw_opf, "MOVSTOUW", st);
10027
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  1409
  }
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  1410
  // Check for int->float copy on T4
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  1411
  if (src_first_rc == rc_int && dst_first_rc == rc_float && UseVIS >= 3) {
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  1412
    // Further check for aligned-adjacent pair, so we can use a double move
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1413
    if ((src_first & 1) == 0 && src_first + 1 == src_second && (dst_first & 1) == 0 && dst_first + 1 == dst_second) {
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1414
      impl_mov_helper(cbuf, src_first, dst_first, Assembler::mftoi_op3, Assembler::mxtod_opf, "MOVXTOD", st);
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1415
      return;
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1416
    }
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1417
    impl_mov_helper(cbuf, src_first, dst_first, Assembler::mftoi_op3, Assembler::mwtos_opf, "MOVWTOS", st);
10027
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  1418
  }
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  1419
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1420
  // --------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1421
  // In the 32-bit 1-reg-longs build ONLY, I see mis-aligned long destinations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1422
  // In such cases, I have to do the big-endian swap.  For aligned targets, the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1423
  // hardware does the flop for me.  Doubles are always aligned, so no problem
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1424
  // there.  Misaligned sources only come from native-long-returns (handled
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1425
  // special below).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1426
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1427
  // --------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1428
  // Check for integer reg-reg copy
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1429
  if (src_first_rc == rc_int && dst_first_rc == rc_int) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1430
    // Else normal reg-reg copy
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1431
    assert(src_second != dst_first, "smashed second before evacuating it");
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1432
    impl_mov_helper(cbuf, src_first, dst_first, Assembler::or_op3, 0, "MOV  ", st);
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1433
    assert((src_first & 1) == 0 && (dst_first & 1) == 0, "never move second-halves of int registers");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1434
    // This moves an aligned adjacent pair.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1435
    // See if we are done.
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1436
    if (src_first + 1 == src_second && dst_first + 1 == dst_second) {
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1437
      return;
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1438
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1439
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1440
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1441
  // Check for integer store
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1442
  if (src_first_rc == rc_int && dst_first_rc == rc_stack) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1443
    int offset = ra_->reg2offset(dst_first);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1444
    // Further check for aligned-adjacent pair, so we can use a double store
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1445
    if ((src_first & 1) == 0 && src_first + 1 == src_second && (dst_first & 1) == 0 && dst_first + 1 == dst_second) {
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1446
      impl_helper(mach, cbuf, ra_, false, offset, src_first, Assembler::stx_op3, "STX ", st);
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1447
      return;
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1448
    }
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1449
    impl_helper(mach, cbuf, ra_, false, offset, src_first, Assembler::stw_op3, "STW ", st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1450
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1451
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1452
  // Check for integer load
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1453
  if (dst_first_rc == rc_int && src_first_rc == rc_stack) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1454
    int offset = ra_->reg2offset(src_first);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1455
    // Further check for aligned-adjacent pair, so we can use a double load
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1456
    if ((src_first & 1) == 0 && src_first + 1 == src_second && (dst_first & 1) == 0 && dst_first + 1 == dst_second) {
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1457
      impl_helper(mach, cbuf, ra_, true, offset, dst_first, Assembler::ldx_op3, "LDX ", st);
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1458
      return;
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1459
    }
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1460
    impl_helper(mach, cbuf, ra_, true, offset, dst_first, Assembler::lduw_op3, "LDUW", st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1461
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1462
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1463
  // Check for float reg-reg copy
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1464
  if (src_first_rc == rc_float && dst_first_rc == rc_float) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1465
    // Further check for aligned-adjacent pair, so we can use a double move
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1466
    if ((src_first & 1) == 0 && src_first + 1 == src_second && (dst_first & 1) == 0 && dst_first + 1 == dst_second) {
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1467
      impl_mov_helper(cbuf, src_first, dst_first, Assembler::fpop1_op3, Assembler::fmovd_opf, "FMOVD", st);
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1468
      return;
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1469
    }
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1470
    impl_mov_helper(cbuf, src_first, dst_first, Assembler::fpop1_op3, Assembler::fmovs_opf, "FMOVS", st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1471
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1472
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1473
  // Check for float store
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1474
  if (src_first_rc == rc_float && dst_first_rc == rc_stack) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1475
    int offset = ra_->reg2offset(dst_first);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1476
    // Further check for aligned-adjacent pair, so we can use a double store
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1477
    if ((src_first & 1) == 0 && src_first + 1 == src_second && (dst_first & 1) == 0 && dst_first + 1 == dst_second) {
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1478
      impl_helper(mach, cbuf, ra_, false, offset, src_first, Assembler::stdf_op3, "STDF", st);
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1479
      return;
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1480
    }
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1481
    impl_helper(mach, cbuf, ra_, false, offset, src_first, Assembler::stf_op3, "STF ", st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1482
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1483
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1484
  // Check for float load
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1485
  if (dst_first_rc == rc_float && src_first_rc == rc_stack) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1486
    int offset = ra_->reg2offset(src_first);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1487
    // Further check for aligned-adjacent pair, so we can use a double load
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1488
    if ((src_first & 1) == 0 && src_first + 1 == src_second && (dst_first & 1) == 0 && dst_first + 1 == dst_second) {
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1489
      impl_helper(mach, cbuf, ra_, true, offset, dst_first, Assembler::lddf_op3, "LDDF", st);
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1490
      return;
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1491
    }
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1492
    impl_helper(mach, cbuf, ra_, true, offset, dst_first, Assembler::ldf_op3, "LDF ", st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1493
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1494
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1495
  // --------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1496
  // Check for hi bits still needing moving.  Only happens for misaligned
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1497
  // arguments to native calls.
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1498
  if (src_second == dst_second) {
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1499
    return; // Self copy; no move
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1500
  }
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1501
  assert(src_second_rc != rc_bad && dst_second_rc != rc_bad, "src_second & dst_second cannot be Bad");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1502
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1503
  Unimplemented();
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1504
}
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1505
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1506
uint MachSpillCopyNode::implementation(CodeBuffer *cbuf,
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1507
                                       PhaseRegAlloc *ra_,
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1508
                                       bool do_size,
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1509
                                       outputStream* st) const {
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1510
  assert(!do_size, "not supported");
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1511
  mach_spill_copy_implementation_helper(this, cbuf, ra_, st);
34667
6b077f0ef25d 8144881: Various fixes to linux/sparc
mikael
parents: 34162
diff changeset
  1512
  return 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1513
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1514
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1515
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1516
void MachSpillCopyNode::format( PhaseRegAlloc *ra_, outputStream *st ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1517
  implementation( NULL, ra_, false, st );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1518
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1519
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1520
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1521
void MachSpillCopyNode::emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1522
  implementation( &cbuf, ra_, false, NULL );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1523
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1524
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1525
uint MachSpillCopyNode::size(PhaseRegAlloc *ra_) const {
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1526
  return MachNode::size(ra_);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1527
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1528
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1529
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1530
#ifndef PRODUCT
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1531
void MachNopNode::format(PhaseRegAlloc *, outputStream *st) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1532
  st->print("NOP \t# %d bytes pad for loops and calls", 4 * _count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1533
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1534
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1535
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1536
void MachNopNode::emit(CodeBuffer &cbuf, PhaseRegAlloc *) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1537
  MacroAssembler _masm(&cbuf);
36332
6fa29ad824ad 8068038: C2: large constant offsets aren't handled on SPARC
vlivanov
parents: 35899
diff changeset
  1538
  for (int i = 0; i < _count; i += 1) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1539
    __ nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1540
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1541
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1542
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1543
uint MachNopNode::size(PhaseRegAlloc *ra_) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1544
  return 4 * _count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1545
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1546
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1547
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1548
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1549
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1550
void BoxLockNode::format( PhaseRegAlloc *ra_, outputStream *st ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1551
  int offset = ra_->reg2offset(in_RegMask(0).find_first_elem());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1552
  int reg = ra_->get_reg_first(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1553
  st->print("LEA    [R_SP+#%d+BIAS],%s",offset,Matcher::regName[reg]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1554
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1555
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1556
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1557
void BoxLockNode::emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1558
  MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1559
  int offset = ra_->reg2offset(in_RegMask(0).find_first_elem()) + STACK_BIAS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1560
  int reg = ra_->get_encode(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1561
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1562
  if (Assembler::is_simm13(offset)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1563
     __ add(SP, offset, reg_to_register_object(reg));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1564
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1565
     __ set(offset, O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1566
     __ add(SP, O7, reg_to_register_object(reg));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1567
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1568
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1569
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1570
uint BoxLockNode::size(PhaseRegAlloc *ra_) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1571
  // BoxLockNode is not a MachNode, so we can't just call MachNode::size(ra_)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1572
  assert(ra_ == ra_->C->regalloc(), "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1573
  return ra_->C->scratch_emit_size(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1574
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1575
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1576
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1577
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1578
void MachUEPNode::format( PhaseRegAlloc *ra_, outputStream *st ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1579
  st->print_cr("\nUEP:");
19979
ebe1dbb6e1aa 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents: 19319
diff changeset
  1580
  if (UseCompressedClassPointers) {
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2150
diff changeset
  1581
    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
  1582
    st->print_cr("\tLDUW   [R_O0 + oopDesc::klass_offset_in_bytes],R_G5\t! Inline cache check - compressed klass");
54780
f8d182aedc92 8223136: Move compressed oops functions to CompressedOops class
stefank
parents: 47881
diff changeset
  1583
    if (CompressedKlassPointers::base() != 0) {
f8d182aedc92 8223136: Move compressed oops functions to CompressedOops class
stefank
parents: 47881
diff changeset
  1584
      st->print_cr("\tSET    CompressedKlassPointers::base,R_G6_heap_base");
f8d182aedc92 8223136: Move compressed oops functions to CompressedOops class
stefank
parents: 47881
diff changeset
  1585
      if (CompressedKlassPointers::shift() != 0) {
f8d182aedc92 8223136: Move compressed oops functions to CompressedOops class
stefank
parents: 47881
diff changeset
  1586
        st->print_cr("\tSLL    R_G5,CompressedKlassPointers::shift,R_G5");
21188
d053e4e8f901 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 20289
diff changeset
  1587
      }
d053e4e8f901 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 20289
diff changeset
  1588
      st->print_cr("\tADD    R_G5,R_G6_heap_base,R_G5");
54780
f8d182aedc92 8223136: Move compressed oops functions to CompressedOops class
stefank
parents: 47881
diff changeset
  1589
      st->print_cr("\tSET    CompressedOops::ptrs_base,R_G6_heap_base");
21188
d053e4e8f901 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 20289
diff changeset
  1590
    } else {
54780
f8d182aedc92 8223136: Move compressed oops functions to CompressedOops class
stefank
parents: 47881
diff changeset
  1591
      st->print_cr("\tSLL    R_G5,CompressedKlassPointers::shift,R_G5");
19319
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18097
diff changeset
  1592
    }
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  1593
  } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  1594
    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
  1595
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1596
  st->print_cr("\tCMP    R_G5,R_G3" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1597
  st->print   ("\tTne    xcc,R_G0+ST_RESERVED_FOR_USER_0+2");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1598
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1599
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1600
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1601
void MachUEPNode::emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1602
  MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1603
  Register G5_ic_reg  = reg_to_register_object(Matcher::inline_cache_reg_encode());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1604
  Register temp_reg   = G3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1605
  assert( G5_ic_reg != temp_reg, "conflicting registers" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1606
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 2022
diff changeset
  1607
  // Load klass from receiver
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  1608
  __ load_klass(O0, temp_reg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1609
  // Compare against expected klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1610
  __ cmp(temp_reg, G5_ic_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1611
  // Branch to miss code, checks xcc or icc depending
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1612
  __ trap(Assembler::notEqual, Assembler::ptr_cc, G0, ST_RESERVED_FOR_USER_0+2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1613
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1614
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1615
uint MachUEPNode::size(PhaseRegAlloc *ra_) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1616
  return MachNode::size(ra_);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1617
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1618
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1619
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1620
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1621
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1622
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1623
// Emit exception handler code.
23498
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
  1624
int HandlerImpl::emit_exception_handler(CodeBuffer& cbuf) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1625
  Register temp_reg = G3;
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5702
diff changeset
  1626
  AddressLiteral exception_blob(OptoRuntime::exception_blob()->entry_point());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1627
  MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1628
32082
2a3323e25de1 8130309: Need to bailout cleanly if creation of stubs fails when codecache is out of space
thartmann
parents: 31047
diff changeset
  1629
  address base = __ start_a_stub(size_exception_handler());
2a3323e25de1 8130309: Need to bailout cleanly if creation of stubs fails when codecache is out of space
thartmann
parents: 31047
diff changeset
  1630
  if (base == NULL) {
2a3323e25de1 8130309: Need to bailout cleanly if creation of stubs fails when codecache is out of space
thartmann
parents: 31047
diff changeset
  1631
    ciEnv::current()->record_failure("CodeCache is full");
2a3323e25de1 8130309: Need to bailout cleanly if creation of stubs fails when codecache is out of space
thartmann
parents: 31047
diff changeset
  1632
    return 0;  // CodeBuffer::expand failed
2a3323e25de1 8130309: Need to bailout cleanly if creation of stubs fails when codecache is out of space
thartmann
parents: 31047
diff changeset
  1633
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1634
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1635
  int offset = __ offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1636
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  1637
  __ JUMP(exception_blob, temp_reg, 0); // sethi;jmp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1638
  __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1639
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1640
  assert(__ offset() - offset <= (int) size_exception_handler(), "overflow");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1641
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1642
  __ end_a_stub();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1643
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1644
  return offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1645
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1646
23498
a0e67b766e5c 8037821: Account for trampoline stubs when estimating code buffer sizes
goetz
parents: 22911
diff changeset
  1647
int HandlerImpl::emit_deopt_handler(CodeBuffer& cbuf) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1648
  // Can't use any of the current frame's registers as we may have deopted
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1649
  // at a poll and everything (including G3) can be live.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1650
  Register temp_reg = L0;
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  1651
  AddressLiteral deopt_blob(SharedRuntime::deopt_blob()->unpack());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1652
  MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1653
32082
2a3323e25de1 8130309: Need to bailout cleanly if creation of stubs fails when codecache is out of space
thartmann
parents: 31047
diff changeset
  1654
  address base = __ start_a_stub(size_deopt_handler());
2a3323e25de1 8130309: Need to bailout cleanly if creation of stubs fails when codecache is out of space
thartmann
parents: 31047
diff changeset
  1655
  if (base == NULL) {
2a3323e25de1 8130309: Need to bailout cleanly if creation of stubs fails when codecache is out of space
thartmann
parents: 31047
diff changeset
  1656
    ciEnv::current()->record_failure("CodeCache is full");
2a3323e25de1 8130309: Need to bailout cleanly if creation of stubs fails when codecache is out of space
thartmann
parents: 31047
diff changeset
  1657
    return 0;  // CodeBuffer::expand failed
2a3323e25de1 8130309: Need to bailout cleanly if creation of stubs fails when codecache is out of space
thartmann
parents: 31047
diff changeset
  1658
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1659
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1660
  int offset = __ offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1661
  __ save_frame(0);
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  1662
  __ JUMP(deopt_blob, temp_reg, 0); // sethi;jmp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1663
  __ delayed()->restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1664
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1665
  assert(__ offset() - offset <= (int) size_deopt_handler(), "overflow");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1666
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1667
  __ end_a_stub();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1668
  return offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1669
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1670
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1671
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1672
// Given a register encoding, produce a Integer Register object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1673
static Register reg_to_register_object(int register_encoding) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1674
  assert(L5->encoding() == R_L5_enc && G1->encoding() == R_G1_enc, "right coding");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1675
  return as_Register(register_encoding);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1676
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1677
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1678
// Given a register encoding, produce a single-precision Float Register object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1679
static FloatRegister reg_to_SingleFloatRegister_object(int register_encoding) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1680
  assert(F5->encoding(FloatRegisterImpl::S) == R_F5_enc && F12->encoding(FloatRegisterImpl::S) == R_F12_enc, "right coding");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1681
  return as_SingleFloatRegister(register_encoding);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1682
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1683
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1684
// Given a register encoding, produce a double-precision Float Register object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1685
static FloatRegister reg_to_DoubleFloatRegister_object(int register_encoding) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1686
  assert(F4->encoding(FloatRegisterImpl::D) == R_F4_enc, "right coding");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1687
  assert(F32->encoding(FloatRegisterImpl::D) == R_D32_enc, "right coding");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1688
  return as_DoubleFloatRegister(register_encoding);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1689
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1690
2862
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
  1691
const bool Matcher::match_rule_supported(int opcode) {
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
  1692
  if (!has_match_rule(opcode))
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
  1693
    return false;
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
  1694
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
  1695
  switch (opcode) {
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
  1696
  case Op_CountLeadingZerosI:
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
  1697
  case Op_CountLeadingZerosL:
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
  1698
  case Op_CountTrailingZerosI:
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
  1699
  case Op_CountTrailingZerosL:
12113
71f302d5c8ee 7152957: VM crashes with assert(false) failed: bad AD file
never
parents: 11445
diff changeset
  1700
  case Op_PopCountI:
71f302d5c8ee 7152957: VM crashes with assert(false) failed: bad AD file
never
parents: 11445
diff changeset
  1701
  case Op_PopCountL:
2862
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
  1702
    if (!UsePopCountInstruction)
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
  1703
      return false;
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 13728
diff changeset
  1704
  case Op_CompareAndSwapL:
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 13728
diff changeset
  1705
  case Op_CompareAndSwapP:
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 13728
diff changeset
  1706
    if (!VM_Version::supports_cx8())
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 13728
diff changeset
  1707
      return false;
2862
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
  1708
    break;
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
  1709
  }
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
  1710
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
  1711
  return true;  // Per default match rules are supported.
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
  1712
}
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
  1713
34162
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  1714
const bool Matcher::match_rule_supported_vector(int opcode, int vlen) {
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  1715
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  1716
  // TODO
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  1717
  // identify extra cases that we might want to provide match rules for
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  1718
  // e.g. Op_ vector nodes and other intrinsics while guarding with vlen
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  1719
  bool ret_value = match_rule_supported(opcode);
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  1720
  // Add rules here.
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  1721
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  1722
  return ret_value;  // Per default match rules are supported.
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  1723
}
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  1724
38049
e8541793960f 8153998: Masked vector post loops
mcberg
parents: 36808
diff changeset
  1725
const bool Matcher::has_predicated_vectors(void) {
e8541793960f 8153998: Masked vector post loops
mcberg
parents: 36808
diff changeset
  1726
  return false;
e8541793960f 8153998: Masked vector post loops
mcberg
parents: 36808
diff changeset
  1727
}
e8541793960f 8153998: Masked vector post loops
mcberg
parents: 36808
diff changeset
  1728
33065
55892792936f 8134802: LCM register pressure scheduling
mcberg
parents: 32082
diff changeset
  1729
const int Matcher::float_pressure(int default_pressure_threshold) {
55892792936f 8134802: LCM register pressure scheduling
mcberg
parents: 32082
diff changeset
  1730
  return default_pressure_threshold;
55892792936f 8134802: LCM register pressure scheduling
mcberg
parents: 32082
diff changeset
  1731
}
55892792936f 8134802: LCM register pressure scheduling
mcberg
parents: 32082
diff changeset
  1732
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1733
int Matcher::regnum_to_fpu_offset(int regnum) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1734
  return regnum - 32; // The FP registers are in the second chunk
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1735
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1736
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1737
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1738
address last_rethrow = NULL;  // debugging aid for Rethrow encoding
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1739
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1740
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1741
// Vector width in bytes
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  1742
const int Matcher::vector_width_in_bytes(BasicType bt) {
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  1743
  assert(MaxVectorSize == 8, "");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1744
  return 8;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1745
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1746
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1747
// Vector ideal reg
46378
4ccca1fdf627 8160748: Inconsistent types for ideal_reg
kbarrett
parents: 41673
diff changeset
  1748
const uint Matcher::vector_ideal_reg(int size) {
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  1749
  assert(MaxVectorSize == 8, "");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1750
  return Op_RegD;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1751
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1752
46378
4ccca1fdf627 8160748: Inconsistent types for ideal_reg
kbarrett
parents: 41673
diff changeset
  1753
const uint Matcher::vector_shift_count_ideal_reg(int size) {
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13886
diff changeset
  1754
  fatal("vector shift is not supported");
8df570f94294 7201026: add vector for shift count
kvn
parents: 13886
diff changeset
  1755
  return Node::NotAMachineReg;
8df570f94294 7201026: add vector for shift count
kvn
parents: 13886
diff changeset
  1756
}
8df570f94294 7201026: add vector for shift count
kvn
parents: 13886
diff changeset
  1757
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  1758
// Limits on vector size (number of elements) loaded into vector.
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  1759
const int Matcher::max_vector_size(const BasicType bt) {
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  1760
  assert(is_java_primitive(bt), "only primitive type vectors");
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  1761
  return vector_width_in_bytes(bt)/type2aelembytes(bt);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  1762
}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  1763
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  1764
const int Matcher::min_vector_size(const BasicType bt) {
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  1765
  return max_vector_size(bt); // Same as max.
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  1766
}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  1767
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  1768
// SPARC doesn't support misaligned vectors store/load.
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  1769
const bool Matcher::misaligned_vectors_ok() {
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  1770
  return false;
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  1771
}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
  1772
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22228
diff changeset
  1773
// Current (2013) SPARC platforms need to read original key
34162
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  1774
// to construct decryption expanded key
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22228
diff changeset
  1775
const bool Matcher::pass_original_key_for_aes() {
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22228
diff changeset
  1776
  return true;
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22228
diff changeset
  1777
}
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 22228
diff changeset
  1778
46595
18a062f9a227 8181868: Remove use of 'has_fast_fxtof()'
neliasso
parents: 46592
diff changeset
  1779
// NOTE: All currently supported SPARC HW provides fast conversion.
18a062f9a227 8181868: Remove use of 'has_fast_fxtof()'
neliasso
parents: 46592
diff changeset
  1780
const bool Matcher::convL2FSupported(void) { return true; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1781
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1782
// Is this branch offset short enough that a short branch can be used?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1783
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1784
// NOTE: If the platform does not provide any short branch variants, then
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1785
//       this method should return false for offset 0.
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  1786
bool Matcher::is_short_branch_offset(int rule, int br_size, int offset) {
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  1787
  // The passed offset is relative to address of the branch.
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  1788
  // Don't need to adjust the offset.
11190
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  1789
  return UseCBCond && Assembler::is_simm12(offset);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1790
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1791
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1792
const bool Matcher::isSimpleConstant64(jlong value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1793
  // Will one (StoreL ConL) be cheaper than two (StoreI ConI)?.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1794
  // Depends on optimizations in MacroAssembler::setx.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1795
  int hi = (int)(value >> 32);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1796
  int lo = (int)(value & ~0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1797
  return (hi == 0) || (hi == -1) || (lo == 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1798
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1799
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1800
// No scaling for the parameter the ClearArray node.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1801
const bool Matcher::init_array_count_is_in_bytes = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1802
10971
db45f6ab9a75 7097546: Optimize use of CMOVE instructions
kvn
parents: 10736
diff changeset
  1803
// No additional cost for CMOVL.
db45f6ab9a75 7097546: Optimize use of CMOVE instructions
kvn
parents: 10736
diff changeset
  1804
const int Matcher::long_cmove_cost() { return 0; }
db45f6ab9a75 7097546: Optimize use of CMOVE instructions
kvn
parents: 10736
diff changeset
  1805
46592
6e357e2c8143 8172231: SPARC ISA/CPU feature detection is broken/insufficient (on Solaris)
neliasso
parents: 46462
diff changeset
  1806
// CMOVF/CMOVD are expensive on e.g., T4 and SPARC64.
10971
db45f6ab9a75 7097546: Optimize use of CMOVE instructions
kvn
parents: 10736
diff changeset
  1807
const int Matcher::float_cmove_cost() {
46592
6e357e2c8143 8172231: SPARC ISA/CPU feature detection is broken/insufficient (on Solaris)
neliasso
parents: 46462
diff changeset
  1808
  return VM_Version::has_fast_cmove() ? 0 : ConditionalMoveLimit;
10971
db45f6ab9a75 7097546: Optimize use of CMOVE instructions
kvn
parents: 10736
diff changeset
  1809
}
db45f6ab9a75 7097546: Optimize use of CMOVE instructions
kvn
parents: 10736
diff changeset
  1810
22844
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 22838
diff changeset
  1811
// Does the CPU require late expand (see block.cpp for description of late expand)?
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 22838
diff changeset
  1812
const bool Matcher::require_postalloc_expand = false;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 22838
diff changeset
  1813
8868
1bae515b806b 7029017: Additional architecture support for c2 compiler
roland
parents: 8324
diff changeset
  1814
// Do we need to mask the count passed to shift instructions or does
1bae515b806b 7029017: Additional architecture support for c2 compiler
roland
parents: 8324
diff changeset
  1815
// the cpu only look at the lower 5/6 bits anyway?
1bae515b806b 7029017: Additional architecture support for c2 compiler
roland
parents: 8324
diff changeset
  1816
const bool Matcher::need_masked_shift_count = false;
1bae515b806b 7029017: Additional architecture support for c2 compiler
roland
parents: 8324
diff changeset
  1817
5698
091095915ee6 6954029: Improve implicit null check generation with compressed oops
kvn
parents: 5694
diff changeset
  1818
bool Matcher::narrow_oop_use_complex_address() {
091095915ee6 6954029: Improve implicit null check generation with compressed oops
kvn
parents: 5694
diff changeset
  1819
  assert(UseCompressedOops, "only for compressed oops code");
091095915ee6 6954029: Improve implicit null check generation with compressed oops
kvn
parents: 5694
diff changeset
  1820
  return false;
091095915ee6 6954029: Improve implicit null check generation with compressed oops
kvn
parents: 5694
diff changeset
  1821
}
091095915ee6 6954029: Improve implicit null check generation with compressed oops
kvn
parents: 5694
diff changeset
  1822
13969
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  1823
bool Matcher::narrow_klass_use_complex_address() {
19979
ebe1dbb6e1aa 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents: 19319
diff changeset
  1824
  assert(UseCompressedClassPointers, "only for compressed klass code");
13969
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  1825
  return false;
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  1826
}
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  1827
41673
e8b3ccb2cfcf 8155729: C2: Skip transformation of LoadConP for heap-based compressed oops
mdoerr
parents: 41053
diff changeset
  1828
bool Matcher::const_oop_prefer_decode() {
e8b3ccb2cfcf 8155729: C2: Skip transformation of LoadConP for heap-based compressed oops
mdoerr
parents: 41053
diff changeset
  1829
  // TODO: Check if loading ConP from TOC in heap-based mode is better:
e8b3ccb2cfcf 8155729: C2: Skip transformation of LoadConP for heap-based compressed oops
mdoerr
parents: 41053
diff changeset
  1830
  // Prefer ConN+DecodeN over ConP in simple compressed oops mode.
54780
f8d182aedc92 8223136: Move compressed oops functions to CompressedOops class
stefank
parents: 47881
diff changeset
  1831
  // return CompressedOops::base() == NULL;
41673
e8b3ccb2cfcf 8155729: C2: Skip transformation of LoadConP for heap-based compressed oops
mdoerr
parents: 41053
diff changeset
  1832
  return true;
e8b3ccb2cfcf 8155729: C2: Skip transformation of LoadConP for heap-based compressed oops
mdoerr
parents: 41053
diff changeset
  1833
}
e8b3ccb2cfcf 8155729: C2: Skip transformation of LoadConP for heap-based compressed oops
mdoerr
parents: 41053
diff changeset
  1834
e8b3ccb2cfcf 8155729: C2: Skip transformation of LoadConP for heap-based compressed oops
mdoerr
parents: 41053
diff changeset
  1835
bool Matcher::const_klass_prefer_decode() {
e8b3ccb2cfcf 8155729: C2: Skip transformation of LoadConP for heap-based compressed oops
mdoerr
parents: 41053
diff changeset
  1836
  // TODO: Check if loading ConP from TOC in heap-based mode is better:
e8b3ccb2cfcf 8155729: C2: Skip transformation of LoadConP for heap-based compressed oops
mdoerr
parents: 41053
diff changeset
  1837
  // Prefer ConNKlass+DecodeNKlass over ConP in simple compressed klass mode.
54780
f8d182aedc92 8223136: Move compressed oops functions to CompressedOops class
stefank
parents: 47881
diff changeset
  1838
  // return CompressedKlassPointers::base() == NULL;
41673
e8b3ccb2cfcf 8155729: C2: Skip transformation of LoadConP for heap-based compressed oops
mdoerr
parents: 41053
diff changeset
  1839
  return true;
e8b3ccb2cfcf 8155729: C2: Skip transformation of LoadConP for heap-based compressed oops
mdoerr
parents: 41053
diff changeset
  1840
}
e8b3ccb2cfcf 8155729: C2: Skip transformation of LoadConP for heap-based compressed oops
mdoerr
parents: 41053
diff changeset
  1841
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1842
// Is it better to copy float constants, or load them directly from memory?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1843
// Intel can load a float constant from a direct address, requiring no
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1844
// extra registers.  Most RISCs will have to materialize an address into a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1845
// register first, so they would do better to copy the constant from stack.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1846
const bool Matcher::rematerialize_float_constants = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1847
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1848
// If CPU can load and store mis-aligned doubles directly then no fixup is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1849
// needed.  Else we split the double into 2 integer pieces and move it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1850
// piece-by-piece.  Only happens when passing doubles into C code as the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1851
// Java calling convention forces doubles to be aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1852
const bool Matcher::misaligned_doubles_ok = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1853
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1854
// No-op on SPARC.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1855
void Matcher::pd_implicit_null_fixup(MachNode *node, uint idx) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1856
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1857
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1858
// Advertise here if the CPU requires explicit rounding operations
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1859
// to implement the UseStrictFP mode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1860
const bool Matcher::strict_fp_requires_explicit_rounding = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1861
26804
4b23f22faae6 8050022: linux-sparcv9: assert(SharedSkipVerify || obj->is_oop()) failed: sanity check
morris
parents: 25933
diff changeset
  1862
// Are floats converted to double when stored to stack during deoptimization?
5025
05adc9b8f96a 6910664: C2: java/util/Arrays/Sorting.java fails with DeoptimizeALot flag
kvn
parents: 4589
diff changeset
  1863
// Sparc does not handle callee-save floats.
05adc9b8f96a 6910664: C2: java/util/Arrays/Sorting.java fails with DeoptimizeALot flag
kvn
parents: 4589
diff changeset
  1864
bool Matcher::float_in_double() { return false; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1865
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1866
// Do ints take an entire long register or just half?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1867
// Note that we if-def off of _LP64.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1868
// The relevant question is how the int is callee-saved.  In _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1869
// the whole long is written but de-opt'ing will have to extract
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1870
// the relevant 32 bits, in not-_LP64 only the low 32 bits is written.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1871
const bool Matcher::int_in_long = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1872
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1873
// Return whether or not this register is ever used as an argument.  This
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1874
// function is used on startup to build the trampoline stubs in generateOptoStub.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1875
// Registers not mentioned will be killed by the VM call in the trampoline, and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1876
// arguments in those registers not be available to the callee.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1877
bool Matcher::can_be_java_arg( int reg ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1878
  // Standard sparc 6 args in registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1879
  if( reg == R_I0_num ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1880
      reg == R_I1_num ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1881
      reg == R_I2_num ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1882
      reg == R_I3_num ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1883
      reg == R_I4_num ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1884
      reg == R_I5_num ) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1885
  // 64-bit builds can pass 64-bit pointers and longs in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1886
  // the high I registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1887
  if( reg == R_I0H_num ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1888
      reg == R_I1H_num ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1889
      reg == R_I2H_num ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1890
      reg == R_I3H_num ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1891
      reg == R_I4H_num ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1892
      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
  1893
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  1894
  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
  1895
    return true;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  1896
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  1897
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1898
  // A few float args in registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1899
  if( reg >= R_F0_num && reg <= R_F7_num ) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1900
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1901
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1902
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1903
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1904
bool Matcher::is_spillable_arg( int reg ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1905
  return can_be_java_arg(reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1906
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1907
7115
32300e243300 6987135: Performance regression on Intel platform with 32-bits edition between 6u13 and 6u14.
kvn
parents: 6418
diff changeset
  1908
bool Matcher::use_asm_for_ldiv_by_con( jlong divisor ) {
32300e243300 6987135: Performance regression on Intel platform with 32-bits edition between 6u13 and 6u14.
kvn
parents: 6418
diff changeset
  1909
  // Use hardware SDIVX instruction when it is
32300e243300 6987135: Performance regression on Intel platform with 32-bits edition between 6u13 and 6u14.
kvn
parents: 6418
diff changeset
  1910
  // faster than a code which use multiply.
32300e243300 6987135: Performance regression on Intel platform with 32-bits edition between 6u13 and 6u14.
kvn
parents: 6418
diff changeset
  1911
  return VM_Version::has_fast_idiv();
32300e243300 6987135: Performance regression on Intel platform with 32-bits edition between 6u13 and 6u14.
kvn
parents: 6418
diff changeset
  1912
}
32300e243300 6987135: Performance regression on Intel platform with 32-bits edition between 6u13 and 6u14.
kvn
parents: 6418
diff changeset
  1913
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1914
// Register for DIVI projection of divmodI
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1915
RegMask Matcher::divI_proj_mask() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1916
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1917
  return RegMask();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1918
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1919
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1920
// Register for MODI projection of divmodI
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1921
RegMask Matcher::modI_proj_mask() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1922
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1923
  return RegMask();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1924
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1925
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1926
// Register for DIVL projection of divmodL
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1927
RegMask Matcher::divL_proj_mask() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1928
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1929
  return RegMask();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1930
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1931
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1932
// Register for MODL projection of divmodL
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1933
RegMask Matcher::modL_proj_mask() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1934
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1935
  return RegMask();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1936
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1937
4566
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4096
diff changeset
  1938
const RegMask Matcher::method_handle_invoke_SP_save_mask() {
11197
158eecd6b330 7090968: Allow adlc register class to depend on runtime conditions
roland
parents: 11190
diff changeset
  1939
  return L7_REGP_mask();
4566
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4096
diff changeset
  1940
}
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4096
diff changeset
  1941
38286
0ddb6f84e138 8154826: AArch64: take advantage better of base + shifted offset addressing mode
roland
parents: 38236
diff changeset
  1942
38236
510f77046e00 8154943: AArch64: redundant address computation instructions with vectorization
roland
parents: 38049
diff changeset
  1943
const bool Matcher::convi2l_type_required = true;
510f77046e00 8154943: AArch64: redundant address computation instructions with vectorization
roland
parents: 38049
diff changeset
  1944
38286
0ddb6f84e138 8154826: AArch64: take advantage better of base + shifted offset addressing mode
roland
parents: 38236
diff changeset
  1945
// Should the Matcher clone shifts on addressing modes, expecting them
0ddb6f84e138 8154826: AArch64: take advantage better of base + shifted offset addressing mode
roland
parents: 38236
diff changeset
  1946
// to be subsumed into complex addressing expressions or compute them
0ddb6f84e138 8154826: AArch64: take advantage better of base + shifted offset addressing mode
roland
parents: 38236
diff changeset
  1947
// into registers?
0ddb6f84e138 8154826: AArch64: take advantage better of base + shifted offset addressing mode
roland
parents: 38236
diff changeset
  1948
bool Matcher::clone_address_expressions(AddPNode* m, Matcher::MStack& mstack, VectorSet& address_visited) {
0ddb6f84e138 8154826: AArch64: take advantage better of base + shifted offset addressing mode
roland
parents: 38236
diff changeset
  1949
  return clone_base_plus_offset_address(m, mstack, address_visited);
0ddb6f84e138 8154826: AArch64: take advantage better of base + shifted offset addressing mode
roland
parents: 38236
diff changeset
  1950
}
0ddb6f84e138 8154826: AArch64: take advantage better of base + shifted offset addressing mode
roland
parents: 38236
diff changeset
  1951
0ddb6f84e138 8154826: AArch64: take advantage better of base + shifted offset addressing mode
roland
parents: 38236
diff changeset
  1952
void Compile::reshape_address(AddPNode* addp) {
0ddb6f84e138 8154826: AArch64: take advantage better of base + shifted offset addressing mode
roland
parents: 38236
diff changeset
  1953
}
0ddb6f84e138 8154826: AArch64: take advantage better of base + shifted offset addressing mode
roland
parents: 38236
diff changeset
  1954
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1955
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1956
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1957
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1958
// The intptr_t operand types, defined by textual substitution.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1959
// (Cf. opto/type.hpp.  This lets us avoid many, many other ifdefs.)
3177
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  1960
#define immX      immL
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  1961
#define immX13    immL13
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  1962
#define immX13m7  immL13m7
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  1963
#define iRegX     iRegL
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  1964
#define g1RegX    g1RegL
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1965
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1966
//----------ENCODING BLOCK-----------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1967
// This block specifies the encoding classes used by the compiler to output
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1968
// byte streams.  Encoding classes are parameterized macros used by
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1969
// Machine Instruction Nodes in order to generate the bit encoding of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1970
// instruction.  Operands specify their base encoding interface with the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1971
// interface keyword.  There are currently supported four interfaces,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1972
// REG_INTER, CONST_INTER, MEMORY_INTER, & COND_INTER.  REG_INTER causes an
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1973
// operand to generate a function which returns its register number when
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1974
// queried.   CONST_INTER causes an operand to generate a function which
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1975
// returns the value of the constant when queried.  MEMORY_INTER causes an
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1976
// operand to generate four functions which return the Base Register, the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1977
// Index Register, the Scale Value, and the Offset Value of the operand when
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1978
// queried.  COND_INTER causes an operand to generate six functions which
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1979
// return the encoding code (ie - encoding bits for the instruction)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1980
// associated with each basic boolean condition for a conditional instruction.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1981
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1982
// Instructions specify two basic values for encoding.  Again, a function
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1983
// is available to check if the constant displacement is an oop. They use the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1984
// ins_encode keyword to specify their encoding classes (which must be
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1985
// a sequence of enc_class names, and their parameters, specified in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1986
// the encoding block), and they use the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1987
// opcode keyword to specify, in order, their primary, secondary, and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1988
// tertiary opcode.  Only the opcode sections which a particular instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1989
// needs for encoding need to be specified.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1990
encode %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1991
  enc_class enc_untested %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1992
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1993
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1994
    __ untested("encoding");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1995
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1996
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1997
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1998
  enc_class form3_mem_reg( memory mem, iRegI dst ) %{
22228
f0a0d6be25c6 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 21523
diff changeset
  1999
    emit_form3_mem_reg(cbuf, ra_, this, $primary, $tertiary,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2000
                       $mem$$base, $mem$$disp, $mem$$index, $dst$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2001
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2002
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  2003
  enc_class simple_form3_mem_reg( memory mem, iRegI dst ) %{
22228
f0a0d6be25c6 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 21523
diff changeset
  2004
    emit_form3_mem_reg(cbuf, ra_, this, $primary, -1,
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  2005
                       $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
  2006
  %}
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 781
diff changeset
  2007
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2008
  enc_class form3_mem_prefetch_read( memory mem ) %{
22228
f0a0d6be25c6 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 21523
diff changeset
  2009
    emit_form3_mem_reg(cbuf, ra_, this, $primary, -1,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2010
                       $mem$$base, $mem$$disp, $mem$$index, 0/*prefetch function many-reads*/);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2011
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2012
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2013
  enc_class form3_mem_prefetch_write( memory mem ) %{
22228
f0a0d6be25c6 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 21523
diff changeset
  2014
    emit_form3_mem_reg(cbuf, ra_, this, $primary, -1,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2015
                       $mem$$base, $mem$$disp, $mem$$index, 2/*prefetch function many-writes*/);
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 form3_mem_reg_long_unaligned_marshal( memory mem, iRegL reg ) %{
11190
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  2019
    assert(Assembler::is_simm13($mem$$disp  ), "need disp and disp+4");
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  2020
    assert(Assembler::is_simm13($mem$$disp+4), "need disp and disp+4");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2021
    guarantee($mem$$index == R_G0_enc, "double index?");
22228
f0a0d6be25c6 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 21523
diff changeset
  2022
    emit_form3_mem_reg(cbuf, ra_, this, $primary, -1, $mem$$base, $mem$$disp+4, R_G0_enc, R_O7_enc );
f0a0d6be25c6 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 21523
diff changeset
  2023
    emit_form3_mem_reg(cbuf, ra_, this, $primary, -1, $mem$$base, $mem$$disp,   R_G0_enc, $reg$$reg );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2024
    emit3_simm13( cbuf, Assembler::arith_op, $reg$$reg, Assembler::sllx_op3, $reg$$reg, 0x1020 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2025
    emit3( cbuf, Assembler::arith_op, $reg$$reg, Assembler::or_op3, $reg$$reg, 0, R_O7_enc );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2026
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2027
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2028
  enc_class form3_mem_reg_double_unaligned( memory mem, RegD_low reg ) %{
11190
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  2029
    assert(Assembler::is_simm13($mem$$disp  ), "need disp and disp+4");
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  2030
    assert(Assembler::is_simm13($mem$$disp+4), "need disp and disp+4");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2031
    guarantee($mem$$index == R_G0_enc, "double index?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2032
    // Load long with 2 instructions
22228
f0a0d6be25c6 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 21523
diff changeset
  2033
    emit_form3_mem_reg(cbuf, ra_, this, $primary, -1, $mem$$base, $mem$$disp,   R_G0_enc, $reg$$reg+0 );
f0a0d6be25c6 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 21523
diff changeset
  2034
    emit_form3_mem_reg(cbuf, ra_, this, $primary, -1, $mem$$base, $mem$$disp+4, R_G0_enc, $reg$$reg+1 );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2035
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2036
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2037
  //%%% form3_mem_plus_4_reg is a hack--get rid of it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2038
  enc_class form3_mem_plus_4_reg( memory mem, iRegI dst ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2039
    guarantee($mem$$disp, "cannot offset a reg-reg operand by 4");
22228
f0a0d6be25c6 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 21523
diff changeset
  2040
    emit_form3_mem_reg(cbuf, ra_, this, $primary, -1, $mem$$base, $mem$$disp + 4, $mem$$index, $dst$$reg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2041
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2042
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2043
  enc_class form3_g0_rs2_rd_move( iRegI rs2, iRegI rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2044
    // Encode a reg-reg copy.  If it is useless, then empty encoding.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2045
    if( $rs2$$reg != $rd$$reg )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2046
      emit3( cbuf, Assembler::arith_op, $rd$$reg, Assembler::or_op3, 0, 0, $rs2$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2047
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2048
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2049
  // Target lo half of long
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2050
  enc_class form3_g0_rs2_rd_move_lo( iRegI rs2, iRegL rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2051
    // Encode a reg-reg copy.  If it is useless, then empty encoding.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2052
    if( $rs2$$reg != LONG_LO_REG($rd$$reg) )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2053
      emit3( cbuf, Assembler::arith_op, LONG_LO_REG($rd$$reg), Assembler::or_op3, 0, 0, $rs2$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2054
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2055
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2056
  // Source lo half of long
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2057
  enc_class form3_g0_rs2_rd_move_lo2( iRegL rs2, iRegI rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2058
    // Encode a reg-reg copy.  If it is useless, then empty encoding.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2059
    if( LONG_LO_REG($rs2$$reg) != $rd$$reg )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2060
      emit3( cbuf, Assembler::arith_op, $rd$$reg, Assembler::or_op3, 0, 0, LONG_LO_REG($rs2$$reg) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2061
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2062
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2063
  // Target hi half of long
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2064
  enc_class form3_rs1_rd_copysign_hi( iRegI rs1, iRegL rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2065
    emit3_simm13( cbuf, Assembler::arith_op, $rd$$reg, Assembler::sra_op3, $rs1$$reg, 31 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2066
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2067
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2068
  // Source lo half of long, and leave it sign extended.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2069
  enc_class form3_rs1_rd_signextend_lo1( iRegL rs1, iRegI rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2070
    // Sign extend low half
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2071
    emit3( cbuf, Assembler::arith_op, $rd$$reg, Assembler::sra_op3, $rs1$$reg, 0, 0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2072
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2073
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2074
  // Source hi half of long, and leave it sign extended.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2075
  enc_class form3_rs1_rd_copy_hi1( iRegL rs1, iRegI rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2076
    // Shift high half to low half
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2077
    emit3_simm13( cbuf, Assembler::arith_op, $rd$$reg, Assembler::srlx_op3, $rs1$$reg, 32 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2078
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2079
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2080
  // Source hi half of long
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2081
  enc_class form3_g0_rs2_rd_move_hi2( iRegL rs2, iRegI rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2082
    // Encode a reg-reg copy.  If it is useless, then empty encoding.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2083
    if( LONG_HI_REG($rs2$$reg) != $rd$$reg )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2084
      emit3( cbuf, Assembler::arith_op, $rd$$reg, Assembler::or_op3, 0, 0, LONG_HI_REG($rs2$$reg) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2085
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2086
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2087
  enc_class form3_rs1_rs2_rd( iRegI rs1, iRegI rs2, iRegI rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2088
    emit3( cbuf, $secondary, $rd$$reg, $primary, $rs1$$reg, 0, $rs2$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2089
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2090
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2091
  enc_class enc_to_bool( iRegI src, iRegI dst ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2092
    emit3       ( cbuf, Assembler::arith_op,         0, Assembler::subcc_op3, 0, 0, $src$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2093
    emit3_simm13( cbuf, Assembler::arith_op, $dst$$reg, Assembler::addc_op3 , 0, 0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2094
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2095
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2096
  enc_class enc_ltmask( iRegI p, iRegI q, iRegI dst ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2097
    emit3       ( cbuf, Assembler::arith_op,         0, Assembler::subcc_op3, $p$$reg, 0, $q$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2098
    // clear if nothing else is happening
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2099
    emit3_simm13( cbuf, Assembler::arith_op, $dst$$reg, Assembler::or_op3, 0,  0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2100
    // blt,a,pn done
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2101
    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
  2102
    // mov dst,-1 in delay slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2103
    emit3_simm13( cbuf, Assembler::arith_op, $dst$$reg, Assembler::or_op3, 0, -1 );
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 form3_rs1_imm5_rd( iRegI rs1, immU5 imm5, iRegI rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2107
    emit3_simm13( cbuf, $secondary, $rd$$reg, $primary, $rs1$$reg, $imm5$$constant & 0x1F );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2108
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2109
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2110
  enc_class form3_sd_rs1_imm6_rd( iRegL rs1, immU6 imm6, iRegL rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2111
    emit3_simm13( cbuf, $secondary, $rd$$reg, $primary, $rs1$$reg, ($imm6$$constant & 0x3F) | 0x1000 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2112
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2113
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2114
  enc_class form3_sd_rs1_rs2_rd( iRegL rs1, iRegI rs2, iRegL rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2115
    emit3( cbuf, $secondary, $rd$$reg, $primary, $rs1$$reg, 0x80, $rs2$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2116
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2117
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2118
  enc_class form3_rs1_simm13_rd( iRegI rs1, immI13 simm13, iRegI rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2119
    emit3_simm13( cbuf, $secondary, $rd$$reg, $primary, $rs1$$reg, $simm13$$constant );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2120
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2121
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2122
  enc_class move_return_pc_to_o1() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2123
    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
  2124
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2125
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2126
  /* %%% merge with enc_to_bool */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2127
  enc_class enc_convP2B( iRegI dst, iRegP src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2128
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2129
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2130
    Register   src_reg = reg_to_register_object($src$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2131
    Register   dst_reg = reg_to_register_object($dst$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2132
    __ movr(Assembler::rc_nz, src_reg, 1, dst_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2133
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2134
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2135
  enc_class enc_cadd_cmpLTMask( iRegI p, iRegI q, iRegI y, iRegI tmp ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2136
    // (Set p (AddI (AndI (CmpLTMask p q) y) (SubI p q)))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2137
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2138
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2139
    Register   p_reg = reg_to_register_object($p$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2140
    Register   q_reg = reg_to_register_object($q$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2141
    Register   y_reg = reg_to_register_object($y$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2142
    Register tmp_reg = reg_to_register_object($tmp$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2143
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2144
    __ subcc( p_reg, q_reg,   p_reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2145
    __ add  ( p_reg, y_reg, tmp_reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2146
    __ movcc( Assembler::less, false, Assembler::icc, tmp_reg, p_reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2147
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2148
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2149
  enc_class form_d2i_helper(regD src, regF dst) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2150
    // fcmp %fcc0,$src,$src
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2151
    emit3( cbuf, Assembler::arith_op , Assembler::fcc0, Assembler::fpop2_op3, $src$$reg, Assembler::fcmpd_opf, $src$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2152
    // branch %fcc0 not-nan, predict taken
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2153
    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
  2154
    // fdtoi $src,$dst
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2155
    emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3,         0, Assembler::fdtoi_opf, $src$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2156
    // fitos $dst,$dst (if nan)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2157
    emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3,         0, Assembler::fitos_opf, $dst$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2158
    // clear $dst (if nan)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2159
    emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3, $dst$$reg, Assembler::fsubs_opf, $dst$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2160
    // carry on here...
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2161
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2162
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2163
  enc_class form_d2l_helper(regD src, regD dst) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2164
    // fcmp %fcc0,$src,$src  check for NAN
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2165
    emit3( cbuf, Assembler::arith_op , Assembler::fcc0, Assembler::fpop2_op3, $src$$reg, Assembler::fcmpd_opf, $src$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2166
    // branch %fcc0 not-nan, predict taken
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2167
    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
  2168
    // fdtox $src,$dst   convert in delay slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2169
    emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3,         0, Assembler::fdtox_opf, $src$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2170
    // fxtod $dst,$dst  (if nan)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2171
    emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3,         0, Assembler::fxtod_opf, $dst$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2172
    // clear $dst (if nan)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2173
    emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3, $dst$$reg, Assembler::fsubd_opf, $dst$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2174
    // carry on here...
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 form_f2i_helper(regF src, regF dst) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2178
    // fcmps %fcc0,$src,$src
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2179
    emit3( cbuf, Assembler::arith_op , Assembler::fcc0, Assembler::fpop2_op3, $src$$reg, Assembler::fcmps_opf, $src$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2180
    // branch %fcc0 not-nan, predict taken
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2181
    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
  2182
    // fstoi $src,$dst
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2183
    emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3,         0, Assembler::fstoi_opf, $src$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2184
    // fitos $dst,$dst (if nan)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2185
    emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3,         0, Assembler::fitos_opf, $dst$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2186
    // clear $dst (if nan)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2187
    emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3, $dst$$reg, Assembler::fsubs_opf, $dst$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2188
    // carry on here...
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2189
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2190
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2191
  enc_class form_f2l_helper(regF src, regD dst) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2192
    // fcmps %fcc0,$src,$src
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2193
    emit3( cbuf, Assembler::arith_op , Assembler::fcc0, Assembler::fpop2_op3, $src$$reg, Assembler::fcmps_opf, $src$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2194
    // branch %fcc0 not-nan, predict taken
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2195
    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
  2196
    // fstox $src,$dst
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2197
    emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3,         0, Assembler::fstox_opf, $src$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2198
    // fxtod $dst,$dst (if nan)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2199
    emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3,         0, Assembler::fxtod_opf, $dst$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2200
    // clear $dst (if nan)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2201
    emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3, $dst$$reg, Assembler::fsubd_opf, $dst$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2202
    // carry on here...
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2203
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2204
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2205
  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
  2206
  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
  2207
  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
  2208
  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
  2209
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2210
  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
  2211
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2212
  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
  2213
  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
  2214
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2215
  enc_class form3_opf_rs1F_rs2F_rdF( regF rs1, regF rs2, regF rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2216
    emit3( cbuf, $secondary, $rd$$reg, $primary, $rs1$$reg, $tertiary, $rs2$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2217
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2218
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2219
  enc_class form3_opf_rs1D_rs2D_rdD( regD rs1, regD rs2, regD rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2220
    emit3( cbuf, $secondary, $rd$$reg, $primary, $rs1$$reg, $tertiary, $rs2$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2221
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2222
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2223
  enc_class form3_opf_rs1F_rs2F_fcc( regF rs1, regF rs2, flagsRegF fcc ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2224
    emit3( cbuf, $secondary, $fcc$$reg, $primary, $rs1$$reg, $tertiary, $rs2$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2225
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2226
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2227
  enc_class form3_opf_rs1D_rs2D_fcc( regD rs1, regD rs2, flagsRegF fcc ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2228
    emit3( cbuf, $secondary, $fcc$$reg, $primary, $rs1$$reg, $tertiary, $rs2$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2229
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2230
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2231
  enc_class form3_convI2F(regF rs2, regF rd) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2232
    emit3(cbuf,Assembler::arith_op,$rd$$reg,Assembler::fpop1_op3,0,$secondary,$rs2$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2233
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2234
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2235
  // Encloding class for traceable jumps
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2236
  enc_class form_jmpl(g3RegP dest) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2237
    emit_jmpl(cbuf, $dest$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2238
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2239
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2240
  enc_class form_jmpl_set_exception_pc(g1RegP dest) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2241
    emit_jmpl_set_exception_pc(cbuf, $dest$$reg);
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 form2_nop() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2245
    emit_nop(cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2246
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2247
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2248
  enc_class form2_illtrap() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2249
    emit_illtrap(cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2250
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2251
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2252
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2253
  // Compare longs and convert into -1, 0, 1.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2254
  enc_class cmpl_flag( iRegL src1, iRegL src2, iRegI dst ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2255
    // CMP $src1,$src2
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2256
    emit3( cbuf, Assembler::arith_op, 0, Assembler::subcc_op3, $src1$$reg, 0, $src2$$reg );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2257
    // blt,a,pn done
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2258
    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
  2259
    // mov dst,-1 in delay slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2260
    emit3_simm13( cbuf, Assembler::arith_op, $dst$$reg, Assembler::or_op3, 0, -1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2261
    // bgt,a,pn done
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2262
    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
  2263
    // mov dst,1 in delay slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2264
    emit3_simm13( cbuf, Assembler::arith_op, $dst$$reg, Assembler::or_op3, 0,  1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2265
    // CLR    $dst
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2266
    emit3( cbuf, Assembler::arith_op, $dst$$reg, Assembler::or_op3 , 0, 0, 0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2267
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2268
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2269
  enc_class enc_PartialSubtypeCheck() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2270
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2271
    __ call(StubRoutines::Sparc::partial_subtype_check(), relocInfo::runtime_call_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2272
    __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2273
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2274
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  2275
  enc_class enc_bp( label labl, cmpOp cmp, flagsReg cc ) %{
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2276
    MacroAssembler _masm(&cbuf);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  2277
    Label* L = $labl$$label;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2278
    Assembler::Predict predict_taken =
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  2279
      cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  2280
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  2281
    __ bp( (Assembler::Condition)($cmp$$cmpcode), false, Assembler::icc, predict_taken, *L);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2282
    __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2283
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2284
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  2285
  enc_class enc_bpr( label labl, cmpOp_reg cmp, iRegI op1 ) %{
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2286
    MacroAssembler _masm(&cbuf);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  2287
    Label* L = $labl$$label;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2288
    Assembler::Predict predict_taken =
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  2289
      cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  2290
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  2291
    __ bpr( (Assembler::RCondition)($cmp$$cmpcode), false, predict_taken, as_Register($op1$$reg), *L);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2292
    __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2293
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2294
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2295
  enc_class enc_cmov_reg( cmpOp cmp, iRegI dst, iRegI src, immI pcc) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2296
    int op = (Assembler::arith_op << 30) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2297
             ($dst$$reg << 25) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2298
             (Assembler::movcc_op3 << 19) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2299
             (1 << 18) |                    // cc2 bit for 'icc'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2300
             ($cmp$$cmpcode << 14) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2301
             (0 << 13) |                    // select register move
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2302
             ($pcc$$constant << 11) |       // cc1, cc0 bits for 'icc' or 'xcc'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2303
             ($src$$reg << 0);
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5702
diff changeset
  2304
    cbuf.insts()->emit_int32(op);
1
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_imm( cmpOp cmp, iRegI dst, immI11 src, immI pcc ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2308
    int simm11 = $src$$constant & ((1<<11)-1); // Mask to 11 bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2309
    int op = (Assembler::arith_op << 30) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2310
             ($dst$$reg << 25) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2311
             (Assembler::movcc_op3 << 19) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2312
             (1 << 18) |                    // cc2 bit for 'icc'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2313
             ($cmp$$cmpcode << 14) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2314
             (1 << 13) |                    // select immediate move
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2315
             ($pcc$$constant << 11) |       // cc1, cc0 bits for 'icc'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2316
             (simm11 << 0);
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5702
diff changeset
  2317
    cbuf.insts()->emit_int32(op);
1
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_reg_f( cmpOpF cmp, iRegI dst, iRegI src, flagsRegF fcc ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2321
    int op = (Assembler::arith_op << 30) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2322
             ($dst$$reg << 25) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2323
             (Assembler::movcc_op3 << 19) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2324
             (0 << 18) |                    // cc2 bit for 'fccX'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2325
             ($cmp$$cmpcode << 14) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2326
             (0 << 13) |                    // select register move
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2327
             ($fcc$$reg << 11) |            // cc1, cc0 bits for fcc0-fcc3
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2328
             ($src$$reg << 0);
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5702
diff changeset
  2329
    cbuf.insts()->emit_int32(op);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2330
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2331
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2332
  enc_class enc_cmov_imm_f( cmpOp cmp, iRegI dst, immI11 src, flagsRegF fcc ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2333
    int simm11 = $src$$constant & ((1<<11)-1); // Mask to 11 bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2334
    int op = (Assembler::arith_op << 30) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2335
             ($dst$$reg << 25) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2336
             (Assembler::movcc_op3 << 19) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2337
             (0 << 18) |                    // cc2 bit for 'fccX'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2338
             ($cmp$$cmpcode << 14) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2339
             (1 << 13) |                    // select immediate move
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2340
             ($fcc$$reg << 11) |            // cc1, cc0 bits for fcc0-fcc3
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2341
             (simm11 << 0);
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5702
diff changeset
  2342
    cbuf.insts()->emit_int32(op);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2343
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2344
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2345
  enc_class enc_cmovf_reg( cmpOp cmp, regD dst, regD src, immI pcc ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2346
    int op = (Assembler::arith_op << 30) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2347
             ($dst$$reg << 25) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2348
             (Assembler::fpop2_op3 << 19) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2349
             (0 << 18) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2350
             ($cmp$$cmpcode << 14) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2351
             (1 << 13) |                    // select register move
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2352
             ($pcc$$constant << 11) |       // cc1-cc0 bits for 'icc' or 'xcc'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2353
             ($primary << 5) |              // select single, double or quad
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2354
             ($src$$reg << 0);
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5702
diff changeset
  2355
    cbuf.insts()->emit_int32(op);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2356
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2357
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2358
  enc_class enc_cmovff_reg( cmpOpF cmp, flagsRegF fcc, regD dst, regD src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2359
    int op = (Assembler::arith_op << 30) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2360
             ($dst$$reg << 25) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2361
             (Assembler::fpop2_op3 << 19) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2362
             (0 << 18) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2363
             ($cmp$$cmpcode << 14) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2364
             ($fcc$$reg << 11) |            // cc2-cc0 bits for 'fccX'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2365
             ($primary << 5) |              // select single, double or quad
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2366
             ($src$$reg << 0);
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5702
diff changeset
  2367
    cbuf.insts()->emit_int32(op);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2368
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2369
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2370
  // Used by the MIN/MAX encodings.  Same as a CMOV, but
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2371
  // the condition comes from opcode-field instead of an argument.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2372
  enc_class enc_cmov_reg_minmax( iRegI dst, iRegI src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2373
    int op = (Assembler::arith_op << 30) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2374
             ($dst$$reg << 25) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2375
             (Assembler::movcc_op3 << 19) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2376
             (1 << 18) |                    // cc2 bit for 'icc'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2377
             ($primary << 14) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2378
             (0 << 13) |                    // select register move
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2379
             (0 << 11) |                    // cc1, cc0 bits for 'icc'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2380
             ($src$$reg << 0);
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5702
diff changeset
  2381
    cbuf.insts()->emit_int32(op);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2382
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2383
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2384
  enc_class enc_cmov_reg_minmax_long( iRegL dst, iRegL src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2385
    int op = (Assembler::arith_op << 30) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2386
             ($dst$$reg << 25) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2387
             (Assembler::movcc_op3 << 19) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2388
             (6 << 16) |                    // cc2 bit for 'xcc'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2389
             ($primary << 14) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2390
             (0 << 13) |                    // select register move
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2391
             (0 << 11) |                    // cc1, cc0 bits for 'icc'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2392
             ($src$$reg << 0);
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5702
diff changeset
  2393
    cbuf.insts()->emit_int32(op);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2394
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2395
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2396
  enc_class Set13( immI13 src, iRegI rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2397
    emit3_simm13( cbuf, Assembler::arith_op, $rd$$reg, Assembler::or_op3, 0, $src$$constant );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2398
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2399
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2400
  enc_class SetHi22( immI src, iRegI rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2401
    emit2_22( cbuf, Assembler::branch_op, $rd$$reg, Assembler::sethi_op2, $src$$constant );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2402
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2403
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2404
  enc_class Set32( immI src, iRegI rd ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2405
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2406
    __ set($src$$constant, reg_to_register_object($rd$$reg));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2407
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2408
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2409
  enc_class call_epilog %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2410
    if( VerifyStackAtCalls ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2411
      MacroAssembler _masm(&cbuf);
24018
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 24008
diff changeset
  2412
      int framesize = ra_->C->frame_size_in_bytes();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2413
      Register temp_reg = G3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2414
      __ add(SP, framesize, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2415
      __ cmp(temp_reg, FP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2416
      __ breakpoint_trap(Assembler::notEqual, Assembler::ptr_cc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2417
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2418
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2419
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2420
  // 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
  2421
  // to G1 so the register allocator will not have to deal with the misaligned register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2422
  // pair.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2423
  enc_class adjust_long_from_native_call %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2424
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2425
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2426
  enc_class Java_To_Runtime (method meth) %{    // CALL Java_To_Runtime
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2427
    // CALL directly to the runtime
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2428
    // The user of this is responsible for ensuring that R_L7 is empty (killed).
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 34162
diff changeset
  2429
    emit_call_reloc(cbuf, $meth$$method, runtime_call_Relocation::spec(), /*preserve_g2=*/true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2430
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2431
5690
796ff3814b23 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 5352
diff changeset
  2432
  enc_class preserve_SP %{
796ff3814b23 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 5352
diff changeset
  2433
    MacroAssembler _masm(&cbuf);
796ff3814b23 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 5352
diff changeset
  2434
    __ mov(SP, L7_mh_SP_save);
796ff3814b23 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 5352
diff changeset
  2435
  %}
796ff3814b23 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 5352
diff changeset
  2436
796ff3814b23 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 5352
diff changeset
  2437
  enc_class restore_SP %{
796ff3814b23 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 5352
diff changeset
  2438
    MacroAssembler _masm(&cbuf);
796ff3814b23 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 5352
diff changeset
  2439
    __ mov(L7_mh_SP_save, SP);
796ff3814b23 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 5352
diff changeset
  2440
  %}
796ff3814b23 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 5352
diff changeset
  2441
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2442
  enc_class Java_Static_Call (method meth) %{    // JAVA STATIC CALL
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2443
    // CALL to fixup routine.  Fixup routine uses ScopeDesc info to determine
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2444
    // who we intended to call.
17094
29c4955396d2 8003853: specify offset of IC load in java_to_interp stub
dlong
parents: 14833
diff changeset
  2445
    if (!_method) {
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 34162
diff changeset
  2446
      emit_call_reloc(cbuf, $meth$$method, runtime_call_Relocation::spec());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2447
    } else {
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 34162
diff changeset
  2448
      int method_index = resolved_method_index(cbuf);
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 34162
diff changeset
  2449
      RelocationHolder rspec = _optimized_virtual ? opt_virtual_call_Relocation::spec(method_index)
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 34162
diff changeset
  2450
                                                  : static_call_Relocation::spec(method_index);
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 34162
diff changeset
  2451
      emit_call_reloc(cbuf, $meth$$method, rspec);
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 34162
diff changeset
  2452
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 34162
diff changeset
  2453
      // Emit stub for static call.
32082
2a3323e25de1 8130309: Need to bailout cleanly if creation of stubs fails when codecache is out of space
thartmann
parents: 31047
diff changeset
  2454
      address stub = CompiledStaticCall::emit_to_interp_stub(cbuf);
40032
bc2e42cd23ea 8132318: -XX:TraceJumps is broken on Sparc
dpochepk
parents: 38286
diff changeset
  2455
      if (stub == NULL) {
32082
2a3323e25de1 8130309: Need to bailout cleanly if creation of stubs fails when codecache is out of space
thartmann
parents: 31047
diff changeset
  2456
        ciEnv::current()->record_failure("CodeCache is full");
2a3323e25de1 8130309: Need to bailout cleanly if creation of stubs fails when codecache is out of space
thartmann
parents: 31047
diff changeset
  2457
        return;
34162
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  2458
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2459
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2460
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2461
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2462
  enc_class Java_Dynamic_Call (method meth) %{    // JAVA DYNAMIC CALL
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2463
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2464
    __ set_inst_mark();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2465
    int vtable_index = this->_vtable_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2466
    // MachCallDynamicJavaNode::ret_addr_offset uses this same test
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2467
    if (vtable_index < 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2468
      // must be invalid_vtable_index, not nonvirtual_vtable_index
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13104
diff changeset
  2469
      assert(vtable_index == Method::invalid_vtable_index, "correct sentinel value");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2470
      Register G5_ic_reg = reg_to_register_object(Matcher::inline_cache_reg_encode());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2471
      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
  2472
      assert(G5_ic_reg == G5_megamorphic_method, "G5_megamorphic_method used in megamorphic call stub");
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 34162
diff changeset
  2473
      __ ic_call((address)$meth$$method, /*emit_delay=*/true, resolved_method_index(cbuf));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2474
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2475
      assert(!UseInlineCaches, "expect vtable calls only if not using ICs");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2476
      // Just go thru the vtable
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2477
      // get receiver klass (receiver already checked for non-null)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2478
      // If we end up going thru a c2i adapter interpreter expects method in G5
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2479
      int off = __ offset();
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  2480
      __ load_klass(O0, G3_scratch);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  2481
      int klass_load_size;
19979
ebe1dbb6e1aa 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents: 19319
diff changeset
  2482
      if (UseCompressedClassPointers) {
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2150
diff changeset
  2483
        assert(Universe::heap() != NULL, "java heap should be initialized");
19319
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18097
diff changeset
  2484
        klass_load_size = MacroAssembler::instr_size_for_decode_klass_not_null() + 1*BytesPerInstWord;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  2485
      } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  2486
        klass_load_size = 1*BytesPerInstWord;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  2487
      }
35899
0dbc821628fc 8148047: Move the vtable length field to Klass
mgerdin
parents: 35871
diff changeset
  2488
      int entry_offset = in_bytes(Klass::vtable_start_offset()) + vtable_index*vtableEntry::size_in_bytes();
35871
607bf949dfb3 8147461: Use byte offsets for vtable start and vtable length offsets
mgerdin
parents: 35135
diff changeset
  2489
      int v_off = entry_offset + vtableEntry::method_offset_in_bytes();
11190
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  2490
      if (Assembler::is_simm13(v_off)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2491
        __ ld_ptr(G3, v_off, G5_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2492
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2493
        // Generate 2 instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2494
        __ Assembler::sethi(v_off & ~0x3ff, G5_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2495
        __ or3(G5_method, v_off & 0x3ff, G5_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2496
        // 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
  2497
        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
  2498
               "Unexpected instruction size(s)");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2499
        __ ld_ptr(G3, G5_method, G5_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2500
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2501
      // NOTE: for vtable dispatches, the vtable entry will never be null.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2502
      // However it may very well end up in handle_wrong_method if the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2503
      // method is abstract for the particular class.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13104
diff changeset
  2504
      __ ld_ptr(G5_method, in_bytes(Method::from_compiled_offset()), G3_scratch);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2505
      // jump to target (either compiled code or c2iadapter)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2506
      __ jmpl(G3_scratch, G0, O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2507
      __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2508
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2509
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2510
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2511
  enc_class Java_Compiled_Call (method meth) %{    // JAVA COMPILED CALL
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2512
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2513
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2514
    Register G5_ic_reg = reg_to_register_object(Matcher::inline_cache_reg_encode());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2515
    Register temp_reg = G3;   // caller must kill G3!  We cannot reuse G5_ic_reg here because
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2516
                              // we might be calling a C2I adapter which needs it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2517
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2518
    assert(temp_reg != G5_ic_reg, "conflicting registers");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2519
    // Load nmethod
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13104
diff changeset
  2520
    __ ld_ptr(G5_ic_reg, in_bytes(Method::from_compiled_offset()), temp_reg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2521
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2522
    // CALL to compiled java, indirect the contents of G3
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2523
    __ set_inst_mark();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2524
    __ callr(temp_reg, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2525
    __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2526
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2527
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2528
enc_class idiv_reg(iRegIsafe src1, iRegIsafe src2, iRegIsafe dst) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2529
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2530
    Register Rdividend = reg_to_register_object($src1$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2531
    Register Rdivisor = reg_to_register_object($src2$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2532
    Register Rresult = reg_to_register_object($dst$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2533
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2534
    __ sra(Rdivisor, 0, Rdivisor);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2535
    __ sra(Rdividend, 0, Rdividend);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2536
    __ sdivx(Rdividend, Rdivisor, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2537
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2538
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2539
enc_class idiv_imm(iRegIsafe src1, immI13 imm, iRegIsafe dst) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2540
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2541
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2542
    Register Rdividend = reg_to_register_object($src1$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2543
    int divisor = $imm$$constant;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2544
    Register Rresult = reg_to_register_object($dst$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2545
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2546
    __ sra(Rdividend, 0, Rdividend);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2547
    __ sdivx(Rdividend, divisor, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2548
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2549
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2550
enc_class enc_mul_hi(iRegIsafe dst, iRegIsafe src1, iRegIsafe src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2551
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2552
    Register Rsrc1 = reg_to_register_object($src1$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2553
    Register Rsrc2 = reg_to_register_object($src2$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2554
    Register Rdst  = reg_to_register_object($dst$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2555
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2556
    __ sra( Rsrc1, 0, Rsrc1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2557
    __ sra( Rsrc2, 0, Rsrc2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2558
    __ mulx( Rsrc1, Rsrc2, Rdst );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2559
    __ srlx( Rdst, 32, Rdst );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2560
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2561
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2562
enc_class irem_reg(iRegIsafe src1, iRegIsafe src2, iRegIsafe dst, o7RegL scratch) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2563
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2564
    Register Rdividend = reg_to_register_object($src1$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2565
    Register Rdivisor = reg_to_register_object($src2$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2566
    Register Rresult = reg_to_register_object($dst$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2567
    Register Rscratch = reg_to_register_object($scratch$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2568
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2569
    assert(Rdividend != Rscratch, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2570
    assert(Rdivisor  != Rscratch, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2571
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2572
    __ sra(Rdividend, 0, Rdividend);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2573
    __ sra(Rdivisor, 0, Rdivisor);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2574
    __ sdivx(Rdividend, Rdivisor, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2575
    __ mulx(Rscratch, Rdivisor, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2576
    __ sub(Rdividend, Rscratch, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2577
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2578
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2579
enc_class irem_imm(iRegIsafe src1, immI13 imm, iRegIsafe dst, o7RegL scratch) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2580
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2581
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2582
    Register Rdividend = reg_to_register_object($src1$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2583
    int divisor = $imm$$constant;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2584
    Register Rresult = reg_to_register_object($dst$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2585
    Register Rscratch = reg_to_register_object($scratch$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2586
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2587
    assert(Rdividend != Rscratch, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2588
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2589
    __ sra(Rdividend, 0, Rdividend);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2590
    __ sdivx(Rdividend, divisor, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2591
    __ mulx(Rscratch, divisor, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2592
    __ sub(Rdividend, Rscratch, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2593
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2594
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2595
enc_class fabss (sflt_reg dst, sflt_reg src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2596
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2597
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2598
    FloatRegister Fdst = reg_to_SingleFloatRegister_object($dst$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2599
    FloatRegister Fsrc = reg_to_SingleFloatRegister_object($src$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2600
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2601
    __ fabs(FloatRegisterImpl::S, Fsrc, Fdst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2602
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2603
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2604
enc_class fabsd (dflt_reg dst, dflt_reg src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2605
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2606
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2607
    FloatRegister Fdst = reg_to_DoubleFloatRegister_object($dst$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2608
    FloatRegister Fsrc = reg_to_DoubleFloatRegister_object($src$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2609
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2610
    __ fabs(FloatRegisterImpl::D, Fsrc, Fdst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2611
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2612
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2613
enc_class fnegd (dflt_reg dst, dflt_reg src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2614
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2615
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2616
    FloatRegister Fdst = reg_to_DoubleFloatRegister_object($dst$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2617
    FloatRegister Fsrc = reg_to_DoubleFloatRegister_object($src$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2618
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2619
    __ fneg(FloatRegisterImpl::D, Fsrc, Fdst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2620
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2621
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2622
enc_class fsqrts (sflt_reg dst, sflt_reg src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2623
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2624
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2625
    FloatRegister Fdst = reg_to_SingleFloatRegister_object($dst$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2626
    FloatRegister Fsrc = reg_to_SingleFloatRegister_object($src$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2627
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2628
    __ fsqrt(FloatRegisterImpl::S, Fsrc, Fdst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2629
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2630
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2631
enc_class fsqrtd (dflt_reg dst, dflt_reg src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2632
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2633
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2634
    FloatRegister Fdst = reg_to_DoubleFloatRegister_object($dst$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2635
    FloatRegister Fsrc = reg_to_DoubleFloatRegister_object($src$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2636
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2637
    __ fsqrt(FloatRegisterImpl::D, Fsrc, Fdst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2638
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2639
46597
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  2640
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  2641
enc_class fmadds (sflt_reg dst, sflt_reg a, sflt_reg b, sflt_reg c) %{
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  2642
    MacroAssembler _masm(&cbuf);
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  2643
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  2644
    FloatRegister Frd = reg_to_SingleFloatRegister_object($dst$$reg);
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  2645
    FloatRegister Fra = reg_to_SingleFloatRegister_object($a$$reg);
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  2646
    FloatRegister Frb = reg_to_SingleFloatRegister_object($b$$reg);
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  2647
    FloatRegister Frc = reg_to_SingleFloatRegister_object($c$$reg);
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  2648
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  2649
    __ fmadd(FloatRegisterImpl::S, Fra, Frb, Frc, Frd);
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  2650
%}
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  2651
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  2652
enc_class fmaddd (dflt_reg dst, dflt_reg a, dflt_reg b, dflt_reg c) %{
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  2653
    MacroAssembler _masm(&cbuf);
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  2654
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  2655
    FloatRegister Frd = reg_to_DoubleFloatRegister_object($dst$$reg);
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  2656
    FloatRegister Fra = reg_to_DoubleFloatRegister_object($a$$reg);
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  2657
    FloatRegister Frb = reg_to_DoubleFloatRegister_object($b$$reg);
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  2658
    FloatRegister Frc = reg_to_DoubleFloatRegister_object($c$$reg);
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  2659
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  2660
    __ fmadd(FloatRegisterImpl::D, Fra, Frb, Frc, Frd);
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  2661
%}
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  2662
47563
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2663
enc_class fmsubs (sflt_reg dst, sflt_reg a, sflt_reg b, sflt_reg c) %{
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2664
    MacroAssembler _masm(&cbuf);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2665
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2666
    FloatRegister Frd = reg_to_SingleFloatRegister_object($dst$$reg);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2667
    FloatRegister Fra = reg_to_SingleFloatRegister_object($a$$reg);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2668
    FloatRegister Frb = reg_to_SingleFloatRegister_object($b$$reg);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2669
    FloatRegister Frc = reg_to_SingleFloatRegister_object($c$$reg);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2670
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2671
    __ fmsub(FloatRegisterImpl::S, Fra, Frb, Frc, Frd);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2672
%}
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2673
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2674
enc_class fmsubd (dflt_reg dst, dflt_reg a, dflt_reg b, dflt_reg c) %{
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2675
    MacroAssembler _masm(&cbuf);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2676
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2677
    FloatRegister Frd = reg_to_DoubleFloatRegister_object($dst$$reg);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2678
    FloatRegister Fra = reg_to_DoubleFloatRegister_object($a$$reg);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2679
    FloatRegister Frb = reg_to_DoubleFloatRegister_object($b$$reg);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2680
    FloatRegister Frc = reg_to_DoubleFloatRegister_object($c$$reg);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2681
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2682
    __ fmsub(FloatRegisterImpl::D, Fra, Frb, Frc, Frd);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2683
%}
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2684
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2685
enc_class fnmadds (sflt_reg dst, sflt_reg a, sflt_reg b, sflt_reg c) %{
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2686
    MacroAssembler _masm(&cbuf);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2687
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2688
    FloatRegister Frd = reg_to_SingleFloatRegister_object($dst$$reg);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2689
    FloatRegister Fra = reg_to_SingleFloatRegister_object($a$$reg);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2690
    FloatRegister Frb = reg_to_SingleFloatRegister_object($b$$reg);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2691
    FloatRegister Frc = reg_to_SingleFloatRegister_object($c$$reg);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2692
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2693
    __ fnmadd(FloatRegisterImpl::S, Fra, Frb, Frc, Frd);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2694
%}
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2695
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2696
enc_class fnmaddd (dflt_reg dst, dflt_reg a, dflt_reg b, dflt_reg c) %{
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2697
    MacroAssembler _masm(&cbuf);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2698
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2699
    FloatRegister Frd = reg_to_DoubleFloatRegister_object($dst$$reg);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2700
    FloatRegister Fra = reg_to_DoubleFloatRegister_object($a$$reg);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2701
    FloatRegister Frb = reg_to_DoubleFloatRegister_object($b$$reg);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2702
    FloatRegister Frc = reg_to_DoubleFloatRegister_object($c$$reg);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2703
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2704
    __ fnmadd(FloatRegisterImpl::D, Fra, Frb, Frc, Frd);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2705
%}
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2706
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2707
enc_class fnmsubs (sflt_reg dst, sflt_reg a, sflt_reg b, sflt_reg c) %{
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2708
    MacroAssembler _masm(&cbuf);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2709
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2710
    FloatRegister Frd = reg_to_SingleFloatRegister_object($dst$$reg);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2711
    FloatRegister Fra = reg_to_SingleFloatRegister_object($a$$reg);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2712
    FloatRegister Frb = reg_to_SingleFloatRegister_object($b$$reg);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2713
    FloatRegister Frc = reg_to_SingleFloatRegister_object($c$$reg);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2714
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2715
    __ fnmsub(FloatRegisterImpl::S, Fra, Frb, Frc, Frd);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2716
%}
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2717
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2718
enc_class fnmsubd (dflt_reg dst, dflt_reg a, dflt_reg b, dflt_reg c) %{
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2719
    MacroAssembler _masm(&cbuf);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2720
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2721
    FloatRegister Frd = reg_to_DoubleFloatRegister_object($dst$$reg);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2722
    FloatRegister Fra = reg_to_DoubleFloatRegister_object($a$$reg);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2723
    FloatRegister Frb = reg_to_DoubleFloatRegister_object($b$$reg);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2724
    FloatRegister Frc = reg_to_DoubleFloatRegister_object($c$$reg);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2725
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2726
    __ fnmsub(FloatRegisterImpl::D, Fra, Frb, Frc, Frd);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  2727
%}
46597
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  2728
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  2729
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2730
enc_class fmovs (dflt_reg dst, dflt_reg src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2731
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2732
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2733
    FloatRegister Fdst = reg_to_SingleFloatRegister_object($dst$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2734
    FloatRegister Fsrc = reg_to_SingleFloatRegister_object($src$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2735
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2736
    __ fmov(FloatRegisterImpl::S, Fsrc, Fdst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2737
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2738
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2739
enc_class fmovd (dflt_reg dst, dflt_reg src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2740
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2741
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2742
    FloatRegister Fdst = reg_to_DoubleFloatRegister_object($dst$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2743
    FloatRegister Fsrc = reg_to_DoubleFloatRegister_object($src$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2744
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2745
    __ fmov(FloatRegisterImpl::D, Fsrc, Fdst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2746
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2747
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2748
enc_class Fast_Lock(iRegP oop, iRegP box, o7RegP scratch, iRegP scratch2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2749
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2750
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2751
    Register Roop  = reg_to_register_object($oop$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2752
    Register Rbox  = reg_to_register_object($box$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2753
    Register Rscratch = reg_to_register_object($scratch$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2754
    Register Rmark =    reg_to_register_object($scratch2$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2755
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2756
    assert(Roop  != Rscratch, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2757
    assert(Roop  != Rmark, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2758
    assert(Rbox  != Rscratch, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2759
    assert(Rbox  != Rmark, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2760
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  2761
    __ compiler_lock_object(Roop, Rmark, Rbox, Rscratch, _counters, UseBiasedLocking && !UseOptoBiasInlining);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2762
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2763
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2764
enc_class Fast_Unlock(iRegP oop, iRegP box, o7RegP scratch, iRegP scratch2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2765
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2766
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2767
    Register Roop  = reg_to_register_object($oop$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2768
    Register Rbox  = reg_to_register_object($box$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2769
    Register Rscratch = reg_to_register_object($scratch$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2770
    Register Rmark =    reg_to_register_object($scratch2$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2771
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2772
    assert(Roop  != Rscratch, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2773
    assert(Roop  != Rmark, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2774
    assert(Rbox  != Rscratch, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2775
    assert(Rbox  != Rmark, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2776
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  2777
    __ compiler_unlock_object(Roop, Rmark, Rbox, Rscratch, UseBiasedLocking && !UseOptoBiasInlining);
1
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 enc_cas( iRegP mem, iRegP old, iRegP new ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2781
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2782
    Register Rmem = reg_to_register_object($mem$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2783
    Register Rold = reg_to_register_object($old$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2784
    Register Rnew = reg_to_register_object($new$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2785
18097
acd70736bd60 8008407: remove SPARC V8 support
morris
parents: 17095
diff changeset
  2786
    __ cas_ptr(Rmem, Rold, Rnew); // Swap(*Rmem,Rnew) if *Rmem == Rold
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2787
    __ cmp( Rold, Rnew );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2788
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2789
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2790
  enc_class enc_casx( iRegP mem, iRegL old, iRegL new) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2791
    Register Rmem = reg_to_register_object($mem$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2792
    Register Rold = reg_to_register_object($old$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2793
    Register Rnew = reg_to_register_object($new$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2794
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2795
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2796
    __ mov(Rnew, O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2797
    __ casx(Rmem, Rold, O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2798
    __ cmp( Rold, O7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2799
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2800
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2801
  // raw int cas, used for compareAndSwap
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2802
  enc_class enc_casi( iRegP mem, iRegL old, iRegL new) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2803
    Register Rmem = reg_to_register_object($mem$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2804
    Register Rold = reg_to_register_object($old$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2805
    Register Rnew = reg_to_register_object($new$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2806
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2807
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2808
    __ mov(Rnew, O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2809
    __ cas(Rmem, Rold, O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2810
    __ cmp( Rold, O7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2811
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2812
41053
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  2813
  // raw int cas without using tmp register for compareAndExchange
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  2814
  enc_class enc_casi_exch( iRegP mem, iRegL old, iRegL new) %{
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  2815
    Register Rmem = reg_to_register_object($mem$$reg);
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  2816
    Register Rold = reg_to_register_object($old$$reg);
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  2817
    Register Rnew = reg_to_register_object($new$$reg);
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  2818
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  2819
    MacroAssembler _masm(&cbuf);
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  2820
    __ cas(Rmem, Rold, Rnew);
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  2821
  %}
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  2822
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  2823
  // 64-bit cas without using tmp register for compareAndExchange
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  2824
  enc_class enc_casx_exch( iRegP mem, iRegL old, iRegL new) %{
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  2825
    Register Rmem = reg_to_register_object($mem$$reg);
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  2826
    Register Rold = reg_to_register_object($old$$reg);
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  2827
    Register Rnew = reg_to_register_object($new$$reg);
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  2828
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  2829
    MacroAssembler _masm(&cbuf);
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  2830
    __ casx(Rmem, Rold, Rnew);
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  2831
  %}
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  2832
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2833
  enc_class enc_lflags_ne_to_boolean( iRegI res ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2834
    Register Rres = reg_to_register_object($res$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2835
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2836
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2837
    __ mov(1, Rres);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2838
    __ movcc( Assembler::notEqual, false, Assembler::xcc, G0, Rres );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2839
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2840
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2841
  enc_class enc_iflags_ne_to_boolean( iRegI res ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2842
    Register Rres = reg_to_register_object($res$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2843
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2844
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2845
    __ mov(1, Rres);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2846
    __ movcc( Assembler::notEqual, false, Assembler::icc, G0, Rres );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2847
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2848
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2849
  enc_class floating_cmp ( iRegP dst, regF src1, regF src2 ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2850
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2851
    Register Rdst = reg_to_register_object($dst$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2852
    FloatRegister Fsrc1 = $primary ? reg_to_SingleFloatRegister_object($src1$$reg)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2853
                                     : reg_to_DoubleFloatRegister_object($src1$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2854
    FloatRegister Fsrc2 = $primary ? reg_to_SingleFloatRegister_object($src2$$reg)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2855
                                     : reg_to_DoubleFloatRegister_object($src2$$reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2856
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2857
    // Convert condition code fcc0 into -1,0,1; unordered reports less-than (-1)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2858
    __ float_cmp( $primary, -1, Fsrc1, Fsrc2, Rdst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2859
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2860
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2861
  enc_class enc_rethrow() %{
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5702
diff changeset
  2862
    cbuf.set_insts_mark();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2863
    Register temp_reg = G3;
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  2864
    AddressLiteral rethrow_stub(OptoRuntime::rethrow_stub());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2865
    assert(temp_reg != reg_to_register_object(R_I0_num), "temp must not break oop_reg");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2866
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2867
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2868
    __ save_frame(0);
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  2869
    AddressLiteral last_rethrow_addrlit(&last_rethrow);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  2870
    __ sethi(last_rethrow_addrlit, L1);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  2871
    Address addr(L1, last_rethrow_addrlit.low10());
18097
acd70736bd60 8008407: remove SPARC V8 support
morris
parents: 17095
diff changeset
  2872
    __ rdpc(L2);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2873
    __ 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
  2874
    __ st_ptr(L2, addr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2875
    __ restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2876
#endif
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  2877
    __ JUMP(rethrow_stub, temp_reg, 0); // sethi;jmp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2878
    __ delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2879
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2880
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2881
  enc_class emit_mem_nop() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2882
    // Generates the instruction LDUXA [o6,g0],#0x82,g0
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5702
diff changeset
  2883
    cbuf.insts()->emit_int32((unsigned int) 0xc0839040);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2884
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2885
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2886
  enc_class emit_fadd_nop() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2887
    // Generates the instruction FMOVS f31,f31
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5702
diff changeset
  2888
    cbuf.insts()->emit_int32((unsigned int) 0xbfa0003f);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2889
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2890
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2891
  enc_class emit_br_nop() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2892
    // Generates the instruction BPN,PN .
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5702
diff changeset
  2893
    cbuf.insts()->emit_int32((unsigned int) 0x00400000);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2894
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2895
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2896
  enc_class enc_membar_acquire %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2897
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2898
    __ membar( Assembler::Membar_mask_bits(Assembler::LoadStore | Assembler::LoadLoad) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2899
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2900
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2901
  enc_class enc_membar_release %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2902
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2903
    __ membar( Assembler::Membar_mask_bits(Assembler::LoadStore | Assembler::StoreStore) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2904
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2905
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2906
  enc_class enc_membar_volatile %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2907
    MacroAssembler _masm(&cbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2908
    __ membar( Assembler::Membar_mask_bits(Assembler::StoreLoad) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2909
  %}
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  2910
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2911
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2912
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2913
//----------FRAME--------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2914
// Definition of frame structure and management information.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2915
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2916
//  S T A C K   L A Y O U T    Allocators stack-slot number
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2917
//                             |   (to get allocators register number
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2918
//  G  Owned by    |        |  v    add VMRegImpl::stack0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2919
//  r   CALLER     |        |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2920
//  o     |        +--------+      pad to even-align allocators stack-slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2921
//  w     V        |  pad0  |        numbers; owned by CALLER
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2922
//  t   -----------+--------+----> Matcher::_in_arg_limit, unaligned
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2923
//  h     ^        |   in   |  5
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2924
//        |        |  args  |  4   Holes in incoming args owned by SELF
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2925
//  |     |        |        |  3
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2926
//  |     |        +--------+
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2927
//  V     |        | old out|      Empty on Intel, window on Sparc
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2928
//        |    old |preserve|      Must be even aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2929
//        |     SP-+--------+----> Matcher::_old_SP, 8 (or 16 in LP64)-byte aligned
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2930
//        |        |   in   |  3   area for Intel ret address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2931
//     Owned by    |preserve|      Empty on Sparc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2932
//       SELF      +--------+
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2933
//        |        |  pad2  |  2   pad to align old SP
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2934
//        |        +--------+  1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2935
//        |        | locks  |  0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2936
//        |        +--------+----> VMRegImpl::stack0, 8 (or 16 in LP64)-byte aligned
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2937
//        |        |  pad1  | 11   pad to align new SP
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2938
//        |        +--------+
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2939
//        |        |        | 10
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2940
//        |        | spills |  9   spills
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2941
//        V        |        |  8   (pad0 slot for callee)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2942
//      -----------+--------+----> Matcher::_out_arg_limit, unaligned
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2943
//        ^        |  out   |  7
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2944
//        |        |  args  |  6   Holes in outgoing args owned by CALLEE
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2945
//     Owned by    +--------+
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2946
//      CALLEE     | new out|  6   Empty on Intel, window on Sparc
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2947
//        |    new |preserve|      Must be even-aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2948
//        |     SP-+--------+----> Matcher::_new_SP, even aligned
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2949
//        |        |        |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2950
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2951
// Note 1: Only region 8-11 is determined by the allocator.  Region 0-5 is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2952
//         known from SELF's arguments and the Java calling convention.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2953
//         Region 6-7 is determined per call site.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2954
// Note 2: If the calling convention leaves holes in the incoming argument
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2955
//         area, those holes are owned by SELF.  Holes in the outgoing area
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2956
//         are owned by the CALLEE.  Holes should not be nessecary in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2957
//         incoming area, as the Java calling convention is completely under
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2958
//         the control of the AD file.  Doubles can be sorted and packed to
26804
4b23f22faae6 8050022: linux-sparcv9: assert(SharedSkipVerify || obj->is_oop()) failed: sanity check
morris
parents: 25933
diff changeset
  2959
//         avoid holes.  Holes in the outgoing arguments may be necessary for
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2960
//         varargs C calling conventions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2961
// Note 3: Region 0-3 is even aligned, with pad2 as needed.  Region 3-5 is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2962
//         even aligned with pad0 as needed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2963
//         Region 6 is even aligned.  Region 6-7 is NOT even aligned;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2964
//         region 6-11 is even aligned; it may be padded out more so that
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2965
//         the region from SP to FP meets the minimum stack alignment.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2966
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2967
frame %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2968
  // What direction does stack grow in (assumed to be same for native & Java)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2969
  stack_direction(TOWARDS_LOW);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2970
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2971
  // These two registers define part of the calling convention
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2972
  // between compiled code and the interpreter.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13104
diff changeset
  2973
  inline_cache_reg(R_G5);                // Inline Cache Register or Method* for I2C
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2974
  interpreter_method_oop_reg(R_G5);      // Method Oop Register when calling interpreter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2975
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2976
  // Optional: name the operand used by cisc-spilling to access [stack_pointer + offset]
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2977
  cisc_spilling_operand_name(indOffset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2978
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2979
  // Number of stack slots consumed by a Monitor enter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2980
  sync_stack_slots(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2981
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2982
  // Compiled code's Frame Pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2983
  frame_pointer(R_SP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2984
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2985
  // Stack alignment requirement
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2986
  stack_alignment(StackAlignmentInBytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2987
  //  LP64: Alignment size in bytes (128-bit -> 16 bytes)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2988
  // !LP64: Alignment size in bytes (64-bit  ->  8 bytes)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2989
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2990
  // Number of stack slots between incoming argument block and the start of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2991
  // a new frame.  The PROLOG must add this many slots to the stack.  The
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2992
  // EPILOG must remove this many slots.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2993
  in_preserve_stack_slots(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2994
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2995
  // Number of outgoing stack slots killed above the out_preserve_stack_slots
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2996
  // for calls to C.  Supports the var-args backing area for register parms.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2997
  // ADLC doesn't support parsing expressions, so I folded the math by hand.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2998
  // (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
  2999
  varargs_C_out_slots_killed(12);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3000
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3001
  // The after-PROLOG location of the return address.  Location of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3002
  // return address specifies a type (REG or STACK) and a number
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3003
  // representing the register number (i.e. - use a register name) or
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3004
  // stack slot.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3005
  return_addr(REG R_I7);          // Ret Addr is in register I7
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3006
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3007
  // Body of function which returns an OptoRegs array locating
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3008
  // arguments either in registers or in stack slots for calling
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3009
  // java
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3010
  calling_convention %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3011
    (void) SharedRuntime::java_calling_convention(sig_bt, regs, length, is_outgoing);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3012
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3013
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3014
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3015
  // Body of function which returns an OptoRegs array locating
26804
4b23f22faae6 8050022: linux-sparcv9: assert(SharedSkipVerify || obj->is_oop()) failed: sanity check
morris
parents: 25933
diff changeset
  3016
  // arguments either in registers or in stack slots for calling
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3017
  // C.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3018
  c_calling_convention %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3019
    // This is obviously always outgoing
22832
03720a5b7595 8024344: PPC64 (part 112): C argument in register AND stack slot.
goetz
parents: 19319
diff changeset
  3020
    (void) SharedRuntime::c_calling_convention(sig_bt, regs, /*regs2=*/NULL, length);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3021
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3022
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3023
  // Location of native (C/C++) and interpreter return values.  This is specified to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3024
  // be the  same as Java.  In the 32-bit VM, long values are actually returned from
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3025
  // native calls in O0:O1 and returned to the interpreter in I0:I1.  The copying
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3026
  // to and from the register pairs is done by the appropriate call and epilog
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3027
  // opcodes.  This simplifies the register allocator.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3028
  c_return_value %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3029
    assert( ideal_reg >= Op_RegI && ideal_reg <= Op_RegL, "only return normal values" );
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3030
    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
  3031
    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
  3032
    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
  3033
    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
  3034
    return OptoRegPair( (is_outgoing?hi_out:hi_in)[ideal_reg],
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3035
                        (is_outgoing?lo_out:lo_in)[ideal_reg] );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3036
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3037
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3038
  // Location of compiled Java return values.  Same as C
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3039
  return_value %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3040
    assert( ideal_reg >= Op_RegI && ideal_reg <= Op_RegL, "only return normal values" );
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3041
    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
  3042
    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
  3043
    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
  3044
    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
  3045
    return OptoRegPair( (is_outgoing?hi_out:hi_in)[ideal_reg],
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3046
                        (is_outgoing?lo_out:lo_in)[ideal_reg] );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3047
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3048
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3049
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3050
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3051
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3052
//----------ATTRIBUTES---------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3053
//----------Operand Attributes-------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3054
op_attrib op_cost(1);          // Required cost attribute
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3055
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3056
//----------Instruction Attributes---------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3057
ins_attrib ins_cost(DEFAULT_COST); // Required cost attribute
10255
bab46e6f7661 7069452: Cleanup NodeFlags
kvn
parents: 10252
diff changeset
  3058
ins_attrib ins_size(32);           // Required size attribute (in bits)
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  3059
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  3060
// avoid_back_to_back attribute is an expression that must return
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  3061
// one of the following values defined in MachNode:
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  3062
// AVOID_NONE   - instruction can be placed anywhere
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  3063
// AVOID_BEFORE - instruction cannot be placed after an
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  3064
//                instruction with MachNode::AVOID_AFTER
34162
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3065
// AVOID_AFTER  - the next instruction cannot be the one
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  3066
//                with MachNode::AVOID_BEFORE
34162
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3067
// AVOID_BEFORE_AND_AFTER - BEFORE and AFTER attributes at
16b54851eaf6 8140779: Code generation fixes for avx512
iveresov
parents: 33628
diff changeset
  3068
//                          the same time
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  3069
ins_attrib ins_avoid_back_to_back(MachNode::AVOID_NONE);
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  3070
10255
bab46e6f7661 7069452: Cleanup NodeFlags
kvn
parents: 10252
diff changeset
  3071
ins_attrib ins_short_branch(0);    // Required flag: is this instruction a
bab46e6f7661 7069452: Cleanup NodeFlags
kvn
parents: 10252
diff changeset
  3072
                                   // non-matching short branch variant of some
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3073
                                                            // long branch?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3074
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3075
//----------OPERANDS-----------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3076
// Operand definitions must precede instruction definitions for correct parsing
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3077
// in the ADLC because operands constitute user defined types which are used in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3078
// instruction definitions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3079
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3080
//----------Simple Operands----------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3081
// Immediate Operands
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3082
// Integer Immediate: 32-bit
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3083
operand immI() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3084
  match(ConI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3085
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3086
  op_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3087
  // formats are generated automatically for constants and base registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3088
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3089
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3090
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3091
31047
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3092
// Integer Immediate: 0-bit
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3093
operand immI0() %{
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3094
  predicate(n->get_int() == 0);
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3095
  match(ConI);
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3096
  op_cost(0);
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3097
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3098
  format %{ %}
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3099
  interface(CONST_INTER);
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3100
%}
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3101
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3102
// Integer Immediate: 5-bit
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3103
operand immI5() %{
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3104
  predicate(Assembler::is_simm5(n->get_int()));
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3105
  match(ConI);
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3106
  op_cost(0);
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3107
  format %{ %}
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3108
  interface(CONST_INTER);
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3109
%}
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3110
3177
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  3111
// Integer Immediate: 8-bit
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  3112
operand immI8() %{
11190
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  3113
  predicate(Assembler::is_simm8(n->get_int()));
3177
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  3114
  match(ConI);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  3115
  op_cost(0);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  3116
  format %{ %}
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  3117
  interface(CONST_INTER);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  3118
%}
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  3119
31047
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3120
// Integer Immediate: the value 10
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3121
operand immI10() %{
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3122
  predicate(n->get_int() == 10);
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3123
  match(ConI);
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3124
  op_cost(0);
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3125
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3126
  format %{ %}
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3127
  interface(CONST_INTER);
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3128
%}
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3129
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3130
// Integer Immediate: 11-bit
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3131
operand immI11() %{
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3132
  predicate(Assembler::is_simm11(n->get_int()));
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3133
  match(ConI);
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3134
  op_cost(0);
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3135
  format %{ %}
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3136
  interface(CONST_INTER);
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3137
%}
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3138
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3139
// Integer Immediate: 13-bit
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3140
operand immI13() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3141
  predicate(Assembler::is_simm13(n->get_int()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3142
  match(ConI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3143
  op_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3144
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3145
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3146
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3147
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3148
2872
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3149
// Integer Immediate: 13-bit minus 7
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3150
operand immI13m7() %{
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3151
  predicate((-4096 < n->get_int()) && ((n->get_int() + 7) <= 4095));
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3152
  match(ConI);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3153
  op_cost(0);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3154
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3155
  format %{ %}
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3156
  interface(CONST_INTER);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3157
%}
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3158
3177
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  3159
// Integer Immediate: 16-bit
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  3160
operand immI16() %{
11190
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  3161
  predicate(Assembler::is_simm16(n->get_int()));
3177
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  3162
  match(ConI);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  3163
  op_cost(0);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  3164
  format %{ %}
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  3165
  interface(CONST_INTER);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  3166
%}
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  3167
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3168
// Integer Immediate: the values 1-31
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3169
operand immI_1_31() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3170
  predicate(n->get_int() >= 1 && n->get_int() <= 31);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3171
  match(ConI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3172
  op_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3173
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3174
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3175
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3176
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3177
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3178
// Integer Immediate: the values 32-63
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3179
operand immI_32_63() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3180
  predicate(n->get_int() >= 32 && n->get_int() <= 63);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3181
  match(ConI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3182
  op_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3183
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3184
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3185
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3186
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3187
2872
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3188
// Immediates for special shifts (sign extend)
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3189
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3190
// Integer Immediate: the value 16
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3191
operand immI_16() %{
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3192
  predicate(n->get_int() == 16);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3193
  match(ConI);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3194
  op_cost(0);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3195
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3196
  format %{ %}
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3197
  interface(CONST_INTER);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3198
%}
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3199
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3200
// Integer Immediate: the value 24
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3201
operand immI_24() %{
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3202
  predicate(n->get_int() == 24);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3203
  match(ConI);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3204
  op_cost(0);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3205
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3206
  format %{ %}
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3207
  interface(CONST_INTER);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3208
%}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3209
// Integer Immediate: the value 255
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3210
operand immI_255() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3211
  predicate( n->get_int() == 255 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3212
  match(ConI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3213
  op_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3214
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3215
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3216
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3217
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3218
2872
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3219
// Integer Immediate: the value 65535
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3220
operand immI_65535() %{
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3221
  predicate(n->get_int() == 65535);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3222
  match(ConI);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3223
  op_cost(0);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3224
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3225
  format %{ %}
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3226
  interface(CONST_INTER);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3227
%}
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3228
31047
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3229
// Integer Immediate: the values 0-31
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3230
operand immU5() %{
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3231
  predicate(n->get_int() >= 0 && n->get_int() <= 31);
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3232
  match(ConI);
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3233
  op_cost(0);
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3234
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3235
  format %{ %}
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3236
  interface(CONST_INTER);
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3237
%}
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3238
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3239
// Integer Immediate: 6-bit
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3240
operand immU6() %{
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3241
  predicate(n->get_int() >= 0 && n->get_int() <= 63);
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3242
  match(ConI);
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3243
  op_cost(0);
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3244
  format %{ %}
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3245
  interface(CONST_INTER);
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3246
%}
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3247
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3248
// Unsigned Integer Immediate: 12-bit (non-negative that fits in simm13)
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3249
operand immU12() %{
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3250
  predicate((0 <= n->get_int()) && Assembler::is_simm13(n->get_int()));
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3251
  match(ConI);
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3252
  op_cost(0);
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3253
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3254
  format %{ %}
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3255
  interface(CONST_INTER);
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3256
%}
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3257
45965
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  3258
// Unsigned Long Immediate: 12-bit (non-negative that fits in simm13)
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  3259
operand immUL12() %{
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  3260
  predicate((0 <= n->get_long()) && (n->get_long() == (int)n->get_long()) && Assembler::is_simm13((int)n->get_long()));
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  3261
  match(ConL);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  3262
  op_cost(0);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  3263
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  3264
  format %{ %}
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  3265
  interface(CONST_INTER);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  3266
%}
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  3267
31047
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3268
// Integer Immediate non-negative
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3269
operand immU31()
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3270
%{
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3271
  predicate(n->get_int() >= 0);
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3272
  match(ConI);
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3273
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3274
  op_cost(0);
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3275
  format %{ %}
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3276
  interface(CONST_INTER);
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3277
%}
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  3278
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3279
// Long Immediate: the value FF
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3280
operand immL_FF() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3281
  predicate( n->get_long() == 0xFFL );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3282
  match(ConL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3283
  op_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3284
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3285
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3286
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3287
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3288
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3289
// Long Immediate: the value FFFF
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3290
operand immL_FFFF() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3291
  predicate( n->get_long() == 0xFFFFL );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3292
  match(ConL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3293
  op_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3294
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3295
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3296
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3297
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3298
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3299
// Pointer Immediate: 32 or 64-bit
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3300
operand immP() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3301
  match(ConP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3302
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3303
  op_cost(5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3304
  // formats are generated automatically for constants and base registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3305
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3306
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3307
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3308
7700
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7437
diff changeset
  3309
// Pointer Immediate: 64-bit
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3310
operand immP_set() %{
46592
6e357e2c8143 8172231: SPARC ISA/CPU feature detection is broken/insufficient (on Solaris)
neliasso
parents: 46462
diff changeset
  3311
  predicate(!VM_Version::has_fast_ld());
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3312
  match(ConP);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3313
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3314
  op_cost(5);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3315
  // formats are generated automatically for constants and base registers
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3316
  format %{ %}
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3317
  interface(CONST_INTER);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3318
%}
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3319
7700
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7437
diff changeset
  3320
// Pointer Immediate: 64-bit
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3321
// From Niagara2 processors on a load should be better than materializing.
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3322
operand immP_load() %{
46592
6e357e2c8143 8172231: SPARC ISA/CPU feature detection is broken/insufficient (on Solaris)
neliasso
parents: 46462
diff changeset
  3323
  predicate(VM_Version::has_fast_ld() && (n->bottom_type()->isa_oop_ptr() || (MacroAssembler::insts_for_set(n->get_ptr()) > 3)));
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3324
  match(ConP);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3325
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3326
  op_cost(5);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3327
  // formats are generated automatically for constants and base registers
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3328
  format %{ %}
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3329
  interface(CONST_INTER);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3330
%}
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3331
7700
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7437
diff changeset
  3332
// Pointer Immediate: 64-bit
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7437
diff changeset
  3333
operand immP_no_oop_cheap() %{
46592
6e357e2c8143 8172231: SPARC ISA/CPU feature detection is broken/insufficient (on Solaris)
neliasso
parents: 46462
diff changeset
  3334
  predicate(VM_Version::has_fast_ld() && !n->bottom_type()->isa_oop_ptr() && (MacroAssembler::insts_for_set(n->get_ptr()) <= 3));
7700
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7437
diff changeset
  3335
  match(ConP);
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7437
diff changeset
  3336
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7437
diff changeset
  3337
  op_cost(5);
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7437
diff changeset
  3338
  // formats are generated automatically for constants and base registers
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7437
diff changeset
  3339
  format %{ %}
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7437
diff changeset
  3340
  interface(CONST_INTER);
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7437
diff changeset
  3341
%}
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7437
diff changeset
  3342
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3343
operand immP13() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3344
  predicate((-4096 < n->get_ptr()) && (n->get_ptr() <= 4095));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3345
  match(ConP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3346
  op_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3347
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3348
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3349
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3350
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3351
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3352
operand immP0() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3353
  predicate(n->get_ptr() == 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3354
  match(ConP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3355
  op_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3356
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3357
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3358
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3359
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3360
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3361
operand immP_poll() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3362
  predicate(n->get_ptr() != 0 && n->get_ptr() == (intptr_t)os::get_polling_page());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3363
  match(ConP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3364
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3365
  // formats are generated automatically for constants and base registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3366
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3367
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3368
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3369
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3370
// Pointer Immediate
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3371
operand immN()
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3372
%{
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3373
  match(ConN);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3374
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3375
  op_cost(10);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3376
  format %{ %}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3377
  interface(CONST_INTER);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3378
%}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3379
13969
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  3380
operand immNKlass()
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  3381
%{
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  3382
  match(ConNKlass);
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  3383
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  3384
  op_cost(10);
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  3385
  format %{ %}
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  3386
  interface(CONST_INTER);
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  3387
%}
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  3388
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3389
// NULL Pointer Immediate
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3390
operand immN0()
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3391
%{
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3392
  predicate(n->get_narrowcon() == 0);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3393
  match(ConN);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3394
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3395
  op_cost(0);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3396
  format %{ %}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3397
  interface(CONST_INTER);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3398
%}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3399
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3400
operand immL() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3401
  match(ConL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3402
  op_cost(40);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3403
  // formats are generated automatically for constants and base registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3404
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3405
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3406
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3407
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3408
operand immL0() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3409
  predicate(n->get_long() == 0L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3410
  match(ConL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3411
  op_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3412
  // formats are generated automatically for constants and base registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3413
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3414
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3415
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3416
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  3417
// Integer Immediate: 5-bit
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  3418
operand immL5() %{
11190
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  3419
  predicate(n->get_long() == (int)n->get_long() && Assembler::is_simm5((int)n->get_long()));
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  3420
  match(ConL);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  3421
  op_cost(0);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  3422
  format %{ %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  3423
  interface(CONST_INTER);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  3424
%}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  3425
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3426
// Long Immediate: 13-bit
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3427
operand immL13() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3428
  predicate((-4096L < n->get_long()) && (n->get_long() <= 4095L));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3429
  match(ConL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3430
  op_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3431
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3432
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3433
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3434
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3435
2872
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3436
// Long Immediate: 13-bit minus 7
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3437
operand immL13m7() %{
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3438
  predicate((-4096L < n->get_long()) && ((n->get_long() + 7L) <= 4095L));
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3439
  match(ConL);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3440
  op_cost(0);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3441
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3442
  format %{ %}
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3443
  interface(CONST_INTER);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3444
%}
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3445
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3446
// Long Immediate: low 32-bit mask
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3447
operand immL_32bits() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3448
  predicate(n->get_long() == 0xFFFFFFFFL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3449
  match(ConL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3450
  op_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3451
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3452
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3453
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3454
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3455
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3456
// Long Immediate: cheap (materialize in <= 3 instructions)
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3457
operand immL_cheap() %{
46592
6e357e2c8143 8172231: SPARC ISA/CPU feature detection is broken/insufficient (on Solaris)
neliasso
parents: 46462
diff changeset
  3458
  predicate(!VM_Version::has_fast_ld() || MacroAssembler::insts_for_set64(n->get_long()) <= 3);
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3459
  match(ConL);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3460
  op_cost(0);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3461
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3462
  format %{ %}
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3463
  interface(CONST_INTER);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3464
%}
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3465
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3466
// Long Immediate: expensive (materialize in > 3 instructions)
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3467
operand immL_expensive() %{
46592
6e357e2c8143 8172231: SPARC ISA/CPU feature detection is broken/insufficient (on Solaris)
neliasso
parents: 46462
diff changeset
  3468
  predicate(VM_Version::has_fast_ld() && MacroAssembler::insts_for_set64(n->get_long()) > 3);
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3469
  match(ConL);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3470
  op_cost(0);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3471
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3472
  format %{ %}
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3473
  interface(CONST_INTER);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3474
%}
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  3475
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3476
// Double Immediate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3477
operand immD() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3478
  match(ConD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3479
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3480
  op_cost(40);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3481
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3482
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3483
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3484
29581
b8d83fef0c8e 8074869: C2 code generator can replace -0.0f with +0.0f on Linux
zmajo
parents: 28954
diff changeset
  3485
// Double Immediate: +0.0d
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3486
operand immD0() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3487
  predicate(jlong_cast(n->getd()) == 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3488
  match(ConD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3489
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3490
  op_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3491
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3492
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3493
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3494
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3495
// Float Immediate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3496
operand immF() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3497
  match(ConF);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3498
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3499
  op_cost(20);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3500
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3501
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3502
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3503
29581
b8d83fef0c8e 8074869: C2 code generator can replace -0.0f with +0.0f on Linux
zmajo
parents: 28954
diff changeset
  3504
// Float Immediate: +0.0f
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3505
operand immF0() %{
29581
b8d83fef0c8e 8074869: C2 code generator can replace -0.0f with +0.0f on Linux
zmajo
parents: 28954
diff changeset
  3506
  predicate(jint_cast(n->getf()) == 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3507
  match(ConF);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3508
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3509
  op_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3510
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3511
  interface(CONST_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3512
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3513
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3514
// Integer Register Operands
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3515
// Integer Register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3516
operand iRegI() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3517
  constraint(ALLOC_IN_RC(int_reg));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3518
  match(RegI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3519
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3520
  match(notemp_iRegI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3521
  match(g1RegI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3522
  match(o0RegI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3523
  match(iRegIsafe);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3524
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3525
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3526
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3527
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3528
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3529
operand notemp_iRegI() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3530
  constraint(ALLOC_IN_RC(notemp_int_reg));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3531
  match(RegI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3532
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3533
  match(o0RegI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3534
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3535
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3536
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3537
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3538
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3539
operand o0RegI() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3540
  constraint(ALLOC_IN_RC(o0_regI));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3541
  match(iRegI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3542
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3543
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3544
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3545
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3546
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3547
// Pointer Register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3548
operand iRegP() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3549
  constraint(ALLOC_IN_RC(ptr_reg));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3550
  match(RegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3551
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3552
  match(lock_ptr_RegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3553
  match(g1RegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3554
  match(g2RegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3555
  match(g3RegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3556
  match(g4RegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3557
  match(i0RegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3558
  match(o0RegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3559
  match(o1RegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3560
  match(l7RegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3561
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3562
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3563
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3564
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3565
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3566
operand sp_ptr_RegP() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3567
  constraint(ALLOC_IN_RC(sp_ptr_reg));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3568
  match(RegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3569
  match(iRegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3570
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3571
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3572
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3573
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3574
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3575
operand lock_ptr_RegP() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3576
  constraint(ALLOC_IN_RC(lock_ptr_reg));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3577
  match(RegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3578
  match(i0RegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3579
  match(o0RegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3580
  match(o1RegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3581
  match(l7RegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3582
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3583
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3584
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3585
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3586
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3587
operand g1RegP() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3588
  constraint(ALLOC_IN_RC(g1_regP));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3589
  match(iRegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3590
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3591
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3592
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3593
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3594
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3595
operand g2RegP() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3596
  constraint(ALLOC_IN_RC(g2_regP));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3597
  match(iRegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3598
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3599
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3600
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3601
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3602
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3603
operand g3RegP() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3604
  constraint(ALLOC_IN_RC(g3_regP));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3605
  match(iRegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3606
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3607
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3608
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3609
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3610
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3611
operand g1RegI() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3612
  constraint(ALLOC_IN_RC(g1_regI));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3613
  match(iRegI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3614
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3615
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3616
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3617
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3618
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3619
operand g3RegI() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3620
  constraint(ALLOC_IN_RC(g3_regI));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3621
  match(iRegI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3622
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3623
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3624
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3625
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3626
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3627
operand g4RegI() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3628
  constraint(ALLOC_IN_RC(g4_regI));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3629
  match(iRegI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3630
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3631
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3632
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3633
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3634
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3635
operand g4RegP() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3636
  constraint(ALLOC_IN_RC(g4_regP));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3637
  match(iRegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3638
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3639
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3640
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3641
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3642
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3643
operand i0RegP() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3644
  constraint(ALLOC_IN_RC(i0_regP));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3645
  match(iRegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3646
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3647
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3648
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3649
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3650
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3651
operand o0RegP() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3652
  constraint(ALLOC_IN_RC(o0_regP));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3653
  match(iRegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3654
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3655
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3656
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3657
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3658
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3659
operand o1RegP() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3660
  constraint(ALLOC_IN_RC(o1_regP));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3661
  match(iRegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3662
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3663
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3664
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3665
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3666
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3667
operand o2RegP() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3668
  constraint(ALLOC_IN_RC(o2_regP));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3669
  match(iRegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3670
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3671
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3672
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3673
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3674
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3675
operand o7RegP() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3676
  constraint(ALLOC_IN_RC(o7_regP));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3677
  match(iRegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3678
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3679
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3680
  interface(REG_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
operand l7RegP() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3684
  constraint(ALLOC_IN_RC(l7_regP));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3685
  match(iRegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3686
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3687
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3688
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3689
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3690
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3691
operand o7RegI() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3692
  constraint(ALLOC_IN_RC(o7_regI));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3693
  match(iRegI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3694
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3695
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3696
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3697
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3698
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3699
operand iRegN() %{
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3700
  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
  3701
  match(RegN);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3702
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3703
  format %{ %}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3704
  interface(REG_INTER);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3705
%}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  3706
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3707
// Long Register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3708
operand iRegL() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3709
  constraint(ALLOC_IN_RC(long_reg));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3710
  match(RegL);
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
operand o2RegL() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3717
  constraint(ALLOC_IN_RC(o2_regL));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3718
  match(iRegL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3719
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3720
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3721
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3722
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3723
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3724
operand o7RegL() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3725
  constraint(ALLOC_IN_RC(o7_regL));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3726
  match(iRegL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3727
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3728
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3729
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3730
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3731
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3732
operand g1RegL() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3733
  constraint(ALLOC_IN_RC(g1_regL));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3734
  match(iRegL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3735
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3736
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3737
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3738
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3739
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  3740
operand g3RegL() %{
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  3741
  constraint(ALLOC_IN_RC(g3_regL));
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  3742
  match(iRegL);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  3743
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  3744
  format %{ %}
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  3745
  interface(REG_INTER);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  3746
%}
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  3747
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3748
// Int Register safe
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3749
// This is 64bit safe
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3750
operand iRegIsafe() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3751
  constraint(ALLOC_IN_RC(long_reg));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3752
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3753
  match(iRegI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3754
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3755
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3756
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3757
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3758
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3759
// Condition Code Flag Register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3760
operand flagsReg() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3761
  constraint(ALLOC_IN_RC(int_flags));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3762
  match(RegFlags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3763
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3764
  format %{ "ccr" %} // both ICC and XCC
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3765
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3766
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3767
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3768
// Condition Code Register, unsigned comparisons.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3769
operand flagsRegU() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3770
  constraint(ALLOC_IN_RC(int_flags));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3771
  match(RegFlags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3772
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3773
  format %{ "icc_U" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3774
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3775
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3776
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3777
// Condition Code Register, pointer comparisons.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3778
operand flagsRegP() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3779
  constraint(ALLOC_IN_RC(int_flags));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3780
  match(RegFlags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3781
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3782
  format %{ "xcc_P" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3783
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3784
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3785
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3786
// Condition Code Register, long comparisons.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3787
operand flagsRegL() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3788
  constraint(ALLOC_IN_RC(int_flags));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3789
  match(RegFlags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3790
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3791
  format %{ "xcc_L" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3792
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3793
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3794
45965
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  3795
// Condition Code Register, unsigned long comparisons.
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  3796
operand flagsRegUL() %{
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  3797
  constraint(ALLOC_IN_RC(int_flags));
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  3798
  match(RegFlags);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  3799
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  3800
  format %{ "xcc_UL" %}
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  3801
  interface(REG_INTER);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  3802
%}
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  3803
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3804
// Condition Code Register, floating comparisons, unordered same as "less".
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3805
operand flagsRegF() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3806
  constraint(ALLOC_IN_RC(float_flags));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3807
  match(RegFlags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3808
  match(flagsRegF0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3809
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3810
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3811
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3812
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3813
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3814
operand flagsRegF0() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3815
  constraint(ALLOC_IN_RC(float_flag0));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3816
  match(RegFlags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3817
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3818
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3819
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3820
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3821
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3822
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3823
// Condition Code Flag Register used by long compare
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3824
operand flagsReg_long_LTGE() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3825
  constraint(ALLOC_IN_RC(int_flags));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3826
  match(RegFlags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3827
  format %{ "icc_LTGE" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3828
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3829
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3830
operand flagsReg_long_EQNE() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3831
  constraint(ALLOC_IN_RC(int_flags));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3832
  match(RegFlags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3833
  format %{ "icc_EQNE" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3834
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3835
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3836
operand flagsReg_long_LEGT() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3837
  constraint(ALLOC_IN_RC(int_flags));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3838
  match(RegFlags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3839
  format %{ "icc_LEGT" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3840
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3841
%}
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 regD() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3845
  constraint(ALLOC_IN_RC(dflt_reg));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3846
  match(RegD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3847
2015
580165b3f277 6790182: matcher.cpp:1375: assert(false,"bad AD file")
kvn
parents: 1500
diff changeset
  3848
  match(regD_low);
580165b3f277 6790182: matcher.cpp:1375: assert(false,"bad AD file")
kvn
parents: 1500
diff changeset
  3849
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3850
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3851
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3852
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3853
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3854
operand regF() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3855
  constraint(ALLOC_IN_RC(sflt_reg));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3856
  match(RegF);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3857
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3858
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3859
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3860
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3861
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3862
operand regD_low() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3863
  constraint(ALLOC_IN_RC(dflt_low_reg));
2015
580165b3f277 6790182: matcher.cpp:1375: assert(false,"bad AD file")
kvn
parents: 1500
diff changeset
  3864
  match(regD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3865
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3866
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3867
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3868
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3869
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3870
// Special Registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3871
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3872
// Method Register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3873
operand inline_cache_regP(iRegP reg) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3874
  constraint(ALLOC_IN_RC(g5_regP)); // G5=inline_cache_reg but uses 2 bits instead of 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3875
  match(reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3876
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3877
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3878
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3879
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3880
operand interpreter_method_oop_regP(iRegP reg) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3881
  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
  3882
  match(reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3883
  format %{ %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3884
  interface(REG_INTER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3885
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3886
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3887
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3888
//----------Complex Operands---------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3889
// Indirect Memory Reference
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3890
operand indirect(sp_ptr_RegP reg) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3891
  constraint(ALLOC_IN_RC(sp_ptr_reg));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3892
  match(reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3893
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3894
  op_cost(100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3895
  format %{ "[$reg]" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3896
  interface(MEMORY_INTER) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3897
    base($reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3898
    index(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3899
    scale(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3900
    disp(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3901
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3902
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3903
2872
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3904
// Indirect with simm13 Offset
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3905
operand indOffset13(sp_ptr_RegP reg, immX13 offset) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3906
  constraint(ALLOC_IN_RC(sp_ptr_reg));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3907
  match(AddP reg offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3908
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3909
  op_cost(100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3910
  format %{ "[$reg + $offset]" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3911
  interface(MEMORY_INTER) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3912
    base($reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3913
    index(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3914
    scale(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3915
    disp($offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3916
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3917
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3918
2872
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3919
// Indirect with simm13 Offset minus 7
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3920
operand indOffset13m7(sp_ptr_RegP reg, immX13m7 offset) %{
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3921
  constraint(ALLOC_IN_RC(sp_ptr_reg));
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3922
  match(AddP reg offset);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3923
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3924
  op_cost(100);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3925
  format %{ "[$reg + $offset]" %}
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3926
  interface(MEMORY_INTER) %{
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3927
    base($reg);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3928
    index(0x0);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3929
    scale(0x0);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3930
    disp($offset);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3931
  %}
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3932
%}
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  3933
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3934
// Note:  Intel has a swapped version also, like this:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3935
//operand indOffsetX(iRegI reg, immP offset) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3936
//  constraint(ALLOC_IN_RC(int_reg));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3937
//  match(AddP offset reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3938
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3939
//  op_cost(100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3940
//  format %{ "[$reg + $offset]" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3941
//  interface(MEMORY_INTER) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3942
//    base($reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3943
//    index(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3944
//    scale(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3945
//    disp($offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3946
//  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3947
//%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3948
//// However, it doesn't make sense for SPARC, since
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3949
// we have no particularly good way to embed oops in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3950
// single instructions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3951
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3952
// Indirect with Register Index
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3953
operand indIndex(iRegP addr, iRegX index) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3954
  constraint(ALLOC_IN_RC(ptr_reg));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3955
  match(AddP addr index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3956
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3957
  op_cost(100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3958
  format %{ "[$addr + $index]" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3959
  interface(MEMORY_INTER) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3960
    base($addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3961
    index($index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3962
    scale(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3963
    disp(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3964
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3965
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3966
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3967
//----------Special Memory Operands--------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3968
// Stack Slot Operand - This operand is used for loading and storing temporary
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3969
//                      values on the stack where a match requires a value to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3970
//                      flow through memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3971
operand stackSlotI(sRegI reg) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3972
  constraint(ALLOC_IN_RC(stack_slots));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3973
  op_cost(100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3974
  //match(RegI);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3975
  format %{ "[$reg]" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3976
  interface(MEMORY_INTER) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3977
    base(0xE);   // R_SP
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3978
    index(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3979
    scale(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3980
    disp($reg);  // Stack Offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3981
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3982
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3983
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3984
operand stackSlotP(sRegP reg) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3985
  constraint(ALLOC_IN_RC(stack_slots));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3986
  op_cost(100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3987
  //match(RegP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3988
  format %{ "[$reg]" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3989
  interface(MEMORY_INTER) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3990
    base(0xE);   // R_SP
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3991
    index(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3992
    scale(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3993
    disp($reg);  // Stack Offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3994
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3995
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3996
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3997
operand stackSlotF(sRegF reg) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3998
  constraint(ALLOC_IN_RC(stack_slots));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3999
  op_cost(100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4000
  //match(RegF);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4001
  format %{ "[$reg]" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4002
  interface(MEMORY_INTER) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4003
    base(0xE);   // R_SP
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4004
    index(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4005
    scale(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4006
    disp($reg);  // Stack Offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4007
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4008
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4009
operand stackSlotD(sRegD reg) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4010
  constraint(ALLOC_IN_RC(stack_slots));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4011
  op_cost(100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4012
  //match(RegD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4013
  format %{ "[$reg]" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4014
  interface(MEMORY_INTER) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4015
    base(0xE);   // R_SP
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4016
    index(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4017
    scale(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4018
    disp($reg);  // Stack Offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4019
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4020
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4021
operand stackSlotL(sRegL reg) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4022
  constraint(ALLOC_IN_RC(stack_slots));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4023
  op_cost(100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4024
  //match(RegL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4025
  format %{ "[$reg]" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4026
  interface(MEMORY_INTER) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4027
    base(0xE);   // R_SP
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4028
    index(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4029
    scale(0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4030
    disp($reg);  // Stack Offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4031
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4032
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4033
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4034
// Operands for expressing Control Flow
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4035
// NOTE:  Label is a predefined operand which should not be redefined in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4036
//        the AD file.  It is generically handled within the ADLC.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4037
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4038
//----------Conditional Branch Operands----------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4039
// Comparison Op  - This is the operation of the comparison, and is limited to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4040
//                  the following set of codes:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4041
//                  L (<), LE (<=), G (>), GE (>=), E (==), NE (!=)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4042
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4043
// Other attributes of the comparison, such as unsignedness, are specified
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4044
// by the comparison instruction that sets a condition code flags register.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4045
// That result is represented by a flags operand whose subtype is appropriate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4046
// to the unsignedness (etc.) of the comparison.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4047
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4048
// Later, the instruction which matches both the Comparison Op (a Bool) and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4049
// the flags (produced by the Cmp) specifies the coding of the comparison op
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4050
// by matching a specific subtype of Bool operand below, such as cmpOpU.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4051
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4052
operand cmpOp() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4053
  match(Bool);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4054
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4055
  format %{ "" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4056
  interface(COND_INTER) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4057
    equal(0x1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4058
    not_equal(0x9);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4059
    less(0x3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4060
    greater_equal(0xB);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4061
    less_equal(0x2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4062
    greater(0xA);
20289
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 19979
diff changeset
  4063
    overflow(0x7);
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 19979
diff changeset
  4064
    no_overflow(0xF);
1
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
// Comparison Op, unsigned
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4069
operand cmpOpU() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4070
  match(Bool);
20289
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 19979
diff changeset
  4071
  predicate(n->as_Bool()->_test._test != BoolTest::overflow &&
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 19979
diff changeset
  4072
            n->as_Bool()->_test._test != BoolTest::no_overflow);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4073
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4074
  format %{ "u" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4075
  interface(COND_INTER) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4076
    equal(0x1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4077
    not_equal(0x9);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4078
    less(0x5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4079
    greater_equal(0xD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4080
    less_equal(0x4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4081
    greater(0xC);
20289
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 19979
diff changeset
  4082
    overflow(0x7);
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 19979
diff changeset
  4083
    no_overflow(0xF);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4084
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4085
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4086
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4087
// Comparison Op, pointer (same as unsigned)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4088
operand cmpOpP() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4089
  match(Bool);
20289
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 19979
diff changeset
  4090
  predicate(n->as_Bool()->_test._test != BoolTest::overflow &&
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 19979
diff changeset
  4091
            n->as_Bool()->_test._test != BoolTest::no_overflow);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4092
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4093
  format %{ "p" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4094
  interface(COND_INTER) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4095
    equal(0x1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4096
    not_equal(0x9);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4097
    less(0x5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4098
    greater_equal(0xD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4099
    less_equal(0x4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4100
    greater(0xC);
20289
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 19979
diff changeset
  4101
    overflow(0x7);
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 19979
diff changeset
  4102
    no_overflow(0xF);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4103
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4104
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4105
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4106
// Comparison Op, branch-register encoding
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4107
operand cmpOp_reg() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4108
  match(Bool);
20289
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 19979
diff changeset
  4109
  predicate(n->as_Bool()->_test._test != BoolTest::overflow &&
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 19979
diff changeset
  4110
            n->as_Bool()->_test._test != BoolTest::no_overflow);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4111
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4112
  format %{ "" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4113
  interface(COND_INTER) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4114
    equal        (0x1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4115
    not_equal    (0x5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4116
    less         (0x3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4117
    greater_equal(0x7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4118
    less_equal   (0x2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4119
    greater      (0x6);
20289
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 19979
diff changeset
  4120
    overflow(0x7); // not supported
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 19979
diff changeset
  4121
    no_overflow(0xF); // not supported
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4122
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4123
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4124
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4125
// Comparison Code, floating, unordered same as less
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4126
operand cmpOpF() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4127
  match(Bool);
20289
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 19979
diff changeset
  4128
  predicate(n->as_Bool()->_test._test != BoolTest::overflow &&
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 19979
diff changeset
  4129
            n->as_Bool()->_test._test != BoolTest::no_overflow);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4130
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4131
  format %{ "fl" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4132
  interface(COND_INTER) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4133
    equal(0x9);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4134
    not_equal(0x1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4135
    less(0x3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4136
    greater_equal(0xB);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4137
    less_equal(0xE);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4138
    greater(0x6);
20289
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 19979
diff changeset
  4139
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 19979
diff changeset
  4140
    overflow(0x7); // not supported
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 19979
diff changeset
  4141
    no_overflow(0xF); // not supported
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4142
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4143
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4144
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4145
// Used by long compare
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4146
operand cmpOp_commute() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4147
  match(Bool);
20289
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 19979
diff changeset
  4148
  predicate(n->as_Bool()->_test._test != BoolTest::overflow &&
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 19979
diff changeset
  4149
            n->as_Bool()->_test._test != BoolTest::no_overflow);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4150
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4151
  format %{ "" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4152
  interface(COND_INTER) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4153
    equal(0x1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4154
    not_equal(0x9);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4155
    less(0xA);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4156
    greater_equal(0x2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4157
    less_equal(0xB);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4158
    greater(0x3);
20289
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 19979
diff changeset
  4159
    overflow(0x7);
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 19979
diff changeset
  4160
    no_overflow(0xF);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4161
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4162
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4163
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4164
//----------OPERAND CLASSES----------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4165
// Operand Classes are groups of operands that are used to simplify
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 2022
diff changeset
  4166
// instruction definitions by not requiring the AD writer to specify separate
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4167
// instructions for every form of operand when the instruction accepts
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4168
// multiple operand types with the same basic encoding and format.  The classic
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4169
// case of this is memory operands.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4170
opclass memory( indirect, indOffset13, indIndex );
5352
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
  4171
opclass indIndexMemory( indIndex );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4172
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4173
//----------PIPELINE-----------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4174
pipeline %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4175
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4176
//----------ATTRIBUTES---------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4177
attributes %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4178
  fixed_size_instructions;           // Fixed size instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4179
  branch_has_delay_slot;             // Branch has delay slot following
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4180
  max_instructions_per_bundle = 4;   // Up to 4 instructions per bundle
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4181
  instruction_unit_size = 4;         // An instruction is 4 bytes long
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4182
  instruction_fetch_unit_size = 16;  // The processor fetches one line
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4183
  instruction_fetch_units = 1;       // of 16 bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4184
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4185
  // List of nop instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4186
  nops( Nop_A0, Nop_A1, Nop_MS, Nop_FA, Nop_BR );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4187
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4188
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4189
//----------RESOURCES----------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4190
// Resources are the functional units available to the machine
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4191
resources(A0, A1, MS, BR, FA, FM, IDIV, FDIV, IALU = A0 | A1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4192
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4193
//----------PIPELINE DESCRIPTION-----------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4194
// Pipeline Description specifies the stages in the machine's pipeline
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4195
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4196
pipe_desc(A, P, F, B, I, J, S, R, E, C, M, W, X, T, D);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4197
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4198
//----------PIPELINE CLASSES---------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4199
// Pipeline Classes describe the stages in which input and output are
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4200
// referenced by the hardware pipeline.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4201
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4202
// Integer ALU reg-reg operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4203
pipe_class ialu_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4204
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4205
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4206
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4207
    src2  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4208
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4209
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4210
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4211
// Integer ALU reg-reg long operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4212
pipe_class ialu_reg_reg_2(iRegL dst, iRegL src1, iRegL src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4213
    instruction_count(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4214
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4215
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4216
    src2  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4217
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4218
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4219
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4220
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4221
// Integer ALU reg-reg long dependent operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4222
pipe_class ialu_reg_reg_2_dep(iRegL dst, iRegL src1, iRegL src2, flagsReg cr) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4223
    instruction_count(1); multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4224
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4225
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4226
    src2  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4227
    cr    : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4228
    IALU  : R(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4229
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4230
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4231
// Integer ALU reg-imm operaion
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4232
pipe_class ialu_reg_imm(iRegI dst, iRegI src1, immI13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4233
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4234
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4235
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4236
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4237
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4238
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4239
// Integer ALU reg-reg operation with condition code
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4240
pipe_class ialu_cc_reg_reg(iRegI dst, iRegI src1, iRegI src2, flagsReg cr) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4241
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4242
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4243
    cr    : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4244
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4245
    src2  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4246
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4247
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4248
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4249
// Integer ALU reg-imm operation with condition code
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4250
pipe_class ialu_cc_reg_imm(iRegI dst, iRegI src1, immI13 src2, flagsReg cr) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4251
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4252
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4253
    cr    : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4254
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4255
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4256
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4257
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4258
// Integer ALU zero-reg operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4259
pipe_class ialu_zero_reg(iRegI dst, immI0 zero, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4260
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4261
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4262
    src2  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4263
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4264
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4265
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4266
// Integer ALU zero-reg operation with condition code only
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4267
pipe_class ialu_cconly_zero_reg(flagsReg cr, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4268
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4269
    cr    : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4270
    src   : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4271
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4272
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4273
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4274
// Integer ALU reg-reg operation with condition code only
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4275
pipe_class ialu_cconly_reg_reg(flagsReg cr, iRegI src1, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4276
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4277
    cr    : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4278
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4279
    src2  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4280
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4281
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4282
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4283
// Integer ALU reg-imm operation with condition code only
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4284
pipe_class ialu_cconly_reg_imm(flagsReg cr, iRegI src1, immI13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4285
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4286
    cr    : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4287
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4288
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4289
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4290
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4291
// Integer ALU reg-reg-zero operation with condition code only
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4292
pipe_class ialu_cconly_reg_reg_zero(flagsReg cr, iRegI src1, iRegI src2, immI0 zero) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4293
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4294
    cr    : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4295
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4296
    src2  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4297
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4298
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4299
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4300
// Integer ALU reg-imm-zero operation with condition code only
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4301
pipe_class ialu_cconly_reg_imm_zero(flagsReg cr, iRegI src1, immI13 src2, immI0 zero) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4302
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4303
    cr    : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4304
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4305
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4306
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4307
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4308
// Integer ALU reg-reg operation with condition code, src1 modified
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4309
pipe_class ialu_cc_rwreg_reg(flagsReg cr, iRegI src1, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4310
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4311
    cr    : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4312
    src1  : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4313
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4314
    src2  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4315
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4316
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4317
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4318
// Integer ALU reg-imm operation with condition code, src1 modified
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4319
pipe_class ialu_cc_rwreg_imm(flagsReg cr, iRegI src1, immI13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4320
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4321
    cr    : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4322
    src1  : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4323
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4324
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4325
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4326
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4327
pipe_class cmpL_reg(iRegI dst, iRegL src1, iRegL src2, flagsReg cr ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4328
    multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4329
    dst   : E(write)+4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4330
    cr    : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4331
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4332
    src2  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4333
    IALU  : R(3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4334
    BR    : R(2);
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 operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4338
pipe_class ialu_none(iRegI dst) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4339
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4340
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4341
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4342
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4343
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4344
// Integer ALU reg operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4345
pipe_class ialu_reg(iRegI dst, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4346
    single_instruction; may_have_no_code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4347
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4348
    src   : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4349
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4350
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4351
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4352
// Integer ALU reg conditional operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4353
// This instruction has a 1 cycle stall, and cannot execute
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4354
// in the same cycle as the instruction setting the condition
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4355
// code. We kludge this by pretending to read the condition code
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4356
// 1 cycle earlier, and by marking the functional units as busy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4357
// for 2 cycles with the result available 1 cycle later than
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4358
// is really the case.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4359
pipe_class ialu_reg_flags( iRegI op2_out, iRegI op2_in, iRegI op1, flagsReg cr ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4360
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4361
    op2_out : C(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4362
    op1     : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4363
    cr      : R(read);       // This is really E, with a 1 cycle stall
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4364
    BR      : R(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4365
    MS      : R(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4366
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4367
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4368
pipe_class ialu_clr_and_mover( iRegI dst, iRegP src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4369
    instruction_count(1); multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4370
    dst     : C(write)+1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4371
    src     : R(read)+1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4372
    IALU    : R(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4373
    BR      : E(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4374
    MS      : E(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4375
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4376
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4377
// Integer ALU reg operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4378
pipe_class ialu_move_reg_L_to_I(iRegI dst, iRegL src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4379
    single_instruction; may_have_no_code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4380
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4381
    src   : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4382
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4383
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4384
pipe_class ialu_move_reg_I_to_L(iRegL dst, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4385
    single_instruction; may_have_no_code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4386
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4387
    src   : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4388
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4389
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4390
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4391
// Two integer ALU reg operations
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4392
pipe_class ialu_reg_2(iRegL dst, iRegL src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4393
    instruction_count(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4394
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4395
    src   : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4396
    A0    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4397
    A1    : 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
// Two integer ALU reg operations
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4401
pipe_class ialu_move_reg_L_to_L(iRegL dst, iRegL src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4402
    instruction_count(2); may_have_no_code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4403
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4404
    src   : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4405
    A0    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4406
    A1    : 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 imm operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4410
pipe_class ialu_imm(iRegI dst, immI13 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4411
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4412
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4413
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4414
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4415
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4416
// Integer ALU reg-reg with carry operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4417
pipe_class ialu_reg_reg_cy(iRegI dst, iRegI src1, iRegI src2, iRegI cy) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4418
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4419
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4420
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4421
    src2  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4422
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4423
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4424
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4425
// Integer ALU cc operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4426
pipe_class ialu_cc(iRegI dst, flagsReg cc) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4427
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4428
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4429
    cc    : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4430
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4431
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4432
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4433
// Integer ALU cc / second IALU operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4434
pipe_class ialu_reg_ialu( iRegI dst, iRegI src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4435
    instruction_count(1); multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4436
    dst   : E(write)+1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4437
    src   : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4438
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4439
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4440
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4441
// Integer ALU cc / second IALU operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4442
pipe_class ialu_reg_reg_ialu( iRegI dst, iRegI p, iRegI q ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4443
    instruction_count(1); multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4444
    dst   : E(write)+1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4445
    p     : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4446
    q     : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4447
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4448
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4449
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4450
// Integer ALU hi-lo-reg operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4451
pipe_class ialu_hi_lo_reg(iRegI dst, immI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4452
    instruction_count(1); multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4453
    dst   : E(write)+1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4454
    IALU  : R(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4455
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4456
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4457
// Float ALU hi-lo-reg operation (with temp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4458
pipe_class ialu_hi_lo_reg_temp(regF dst, immF src, g3RegP tmp) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4459
    instruction_count(1); multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4460
    dst   : E(write)+1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4461
    IALU  : R(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4462
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4463
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4464
// Long Constant
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4465
pipe_class loadConL( iRegL dst, immL src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4466
    instruction_count(2); multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4467
    dst   : E(write)+1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4468
    IALU  : R(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4469
    IALU  : R(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4470
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4471
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4472
// Pointer Constant
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4473
pipe_class loadConP( iRegP dst, immP src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4474
    instruction_count(0); multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4475
    fixed_latency(6);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4476
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4477
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4478
// Polling Address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4479
pipe_class loadConP_poll( iRegP dst, immP_poll src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4480
    instruction_count(0); multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4481
    fixed_latency(6);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4482
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4483
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4484
// Long Constant small
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4485
pipe_class loadConLlo( iRegL dst, immL src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4486
    instruction_count(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4487
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4488
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4489
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4490
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4491
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4492
// [PHH] This is wrong for 64-bit.  See LdImmF/D.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4493
pipe_class loadConFD(regF dst, immF src, g3RegP tmp) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4494
    instruction_count(1); multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4495
    src   : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4496
    dst   : M(write)+1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4497
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4498
    MS    : E;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4499
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4500
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4501
// Integer ALU nop operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4502
pipe_class ialu_nop() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4503
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4504
    IALU  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4505
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4506
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4507
// Integer ALU nop operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4508
pipe_class ialu_nop_A0() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4509
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4510
    A0    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4511
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4512
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4513
// Integer ALU nop operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4514
pipe_class ialu_nop_A1() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4515
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4516
    A1    : 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
// Integer Multiply reg-reg operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4520
pipe_class imul_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4521
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4522
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4523
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4524
    src2  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4525
    MS    : R(5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4526
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4527
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4528
// Integer Multiply reg-imm operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4529
pipe_class imul_reg_imm(iRegI dst, iRegI src1, immI13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4530
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4531
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4532
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4533
    MS    : R(5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4534
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4535
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4536
pipe_class mulL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4537
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4538
    dst   : E(write)+4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4539
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4540
    src2  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4541
    MS    : R(6);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4542
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4543
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4544
pipe_class mulL_reg_imm(iRegL dst, iRegL src1, immL13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4545
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4546
    dst   : E(write)+4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4547
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4548
    MS    : R(6);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4549
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4550
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4551
// Integer Divide reg-reg
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4552
pipe_class sdiv_reg_reg(iRegI dst, iRegI src1, iRegI src2, iRegI temp, flagsReg cr) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4553
    instruction_count(1); multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4554
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4555
    temp  : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4556
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4557
    src2  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4558
    temp  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4559
    MS    : R(38);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4560
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4561
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4562
// Integer Divide reg-imm
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4563
pipe_class sdiv_reg_imm(iRegI dst, iRegI src1, immI13 src2, iRegI temp, flagsReg cr) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4564
    instruction_count(1); multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4565
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4566
    temp  : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4567
    src1  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4568
    temp  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4569
    MS    : R(38);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4570
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4571
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4572
// Long Divide
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4573
pipe_class divL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4574
    dst  : E(write)+71;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4575
    src1 : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4576
    src2 : R(read)+1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4577
    MS   : R(70);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4578
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4579
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4580
pipe_class divL_reg_imm(iRegL dst, iRegL src1, immL13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4581
    dst  : E(write)+71;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4582
    src1 : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4583
    MS   : R(70);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4584
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4585
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4586
// Floating Point Add Float
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4587
pipe_class faddF_reg_reg(regF dst, regF src1, regF src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4588
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4589
    dst   : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4590
    src1  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4591
    src2  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4592
    FA    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4593
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4594
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4595
// Floating Point Add Double
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4596
pipe_class faddD_reg_reg(regD dst, regD src1, regD src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4597
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4598
    dst   : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4599
    src1  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4600
    src2  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4601
    FA    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4602
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4603
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4604
// Floating Point Conditional Move based on integer flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4605
pipe_class int_conditional_float_move (cmpOp cmp, flagsReg cr, regF dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4606
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4607
    dst   : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4608
    src   : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4609
    cr    : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4610
    FA    : R(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4611
    BR    : R(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4612
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4613
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4614
// Floating Point Conditional Move based on integer flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4615
pipe_class int_conditional_double_move (cmpOp cmp, flagsReg cr, regD dst, regD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4616
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4617
    dst   : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4618
    src   : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4619
    cr    : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4620
    FA    : R(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4621
    BR    : R(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4622
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4623
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4624
// Floating Point Multiply Float
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4625
pipe_class fmulF_reg_reg(regF dst, regF src1, regF src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4626
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4627
    dst   : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4628
    src1  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4629
    src2  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4630
    FM    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4631
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4632
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4633
// Floating Point Multiply Double
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4634
pipe_class fmulD_reg_reg(regD dst, regD src1, regD src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4635
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4636
    dst   : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4637
    src1  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4638
    src2  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4639
    FM    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4640
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4641
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4642
// Floating Point Divide Float
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4643
pipe_class fdivF_reg_reg(regF dst, regF src1, regF src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4644
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4645
    dst   : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4646
    src1  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4647
    src2  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4648
    FM    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4649
    FDIV  : C(14);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4650
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4651
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4652
// Floating Point Divide Double
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4653
pipe_class fdivD_reg_reg(regD dst, regD src1, regD src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4654
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4655
    dst   : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4656
    src1  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4657
    src2  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4658
    FM    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4659
    FDIV  : C(17);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4660
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4661
46597
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  4662
// Fused floating-point multiply-add float.
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  4663
pipe_class fmaF_regx4(regF dst, regF src1, regF src2, regF src3) %{
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  4664
    single_instruction;
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  4665
    dst   : X(write);
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  4666
    src1  : E(read);
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  4667
    src2  : E(read);
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  4668
    src3  : E(read);
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  4669
    FM    : R;
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  4670
%}
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  4671
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  4672
// Fused gloating-point multiply-add double.
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  4673
pipe_class fmaD_regx4(regD dst, regD src1, regD src2, regD src3) %{
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  4674
    single_instruction;
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  4675
    dst   : X(write);
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  4676
    src1  : E(read);
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  4677
    src2  : E(read);
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  4678
    src3  : E(read);
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  4679
    FM    : R;
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  4680
%}
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  4681
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4682
// Floating Point Move/Negate/Abs Float
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4683
pipe_class faddF_reg(regF dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4684
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4685
    dst   : W(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4686
    src   : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4687
    FA    : R(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4688
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4689
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4690
// Floating Point Move/Negate/Abs Double
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4691
pipe_class faddD_reg(regD dst, regD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4692
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4693
    dst   : W(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4694
    src   : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4695
    FA    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4696
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4697
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4698
// Floating Point Convert F->D
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4699
pipe_class fcvtF2D(regD dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4700
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4701
    dst   : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4702
    src   : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4703
    FA    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4704
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4705
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4706
// Floating Point Convert I->D
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4707
pipe_class fcvtI2D(regD dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4708
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4709
    dst   : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4710
    src   : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4711
    FA    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4712
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4713
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4714
// Floating Point Convert LHi->D
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4715
pipe_class fcvtLHi2D(regD dst, regD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4716
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4717
    dst   : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4718
    src   : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4719
    FA    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4720
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4721
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4722
// Floating Point Convert L->D
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4723
pipe_class fcvtL2D(regD dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4724
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4725
    dst   : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4726
    src   : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4727
    FA    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4728
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4729
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4730
// Floating Point Convert L->F
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4731
pipe_class fcvtL2F(regD dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4732
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4733
    dst   : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4734
    src   : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4735
    FA    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4736
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4737
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4738
// Floating Point Convert D->F
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4739
pipe_class fcvtD2F(regD dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4740
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4741
    dst   : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4742
    src   : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4743
    FA    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4744
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4745
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4746
// Floating Point Convert I->L
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4747
pipe_class fcvtI2L(regD dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4748
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4749
    dst   : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4750
    src   : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4751
    FA    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4752
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4753
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4754
// Floating Point Convert D->F
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4755
pipe_class fcvtD2I(regF dst, regD src, flagsReg cr) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4756
    instruction_count(1); multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4757
    dst   : X(write)+6;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4758
    src   : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4759
    FA    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4760
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4761
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4762
// Floating Point Convert D->L
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4763
pipe_class fcvtD2L(regD dst, regD src, flagsReg cr) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4764
    instruction_count(1); multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4765
    dst   : X(write)+6;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4766
    src   : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4767
    FA    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4768
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4769
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4770
// Floating Point Convert F->I
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4771
pipe_class fcvtF2I(regF dst, regF src, flagsReg cr) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4772
    instruction_count(1); multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4773
    dst   : X(write)+6;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4774
    src   : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4775
    FA    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4776
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4777
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4778
// Floating Point Convert F->L
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4779
pipe_class fcvtF2L(regD dst, regF src, flagsReg cr) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4780
    instruction_count(1); multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4781
    dst   : X(write)+6;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4782
    src   : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4783
    FA    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4784
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4785
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4786
// Floating Point Convert I->F
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4787
pipe_class fcvtI2F(regF dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4788
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4789
    dst   : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4790
    src   : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4791
    FA    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4792
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4793
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4794
// Floating Point Compare
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4795
pipe_class faddF_fcc_reg_reg_zero(flagsRegF cr, regF src1, regF src2, immI0 zero) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4796
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4797
    cr    : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4798
    src1  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4799
    src2  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4800
    FA    : R;
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 Compare
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4804
pipe_class faddD_fcc_reg_reg_zero(flagsRegF cr, regD src1, regD src2, immI0 zero) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4805
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4806
    cr    : X(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4807
    src1  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4808
    src2  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4809
    FA    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4810
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4811
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4812
// Floating Add Nop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4813
pipe_class fadd_nop() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4814
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4815
    FA  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4816
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4817
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4818
// Integer Store to Memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4819
pipe_class istore_mem_reg(memory mem, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4820
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4821
    mem   : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4822
    src   : C(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4823
    MS    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4824
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4825
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4826
// Integer Store to Memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4827
pipe_class istore_mem_spORreg(memory mem, sp_ptr_RegP src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4828
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4829
    mem   : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4830
    src   : C(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4831
    MS    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4832
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4833
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4834
// Integer Store Zero to Memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4835
pipe_class istore_mem_zero(memory mem, immI0 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4836
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4837
    mem   : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4838
    MS    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4839
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4840
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4841
// Special Stack Slot Store
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4842
pipe_class istore_stk_reg(stackSlotI stkSlot, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4843
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4844
    stkSlot : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4845
    src     : C(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4846
    MS      : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4847
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4848
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4849
// Special Stack Slot Store
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4850
pipe_class lstoreI_stk_reg(stackSlotL stkSlot, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4851
    instruction_count(2); multiple_bundles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4852
    stkSlot : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4853
    src     : C(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4854
    MS      : R(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4855
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4856
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4857
// Float Store
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4858
pipe_class fstoreF_mem_reg(memory mem, RegF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4859
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4860
    mem : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4861
    src : C(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4862
    MS  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4863
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4864
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4865
// Float Store
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4866
pipe_class fstoreF_mem_zero(memory mem, immF0 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4867
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4868
    mem : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4869
    MS  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4870
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4871
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4872
// Double Store
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4873
pipe_class fstoreD_mem_reg(memory mem, RegD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4874
    instruction_count(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4875
    mem : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4876
    src : C(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4877
    MS  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4878
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4879
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4880
// Double Store
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4881
pipe_class fstoreD_mem_zero(memory mem, immD0 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4882
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4883
    mem : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4884
    MS  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4885
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4886
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4887
// Special Stack Slot Float Store
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4888
pipe_class fstoreF_stk_reg(stackSlotI stkSlot, RegF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4889
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4890
    stkSlot : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4891
    src     : C(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4892
    MS      : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4893
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4894
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4895
// Special Stack Slot Double Store
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4896
pipe_class fstoreD_stk_reg(stackSlotI stkSlot, RegD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4897
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4898
    stkSlot : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4899
    src     : C(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4900
    MS      : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4901
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4902
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4903
// Integer Load (when sign bit propagation not needed)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4904
pipe_class iload_mem(iRegI dst, memory mem) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4905
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4906
    mem : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4907
    dst : C(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4908
    MS  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4909
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4910
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4911
// Integer Load from stack operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4912
pipe_class iload_stkD(iRegI dst, stackSlotD mem ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4913
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4914
    mem : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4915
    dst : C(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4916
    MS  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4917
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4918
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4919
// Integer Load (when sign bit propagation or masking is needed)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4920
pipe_class iload_mask_mem(iRegI dst, memory mem) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4921
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4922
    mem : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4923
    dst : M(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4924
    MS  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4925
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4926
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4927
// Float Load
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4928
pipe_class floadF_mem(regF dst, memory mem) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4929
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4930
    mem : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4931
    dst : M(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4932
    MS  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4933
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4934
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4935
// Float Load
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4936
pipe_class floadD_mem(regD dst, memory mem) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4937
    instruction_count(1); multiple_bundles; // Again, unaligned argument is only multiple case
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4938
    mem : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4939
    dst : M(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4940
    MS  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4941
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4942
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4943
// Float Load
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4944
pipe_class floadF_stk(regF dst, stackSlotI stkSlot) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4945
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4946
    stkSlot : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4947
    dst : M(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4948
    MS  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4949
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4950
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4951
// Float Load
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4952
pipe_class floadD_stk(regD dst, stackSlotI stkSlot) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4953
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4954
    stkSlot : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4955
    dst : M(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4956
    MS  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4957
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4958
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4959
// Memory Nop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4960
pipe_class mem_nop() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4961
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4962
    MS  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4963
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4964
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4965
pipe_class sethi(iRegP dst, immI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4966
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4967
    dst  : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4968
    IALU : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4969
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4970
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4971
pipe_class loadPollP(iRegP poll) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4972
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4973
    poll : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4974
    MS   : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4975
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4976
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4977
pipe_class br(Universe br, label labl) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4978
    single_instruction_with_delay_slot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4979
    BR  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4980
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4981
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4982
pipe_class br_cc(Universe br, cmpOp cmp, flagsReg cr, label labl) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4983
    single_instruction_with_delay_slot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4984
    cr    : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4985
    BR    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4986
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4987
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4988
pipe_class br_reg(Universe br, cmpOp cmp, iRegI op1, label labl) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4989
    single_instruction_with_delay_slot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4990
    op1 : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4991
    BR  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4992
    MS  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4993
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4994
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  4995
// Compare and branch
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  4996
pipe_class cmp_br_reg_reg(Universe br, cmpOp cmp, iRegI src1, iRegI src2, label labl, flagsReg cr) %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  4997
    instruction_count(2); has_delay_slot;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  4998
    cr    : E(write);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  4999
    src1  : R(read);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  5000
    src2  : R(read);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  5001
    IALU  : R;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  5002
    BR    : R;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  5003
%}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  5004
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  5005
// Compare and branch
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  5006
pipe_class cmp_br_reg_imm(Universe br, cmpOp cmp, iRegI src1, immI13 src2, label labl, flagsReg cr) %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  5007
    instruction_count(2); has_delay_slot;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  5008
    cr    : E(write);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  5009
    src1  : R(read);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  5010
    IALU  : R;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  5011
    BR    : R;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  5012
%}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  5013
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  5014
// Compare and branch using cbcond
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  5015
pipe_class cbcond_reg_reg(Universe br, cmpOp cmp, iRegI src1, iRegI src2, label labl) %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  5016
    single_instruction;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  5017
    src1  : E(read);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  5018
    src2  : E(read);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  5019
    IALU  : R;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  5020
    BR    : R;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  5021
%}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  5022
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  5023
// Compare and branch using cbcond
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  5024
pipe_class cbcond_reg_imm(Universe br, cmpOp cmp, iRegI src1, immI5 src2, label labl) %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  5025
    single_instruction;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  5026
    src1  : E(read);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  5027
    IALU  : R;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  5028
    BR    : R;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  5029
%}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  5030
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5031
pipe_class br_fcc(Universe br, cmpOpF cc, flagsReg cr, label labl) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5032
    single_instruction_with_delay_slot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5033
    cr    : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5034
    BR    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5035
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5036
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5037
pipe_class br_nop() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5038
    single_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5039
    BR  : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5040
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5041
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5042
pipe_class simple_call(method meth) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5043
    instruction_count(2); multiple_bundles; force_serialization;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5044
    fixed_latency(100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5045
    BR  : R(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5046
    MS  : R(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5047
    A0  : R(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5048
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5049
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5050
pipe_class compiled_call(method meth) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5051
    instruction_count(1); multiple_bundles; force_serialization;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5052
    fixed_latency(100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5053
    MS  : R(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5054
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5055
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5056
pipe_class call(method meth) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5057
    instruction_count(0); multiple_bundles; force_serialization;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5058
    fixed_latency(100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5059
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5060
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5061
pipe_class tail_call(Universe ignore, label labl) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5062
    single_instruction; has_delay_slot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5063
    fixed_latency(100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5064
    BR  : R(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5065
    MS  : R(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5066
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5067
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5068
pipe_class ret(Universe ignore) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5069
    single_instruction; has_delay_slot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5070
    BR  : R(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5071
    MS  : R(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5072
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5073
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5074
pipe_class ret_poll(g3RegP poll) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5075
    instruction_count(3); has_delay_slot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5076
    poll : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5077
    MS   : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5078
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5079
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5080
// The real do-nothing guy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5081
pipe_class empty( ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5082
    instruction_count(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5083
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5084
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5085
pipe_class long_memory_op() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5086
    instruction_count(0); multiple_bundles; force_serialization;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5087
    fixed_latency(25);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5088
    MS  : R(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5089
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5090
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5091
// Check-cast
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5092
pipe_class partial_subtype_check_pipe(Universe ignore, iRegP array, iRegP match ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5093
    array : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5094
    match  : R(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5095
    IALU   : R(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5096
    BR     : R(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5097
    MS     : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5098
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5099
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5100
// Convert FPU flags into +1,0,-1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5101
pipe_class floating_cmp( iRegI dst, regF src1, regF src2 ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5102
    src1  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5103
    src2  : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5104
    dst   : E(write);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5105
    FA    : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5106
    MS    : R(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5107
    BR    : R(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5108
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5109
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5110
// Compare for p < q, and conditionally add y
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5111
pipe_class cadd_cmpltmask( iRegI p, iRegI q, iRegI y ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5112
    p     : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5113
    q     : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5114
    y     : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5115
    IALU  : R(3)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5116
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5117
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5118
// Perform a compare, then move conditionally in a branch delay slot.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5119
pipe_class min_max( iRegI src2, iRegI srcdst ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5120
    src2   : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5121
    srcdst : E(read);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5122
    IALU   : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5123
    BR     : R;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5124
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5125
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5126
// Define the class for the Nop node
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5127
define %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5128
   MachNop = ialu_nop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5129
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5130
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5131
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5132
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5133
//----------INSTRUCTIONS-------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5134
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5135
//------------Special Stack Slot instructions - no match rules-----------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5136
instruct stkI_to_regF(regF dst, stackSlotI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5137
  // No match rule to avoid chain rule match.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5138
  effect(DEF dst, USE src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5139
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5140
  format %{ "LDF    $src,$dst\t! stkI to regF" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5141
  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
  5142
  ins_encode(simple_form3_mem_reg(src, dst));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5143
  ins_pipe(floadF_stk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5144
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5145
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5146
instruct stkL_to_regD(regD dst, stackSlotL src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5147
  // No match rule to avoid chain rule match.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5148
  effect(DEF dst, USE src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5149
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5150
  format %{ "LDDF   $src,$dst\t! stkL to regD" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5151
  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
  5152
  ins_encode(simple_form3_mem_reg(src, dst));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5153
  ins_pipe(floadD_stk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5154
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5155
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5156
instruct regF_to_stkI(stackSlotI dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5157
  // No match rule to avoid chain rule match.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5158
  effect(DEF dst, USE src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5159
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5160
  format %{ "STF    $src,$dst\t! regF to stkI" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5161
  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
  5162
  ins_encode(simple_form3_mem_reg(dst, src));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5163
  ins_pipe(fstoreF_stk_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5164
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5165
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5166
instruct regD_to_stkL(stackSlotL dst, regD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5167
  // No match rule to avoid chain rule match.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5168
  effect(DEF dst, USE src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5169
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5170
  format %{ "STDF   $src,$dst\t! regD to stkL" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5171
  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
  5172
  ins_encode(simple_form3_mem_reg(dst, src));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5173
  ins_pipe(fstoreD_stk_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5174
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5175
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5176
instruct regI_to_stkLHi(stackSlotL dst, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5177
  effect(DEF dst, USE src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5178
  ins_cost(MEMORY_REF_COST*2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5179
  format %{ "STW    $src,$dst.hi\t! long\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5180
            "STW    R_G0,$dst.lo" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5181
  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
  5182
  ins_encode(simple_form3_mem_reg(dst, src), form3_mem_plus_4_reg(dst, R_G0));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5183
  ins_pipe(lstoreI_stk_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5184
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5185
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5186
instruct regL_to_stkD(stackSlotD dst, iRegL src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5187
  // No match rule to avoid chain rule match.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5188
  effect(DEF dst, USE src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5189
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5190
  format %{ "STX    $src,$dst\t! regL to stkD" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5191
  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
  5192
  ins_encode(simple_form3_mem_reg( dst, src ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5193
  ins_pipe(istore_stk_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5194
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5195
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5196
//---------- Chain stack slots between similar types --------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5197
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5198
// Load integer from stack slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5199
instruct stkI_to_regI( iRegI dst, stackSlotI src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5200
  match(Set dst src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5201
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5202
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5203
  format %{ "LDUW   $src,$dst\t!stk" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5204
  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
  5205
  ins_encode(simple_form3_mem_reg( src, dst ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5206
  ins_pipe(iload_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5207
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5208
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5209
// Store integer to stack slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5210
instruct regI_to_stkI( stackSlotI dst, iRegI src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5211
  match(Set dst src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5212
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5213
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5214
  format %{ "STW    $src,$dst\t!stk" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5215
  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
  5216
  ins_encode(simple_form3_mem_reg( dst, src ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5217
  ins_pipe(istore_mem_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5218
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5219
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5220
// Load long from stack slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5221
instruct stkL_to_regL( iRegL dst, stackSlotL src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5222
  match(Set dst src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5223
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5224
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5225
  format %{ "LDX    $src,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5226
  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
  5227
  ins_encode(simple_form3_mem_reg( src, dst ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5228
  ins_pipe(iload_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5229
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5230
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5231
// Store long to stack slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5232
instruct regL_to_stkL(stackSlotL dst, iRegL src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5233
  match(Set dst src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5234
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5235
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5236
  format %{ "STX    $src,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5237
  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
  5238
  ins_encode(simple_form3_mem_reg( dst, src ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5239
  ins_pipe(istore_mem_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5240
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5241
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5242
// Load pointer from stack slot, 64-bit encoding
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5243
instruct stkP_to_regP( iRegP dst, stackSlotP src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5244
  match(Set dst src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5245
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5246
  format %{ "LDX    $src,$dst\t!ptr" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5247
  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
  5248
  ins_encode(simple_form3_mem_reg( src, dst ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5249
  ins_pipe(iload_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5250
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5251
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5252
// Store pointer to stack slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5253
instruct regP_to_stkP(stackSlotP dst, iRegP src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5254
  match(Set dst src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5255
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5256
  format %{ "STX    $src,$dst\t!ptr" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5257
  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
  5258
  ins_encode(simple_form3_mem_reg( dst, src ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5259
  ins_pipe(istore_mem_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5260
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5261
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5262
//------------Special Nop instructions for bundling - no match rules-----------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5263
// Nop using the A0 functional unit
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5264
instruct Nop_A0() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5265
  ins_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5266
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5267
  format %{ "NOP    ! Alu Pipeline" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5268
  opcode(Assembler::or_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5269
  ins_encode( form2_nop() );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5270
  ins_pipe(ialu_nop_A0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5271
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5272
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5273
// Nop using the A1 functional unit
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5274
instruct Nop_A1( ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5275
  ins_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5276
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5277
  format %{ "NOP    ! Alu Pipeline" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5278
  opcode(Assembler::or_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5279
  ins_encode( form2_nop() );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5280
  ins_pipe(ialu_nop_A1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5281
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5282
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5283
// Nop using the memory functional unit
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5284
instruct Nop_MS( ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5285
  ins_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5286
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5287
  format %{ "NOP    ! Memory Pipeline" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5288
  ins_encode( emit_mem_nop );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5289
  ins_pipe(mem_nop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5290
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5291
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5292
// Nop using the floating add functional unit
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5293
instruct Nop_FA( ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5294
  ins_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5295
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5296
  format %{ "NOP    ! Floating Add Pipeline" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5297
  ins_encode( emit_fadd_nop );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5298
  ins_pipe(fadd_nop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5299
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5300
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5301
// Nop using the branch functional unit
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5302
instruct Nop_BR( ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5303
  ins_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5304
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5305
  format %{ "NOP    ! Branch Pipeline" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5306
  ins_encode( emit_br_nop );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5307
  ins_pipe(br_nop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5308
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5309
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5310
//----------Load/Store/Move Instructions---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5311
//----------Load Instructions--------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5312
// Load Byte (8bit signed)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5313
instruct loadB(iRegI dst, memory mem) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5314
  match(Set dst (LoadB mem));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5315
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5316
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5317
  size(4);
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5318
  format %{ "LDSB   $mem,$dst\t! byte" %}
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5319
  ins_encode %{
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5320
    __ ldsb($mem$$Address, $dst$$Register);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5321
  %}
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5322
  ins_pipe(iload_mask_mem);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5323
%}
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5324
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5325
// Load Byte (8bit signed) into a Long Register
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5326
instruct loadB2L(iRegL dst, memory mem) %{
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5327
  match(Set dst (ConvI2L (LoadB mem)));
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5328
  ins_cost(MEMORY_REF_COST);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5329
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5330
  size(4);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5331
  format %{ "LDSB   $mem,$dst\t! byte -> long" %}
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5332
  ins_encode %{
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5333
    __ ldsb($mem$$Address, $dst$$Register);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5334
  %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5335
  ins_pipe(iload_mask_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5336
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5337
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5338
// Load Unsigned Byte (8bit UNsigned) into an int reg
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5339
instruct loadUB(iRegI dst, memory mem) %{
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5340
  match(Set dst (LoadUB mem));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5341
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5342
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5343
  size(4);
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5344
  format %{ "LDUB   $mem,$dst\t! ubyte" %}
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5345
  ins_encode %{
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5346
    __ ldub($mem$$Address, $dst$$Register);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5347
  %}
3177
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5348
  ins_pipe(iload_mem);
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5349
%}
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5350
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5351
// Load Unsigned Byte (8bit UNsigned) into a Long Register
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5352
instruct loadUB2L(iRegL dst, memory mem) %{
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5353
  match(Set dst (ConvI2L (LoadUB mem)));
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5354
  ins_cost(MEMORY_REF_COST);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5355
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5356
  size(4);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5357
  format %{ "LDUB   $mem,$dst\t! ubyte -> long" %}
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5358
  ins_encode %{
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5359
    __ ldub($mem$$Address, $dst$$Register);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5360
  %}
3177
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5361
  ins_pipe(iload_mem);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5362
%}
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5363
31047
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  5364
// Load Unsigned Byte (8 bit UNsigned) with 32-bit mask into Long Register
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  5365
instruct loadUB2L_immI(iRegL dst, memory mem, immI mask) %{
3177
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5366
  match(Set dst (ConvI2L (AndI (LoadUB mem) mask)));
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5367
  ins_cost(MEMORY_REF_COST + DEFAULT_COST);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5368
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5369
  size(2*4);
31047
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  5370
  format %{ "LDUB   $mem,$dst\t# ubyte & 32-bit mask -> long\n\t"
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  5371
            "AND    $dst,right_n_bits($mask, 8),$dst" %}
3177
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5372
  ins_encode %{
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5373
    __ ldub($mem$$Address, $dst$$Register);
31047
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  5374
    __ and3($dst$$Register, $mask$$constant & right_n_bits(8), $dst$$Register);
3177
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5375
  %}
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5376
  ins_pipe(iload_mem);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5377
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5378
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5379
// Load Short (16bit signed)
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5380
instruct loadS(iRegI dst, memory mem) %{
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5381
  match(Set dst (LoadS mem));
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5382
  ins_cost(MEMORY_REF_COST);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5383
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5384
  size(4);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5385
  format %{ "LDSH   $mem,$dst\t! short" %}
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5386
  ins_encode %{
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5387
    __ ldsh($mem$$Address, $dst$$Register);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5388
  %}
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5389
  ins_pipe(iload_mask_mem);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5390
%}
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5391
2872
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5392
// Load Short (16 bit signed) to Byte (8 bit signed)
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5393
instruct loadS2B(iRegI dst, indOffset13m7 mem, immI_24 twentyfour) %{
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5394
  match(Set dst (RShiftI (LShiftI (LoadS mem) twentyfour) twentyfour));
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5395
  ins_cost(MEMORY_REF_COST);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5396
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5397
  size(4);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5398
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5399
  format %{ "LDSB   $mem+1,$dst\t! short -> byte" %}
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5400
  ins_encode %{
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5401
    __ ldsb($mem$$Address, $dst$$Register, 1);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5402
  %}
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5403
  ins_pipe(iload_mask_mem);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5404
%}
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5405
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5406
// Load Short (16bit signed) into a Long Register
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5407
instruct loadS2L(iRegL dst, memory mem) %{
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5408
  match(Set dst (ConvI2L (LoadS mem)));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5409
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5410
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5411
  size(4);
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5412
  format %{ "LDSH   $mem,$dst\t! short -> long" %}
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5413
  ins_encode %{
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5414
    __ ldsh($mem$$Address, $dst$$Register);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5415
  %}
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5416
  ins_pipe(iload_mask_mem);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5417
%}
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5418
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5419
// Load Unsigned Short/Char (16bit UNsigned)
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5420
instruct loadUS(iRegI dst, memory mem) %{
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5421
  match(Set dst (LoadUS mem));
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5422
  ins_cost(MEMORY_REF_COST);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5423
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5424
  size(4);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5425
  format %{ "LDUH   $mem,$dst\t! ushort/char" %}
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5426
  ins_encode %{
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5427
    __ lduh($mem$$Address, $dst$$Register);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5428
  %}
3177
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5429
  ins_pipe(iload_mem);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5430
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5431
2872
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5432
// Load Unsigned Short/Char (16 bit UNsigned) to Byte (8 bit signed)
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5433
instruct loadUS2B(iRegI dst, indOffset13m7 mem, immI_24 twentyfour) %{
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5434
  match(Set dst (RShiftI (LShiftI (LoadUS mem) twentyfour) twentyfour));
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5435
  ins_cost(MEMORY_REF_COST);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5436
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5437
  size(4);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5438
  format %{ "LDSB   $mem+1,$dst\t! ushort -> byte" %}
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5439
  ins_encode %{
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5440
    __ ldsb($mem$$Address, $dst$$Register, 1);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5441
  %}
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5442
  ins_pipe(iload_mask_mem);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5443
%}
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5444
2022
28ce8115a91d 6796746: rename LoadC (char) opcode class to LoadUS (unsigned short)
twisti
parents: 2015
diff changeset
  5445
// Load Unsigned Short/Char (16bit UNsigned) into a Long Register
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5446
instruct loadUS2L(iRegL dst, memory mem) %{
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5447
  match(Set dst (ConvI2L (LoadUS mem)));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5448
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5449
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5450
  size(4);
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5451
  format %{ "LDUH   $mem,$dst\t! ushort/char -> long" %}
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5452
  ins_encode %{
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5453
    __ lduh($mem$$Address, $dst$$Register);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5454
  %}
3177
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5455
  ins_pipe(iload_mem);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5456
%}
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5457
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5458
// Load Unsigned Short/Char (16bit UNsigned) with mask 0xFF into a Long Register
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5459
instruct loadUS2L_immI_255(iRegL dst, indOffset13m7 mem, immI_255 mask) %{
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5460
  match(Set dst (ConvI2L (AndI (LoadUS mem) mask)));
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5461
  ins_cost(MEMORY_REF_COST);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5462
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5463
  size(4);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5464
  format %{ "LDUB   $mem+1,$dst\t! ushort/char & 0xFF -> long" %}
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5465
  ins_encode %{
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5466
    __ ldub($mem$$Address, $dst$$Register, 1);  // LSB is index+1 on BE
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5467
  %}
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5468
  ins_pipe(iload_mem);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5469
%}
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5470
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5471
// Load Unsigned Short/Char (16bit UNsigned) with a 13-bit mask into a Long Register
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5472
instruct loadUS2L_immI13(iRegL dst, memory mem, immI13 mask) %{
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5473
  match(Set dst (ConvI2L (AndI (LoadUS mem) mask)));
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5474
  ins_cost(MEMORY_REF_COST + DEFAULT_COST);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5475
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5476
  size(2*4);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5477
  format %{ "LDUH   $mem,$dst\t! ushort/char & 13-bit mask -> long\n\t"
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5478
            "AND    $dst,$mask,$dst" %}
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5479
  ins_encode %{
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5480
    Register Rdst = $dst$$Register;
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5481
    __ lduh($mem$$Address, Rdst);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5482
    __ and3(Rdst, $mask$$constant, Rdst);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5483
  %}
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5484
  ins_pipe(iload_mem);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5485
%}
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5486
31047
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  5487
// Load Unsigned Short/Char (16bit UNsigned) with a 32-bit mask into a Long Register
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  5488
instruct loadUS2L_immI(iRegL dst, memory mem, immI mask, iRegL tmp) %{
3177
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5489
  match(Set dst (ConvI2L (AndI (LoadUS mem) mask)));
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5490
  effect(TEMP dst, TEMP tmp);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5491
  ins_cost(MEMORY_REF_COST + 2*DEFAULT_COST);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5492
31047
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  5493
  format %{ "LDUH   $mem,$dst\t! ushort/char & 32-bit mask -> long\n\t"
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  5494
            "SET    right_n_bits($mask, 16),$tmp\n\t"
3177
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5495
            "AND    $dst,$tmp,$dst" %}
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5496
  ins_encode %{
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5497
    Register Rdst = $dst$$Register;
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5498
    Register Rtmp = $tmp$$Register;
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5499
    __ lduh($mem$$Address, Rdst);
31047
50c0dc40661c 8001622: loadUB2L_immI8 & loadUS2L_immI16 rules don't match some 8-bit/16-bit masks
vlivanov
parents: 29581
diff changeset
  5500
    __ set($mask$$constant & right_n_bits(16), Rtmp);
3177
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5501
    __ and3(Rdst, Rtmp, Rdst);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5502
  %}
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5503
  ins_pipe(iload_mem);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5504
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5505
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5506
// Load Integer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5507
instruct loadI(iRegI dst, memory mem) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5508
  match(Set dst (LoadI mem));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5509
  ins_cost(MEMORY_REF_COST);
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5510
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5511
  size(4);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5512
  format %{ "LDUW   $mem,$dst\t! int" %}
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5513
  ins_encode %{
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5514
    __ lduw($mem$$Address, $dst$$Register);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5515
  %}
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5516
  ins_pipe(iload_mem);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5517
%}
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5518
2872
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5519
// Load Integer to Byte (8 bit signed)
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5520
instruct loadI2B(iRegI dst, indOffset13m7 mem, immI_24 twentyfour) %{
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5521
  match(Set dst (RShiftI (LShiftI (LoadI mem) twentyfour) twentyfour));
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5522
  ins_cost(MEMORY_REF_COST);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5523
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5524
  size(4);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5525
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5526
  format %{ "LDSB   $mem+3,$dst\t! int -> byte" %}
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5527
  ins_encode %{
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5528
    __ ldsb($mem$$Address, $dst$$Register, 3);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5529
  %}
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5530
  ins_pipe(iload_mask_mem);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5531
%}
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5532
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5533
// Load Integer to Unsigned Byte (8 bit UNsigned)
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5534
instruct loadI2UB(iRegI dst, indOffset13m7 mem, immI_255 mask) %{
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5535
  match(Set dst (AndI (LoadI mem) mask));
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5536
  ins_cost(MEMORY_REF_COST);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5537
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5538
  size(4);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5539
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5540
  format %{ "LDUB   $mem+3,$dst\t! int -> ubyte" %}
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5541
  ins_encode %{
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5542
    __ ldub($mem$$Address, $dst$$Register, 3);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5543
  %}
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5544
  ins_pipe(iload_mask_mem);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5545
%}
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5546
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5547
// Load Integer to Short (16 bit signed)
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5548
instruct loadI2S(iRegI dst, indOffset13m7 mem, immI_16 sixteen) %{
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5549
  match(Set dst (RShiftI (LShiftI (LoadI mem) sixteen) sixteen));
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5550
  ins_cost(MEMORY_REF_COST);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5551
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5552
  size(4);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5553
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5554
  format %{ "LDSH   $mem+2,$dst\t! int -> short" %}
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5555
  ins_encode %{
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5556
    __ ldsh($mem$$Address, $dst$$Register, 2);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5557
  %}
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5558
  ins_pipe(iload_mask_mem);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5559
%}
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5560
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5561
// Load Integer to Unsigned Short (16 bit UNsigned)
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5562
instruct loadI2US(iRegI dst, indOffset13m7 mem, immI_65535 mask) %{
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5563
  match(Set dst (AndI (LoadI mem) mask));
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5564
  ins_cost(MEMORY_REF_COST);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5565
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5566
  size(4);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5567
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5568
  format %{ "LDUH   $mem+2,$dst\t! int -> ushort/char" %}
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5569
  ins_encode %{
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5570
    __ lduh($mem$$Address, $dst$$Register, 2);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5571
  %}
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5572
  ins_pipe(iload_mask_mem);
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5573
%}
93eb5ac6cfb0 6814842: Load shortening optimizations
twisti
parents: 2862
diff changeset
  5574
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5575
// Load Integer into a Long Register
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5576
instruct loadI2L(iRegL dst, memory mem) %{
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5577
  match(Set dst (ConvI2L (LoadI mem)));
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5578
  ins_cost(MEMORY_REF_COST);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5579
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5580
  size(4);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5581
  format %{ "LDSW   $mem,$dst\t! int -> long" %}
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5582
  ins_encode %{
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5583
    __ ldsw($mem$$Address, $dst$$Register);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5584
  %}
3177
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5585
  ins_pipe(iload_mask_mem);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5586
%}
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5587
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5588
// Load Integer with mask 0xFF into a Long Register
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5589
instruct loadI2L_immI_255(iRegL dst, indOffset13m7 mem, immI_255 mask) %{
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5590
  match(Set dst (ConvI2L (AndI (LoadI mem) mask)));
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5591
  ins_cost(MEMORY_REF_COST);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5592
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5593
  size(4);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5594
  format %{ "LDUB   $mem+3,$dst\t! int & 0xFF -> long" %}
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5595
  ins_encode %{
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5596
    __ ldub($mem$$Address, $dst$$Register, 3);  // LSB is index+3 on BE
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5597
  %}
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5598
  ins_pipe(iload_mem);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5599
%}
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5600
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5601
// Load Integer with mask 0xFFFF into a Long Register
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5602
instruct loadI2L_immI_65535(iRegL dst, indOffset13m7 mem, immI_65535 mask) %{
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5603
  match(Set dst (ConvI2L (AndI (LoadI mem) mask)));
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5604
  ins_cost(MEMORY_REF_COST);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5605
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5606
  size(4);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5607
  format %{ "LDUH   $mem+2,$dst\t! int & 0xFFFF -> long" %}
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5608
  ins_encode %{
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5609
    __ lduh($mem$$Address, $dst$$Register, 2);  // LSW is index+2 on BE
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5610
  %}
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5611
  ins_pipe(iload_mem);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5612
%}
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5613
22513
dc47bc8ecb75 8031743: C2: loadI2L_immI broken for negative memory values
iveresov
parents: 22512
diff changeset
  5614
// Load Integer with a 12-bit mask into a Long Register
dc47bc8ecb75 8031743: C2: loadI2L_immI broken for negative memory values
iveresov
parents: 22512
diff changeset
  5615
instruct loadI2L_immU12(iRegL dst, memory mem, immU12 mask) %{
3177
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5616
  match(Set dst (ConvI2L (AndI (LoadI mem) mask)));
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5617
  ins_cost(MEMORY_REF_COST + DEFAULT_COST);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5618
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5619
  size(2*4);
22513
dc47bc8ecb75 8031743: C2: loadI2L_immI broken for negative memory values
iveresov
parents: 22512
diff changeset
  5620
  format %{ "LDUW   $mem,$dst\t! int & 12-bit mask -> long\n\t"
3177
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5621
            "AND    $dst,$mask,$dst" %}
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5622
  ins_encode %{
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5623
    Register Rdst = $dst$$Register;
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5624
    __ lduw($mem$$Address, Rdst);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5625
    __ and3(Rdst, $mask$$constant, Rdst);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5626
  %}
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5627
  ins_pipe(iload_mem);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5628
%}
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5629
22513
dc47bc8ecb75 8031743: C2: loadI2L_immI broken for negative memory values
iveresov
parents: 22512
diff changeset
  5630
// Load Integer with a 31-bit mask into a Long Register
dc47bc8ecb75 8031743: C2: loadI2L_immI broken for negative memory values
iveresov
parents: 22512
diff changeset
  5631
instruct loadI2L_immU31(iRegL dst, memory mem, immU31 mask, iRegL tmp) %{
3177
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5632
  match(Set dst (ConvI2L (AndI (LoadI mem) mask)));
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5633
  effect(TEMP dst, TEMP tmp);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5634
  ins_cost(MEMORY_REF_COST + 2*DEFAULT_COST);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5635
22513
dc47bc8ecb75 8031743: C2: loadI2L_immI broken for negative memory values
iveresov
parents: 22512
diff changeset
  5636
  format %{ "LDUW   $mem,$dst\t! int & 31-bit mask -> long\n\t"
3177
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5637
            "SET    $mask,$tmp\n\t"
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5638
            "AND    $dst,$tmp,$dst" %}
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5639
  ins_encode %{
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5640
    Register Rdst = $dst$$Register;
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5641
    Register Rtmp = $tmp$$Register;
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5642
    __ lduw($mem$$Address, Rdst);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5643
    __ set($mask$$constant, Rtmp);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5644
    __ and3(Rdst, Rtmp, Rdst);
f467776fc753 5057225: Remove useless I2L conversions
twisti
parents: 2872
diff changeset
  5645
  %}
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5646
  ins_pipe(iload_mem);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5647
%}
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5648
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5649
// Load Unsigned Integer into a Long Register
13970
11a9630698a6 7199654: Remove LoadUI2LNode
vlivanov
parents: 13969
diff changeset
  5650
instruct loadUI2L(iRegL dst, memory mem, immL_32bits mask) %{
11a9630698a6 7199654: Remove LoadUI2LNode
vlivanov
parents: 13969
diff changeset
  5651
  match(Set dst (AndL (ConvI2L (LoadI mem)) mask));
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5652
  ins_cost(MEMORY_REF_COST);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5653
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5654
  size(4);
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5655
  format %{ "LDUW   $mem,$dst\t! uint -> long" %}
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5656
  ins_encode %{
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5657
    __ lduw($mem$$Address, $dst$$Register);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5658
  %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5659
  ins_pipe(iload_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 Long - aligned
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5663
instruct loadL(iRegL dst, memory mem ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5664
  match(Set dst (LoadL mem));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5665
  ins_cost(MEMORY_REF_COST);
2150
0d91d17158cc 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 2131
diff changeset
  5666
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5667
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5668
  format %{ "LDX    $mem,$dst\t! long" %}
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5669
  ins_encode %{
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5670
    __ ldx($mem$$Address, $dst$$Register);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5671
  %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5672
  ins_pipe(iload_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5673
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5674
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5675
// Load Long - UNaligned
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5676
instruct loadL_unaligned(iRegL dst, memory mem, o7RegI tmp) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5677
  match(Set dst (LoadL_unaligned mem));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5678
  effect(KILL tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5679
  ins_cost(MEMORY_REF_COST*2+DEFAULT_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5680
  format %{ "LDUW   $mem+4,R_O7\t! misaligned long\n"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5681
          "\tLDUW   $mem  ,$dst\n"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5682
          "\tSLLX   #32, $dst, $dst\n"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5683
          "\tOR     $dst, R_O7, $dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5684
  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
  5685
  ins_encode(form3_mem_reg_long_unaligned_marshal( mem, dst ));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5686
  ins_pipe(iload_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5687
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5688
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5689
// Load Range
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5690
instruct loadRange(iRegI dst, memory mem) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5691
  match(Set dst (LoadRange mem));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5692
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5693
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5694
  format %{ "LDUW   $mem,$dst\t! range" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5695
  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
  5696
  ins_encode(simple_form3_mem_reg( mem, dst ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5697
  ins_pipe(iload_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5698
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5699
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5700
// Load Integer into %f register (for fitos/fitod)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5701
instruct loadI_freg(regF dst, memory mem) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5702
  match(Set dst (LoadI mem));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5703
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5704
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5705
  format %{ "LDF    $mem,$dst\t! for fitos/fitod" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5706
  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
  5707
  ins_encode(simple_form3_mem_reg( mem, dst ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5708
  ins_pipe(floadF_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5709
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5710
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5711
// Load Pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5712
instruct loadP(iRegP dst, memory mem) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5713
  match(Set dst (LoadP mem));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5714
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5715
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5716
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5717
  format %{ "LDX    $mem,$dst\t! ptr" %}
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5718
  ins_encode %{
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5719
    __ ldx($mem$$Address, $dst$$Register);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5720
  %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5721
  ins_pipe(iload_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5722
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5723
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  5724
// Load Compressed Pointer
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  5725
instruct loadN(iRegN dst, memory mem) %{
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5726
  match(Set dst (LoadN mem));
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5727
  ins_cost(MEMORY_REF_COST);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5728
  size(4);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5729
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5730
  format %{ "LDUW   $mem,$dst\t! compressed ptr" %}
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5731
  ins_encode %{
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5732
    __ lduw($mem$$Address, $dst$$Register);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5733
  %}
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5734
  ins_pipe(iload_mem);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  5735
%}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  5736
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5737
// Load Klass Pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5738
instruct loadKlass(iRegP dst, memory mem) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5739
  match(Set dst (LoadKlass mem));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5740
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5741
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5742
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5743
  format %{ "LDX    $mem,$dst\t! klass ptr" %}
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5744
  ins_encode %{
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5745
    __ ldx($mem$$Address, $dst$$Register);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5746
  %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5747
  ins_pipe(iload_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5748
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5749
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  5750
// Load narrow Klass Pointer
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  5751
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
  5752
  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
  5753
  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
  5754
  size(4);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  5755
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  5756
  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
  5757
  ins_encode %{
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5758
    __ 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
  5759
  %}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  5760
  ins_pipe(iload_mem);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  5761
%}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  5762
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5763
// Load Double
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5764
instruct loadD(regD dst, memory mem) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5765
  match(Set dst (LoadD mem));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5766
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5767
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5768
  format %{ "LDDF   $mem,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5769
  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
  5770
  ins_encode(simple_form3_mem_reg( mem, dst ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5771
  ins_pipe(floadD_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5772
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5773
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5774
// Load Double - UNaligned
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5775
instruct loadD_unaligned(regD_low dst, memory mem ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5776
  match(Set dst (LoadD_unaligned mem));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5777
  ins_cost(MEMORY_REF_COST*2+DEFAULT_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5778
  format %{ "LDF    $mem  ,$dst.hi\t! misaligned double\n"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5779
          "\tLDF    $mem+4,$dst.lo\t!" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5780
  opcode(Assembler::ldf_op3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5781
  ins_encode( form3_mem_reg_double_unaligned( mem, dst ));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5782
  ins_pipe(iload_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5783
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5784
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5785
// Load Float
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5786
instruct loadF(regF dst, memory mem) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5787
  match(Set dst (LoadF mem));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5788
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5789
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5790
  format %{ "LDF    $mem,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5791
  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
  5792
  ins_encode(simple_form3_mem_reg( mem, dst ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5793
  ins_pipe(floadF_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5794
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5795
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5796
// Load Constant
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5797
instruct loadConI( iRegI dst, immI src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5798
  match(Set dst src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5799
  ins_cost(DEFAULT_COST * 3/2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5800
  format %{ "SET    $src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5801
  ins_encode( Set32(src, dst) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5802
  ins_pipe(ialu_hi_lo_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5803
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5804
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5805
instruct loadConI13( iRegI dst, immI13 src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5806
  match(Set dst src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5807
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5808
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5809
  format %{ "MOV    $src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5810
  ins_encode( Set13( src, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5811
  ins_pipe(ialu_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5812
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5813
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5814
instruct loadConP_set(iRegP dst, immP_set con) %{
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5815
  match(Set dst con);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5816
  ins_cost(DEFAULT_COST * 3/2);
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5817
  format %{ "SET    $con,$dst\t! ptr" %}
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5818
  ins_encode %{
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13104
diff changeset
  5819
    relocInfo::relocType constant_reloc = _opnds[1]->constant_reloc();
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5820
      intptr_t val = $con$$constant;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13104
diff changeset
  5821
    if (constant_reloc == relocInfo::oop_type) {
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5822
      __ set_oop_constant((jobject) val, $dst$$Register);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13104
diff changeset
  5823
    } else if (constant_reloc == relocInfo::metadata_type) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13104
diff changeset
  5824
      __ set_metadata_constant((Metadata*)val, $dst$$Register);
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5825
    } else {          // non-oop pointers, e.g. card mark base, heap top
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13104
diff changeset
  5826
      assert(constant_reloc == relocInfo::none, "unexpected reloc type");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13104
diff changeset
  5827
      __ set(val, $dst$$Register);
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5828
    }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5829
  %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5830
  ins_pipe(loadConP);
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5831
%}
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5832
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5833
instruct loadConP_load(iRegP dst, immP_load con) %{
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5834
  match(Set dst con);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5835
  ins_cost(MEMORY_REF_COST);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5836
  format %{ "LD     [$constanttablebase + $constantoffset],$dst\t! load from constant table: ptr=$con" %}
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5837
  ins_encode %{
7700
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7437
diff changeset
  5838
    RegisterOrConstant con_offset = __ ensure_simm13_or_reg($constantoffset($con), $dst$$Register);
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7437
diff changeset
  5839
    __ ld_ptr($constanttablebase, con_offset, $dst$$Register);
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7437
diff changeset
  5840
  %}
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7437
diff changeset
  5841
  ins_pipe(loadConP);
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7437
diff changeset
  5842
%}
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7437
diff changeset
  5843
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7437
diff changeset
  5844
instruct loadConP_no_oop_cheap(iRegP dst, immP_no_oop_cheap con) %{
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7437
diff changeset
  5845
  match(Set dst con);
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7437
diff changeset
  5846
  ins_cost(DEFAULT_COST * 3/2);
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7437
diff changeset
  5847
  format %{ "SET    $con,$dst\t! non-oop ptr" %}
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7437
diff changeset
  5848
  ins_encode %{
25933
ea319da89b55 8029443: 'assert(klass->is_loader_alive(_is_alive)) failed: must be alive' during VM_CollectForMetadataAllocation
thartmann
parents: 25741
diff changeset
  5849
    if (_opnds[1]->constant_reloc() == relocInfo::metadata_type) {
ea319da89b55 8029443: 'assert(klass->is_loader_alive(_is_alive)) failed: must be alive' during VM_CollectForMetadataAllocation
thartmann
parents: 25741
diff changeset
  5850
      __ set_metadata_constant((Metadata*)$con$$constant, $dst$$Register);
ea319da89b55 8029443: 'assert(klass->is_loader_alive(_is_alive)) failed: must be alive' during VM_CollectForMetadataAllocation
thartmann
parents: 25741
diff changeset
  5851
    } else {
ea319da89b55 8029443: 'assert(klass->is_loader_alive(_is_alive)) failed: must be alive' during VM_CollectForMetadataAllocation
thartmann
parents: 25741
diff changeset
  5852
      __ set($con$$constant, $dst$$Register);
ea319da89b55 8029443: 'assert(klass->is_loader_alive(_is_alive)) failed: must be alive' during VM_CollectForMetadataAllocation
thartmann
parents: 25741
diff changeset
  5853
    }
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5854
  %}
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5855
  ins_pipe(loadConP);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5856
%}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5857
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5858
instruct loadConP0(iRegP dst, immP0 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5859
  match(Set dst src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5860
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5861
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5862
  format %{ "CLR    $dst\t!ptr" %}
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5863
  ins_encode %{
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5864
    __ clr($dst$$Register);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5865
  %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5866
  ins_pipe(ialu_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5867
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5868
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5869
instruct loadConP_poll(iRegP dst, immP_poll src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5870
  match(Set dst src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5871
  ins_cost(DEFAULT_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5872
  format %{ "SET    $src,$dst\t!ptr" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5873
  ins_encode %{
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5874
    AddressLiteral polling_page(os::get_polling_page());
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5875
    __ sethi(polling_page, reg_to_register_object($dst$$reg));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5876
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5877
  ins_pipe(loadConP_poll);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5878
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5879
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  5880
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
  5881
  match(Set dst src);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  5882
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  5883
  size(4);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  5884
  format %{ "CLR    $dst\t! compressed NULL ptr" %}
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5885
  ins_encode %{
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5886
    __ clr($dst$$Register);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5887
  %}
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  5888
  ins_pipe(ialu_imm);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  5889
%}
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  5890
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  5891
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
  5892
  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
  5893
  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
  5894
  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
  5895
  ins_encode %{
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  5896
    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
  5897
    __ 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
  5898
  %}
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  5899
  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
  5900
%}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  5901
13969
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  5902
instruct loadConNKlass(iRegN dst, immNKlass src) %{
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  5903
  match(Set dst src);
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  5904
  ins_cost(DEFAULT_COST * 3/2);
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  5905
  format %{ "SET    $src,$dst\t! compressed klass ptr" %}
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  5906
  ins_encode %{
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  5907
    Register dst = $dst$$Register;
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  5908
    __ set_narrow_klass((Klass*)$src$$constant, dst);
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  5909
  %}
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  5910
  ins_pipe(ialu_hi_lo_reg);
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  5911
%}
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  5912
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5913
// Materialize long value (predicated by immL_cheap).
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5914
instruct loadConL_set64(iRegL dst, immL_cheap con, o7RegL tmp) %{
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5915
  match(Set dst con);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5916
  effect(KILL tmp);
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5917
  ins_cost(DEFAULT_COST * 3);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5918
  format %{ "SET64   $con,$dst KILL $tmp\t! cheap long" %}
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5919
  ins_encode %{
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5920
    __ set64($con$$constant, $dst$$Register, $tmp$$Register);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5921
  %}
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5922
  ins_pipe(loadConL);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5923
%}
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5924
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5925
// Load long value from constant table (predicated by immL_expensive).
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5926
instruct loadConL_ldx(iRegL dst, immL_expensive con) %{
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5927
  match(Set dst con);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5928
  ins_cost(MEMORY_REF_COST);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5929
  format %{ "LDX     [$constanttablebase + $constantoffset],$dst\t! load from constant table: long=$con" %}
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5930
  ins_encode %{
7437
270cb0bf17af 7004925: CTW: assert(nbits == 32 || -(1 << nbits-1) <= x && x < ( 1 << nbits-1)) failed: value out of range
kvn
parents: 7433
diff changeset
  5931
      RegisterOrConstant con_offset = __ ensure_simm13_or_reg($constantoffset($con), $dst$$Register);
270cb0bf17af 7004925: CTW: assert(nbits == 32 || -(1 << nbits-1) <= x && x < ( 1 << nbits-1)) failed: value out of range
kvn
parents: 7433
diff changeset
  5932
    __ ldx($constanttablebase, con_offset, $dst$$Register);
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5933
  %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5934
  ins_pipe(loadConL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5935
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5936
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5937
instruct loadConL0( iRegL dst, immL0 src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5938
  match(Set dst src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5939
  ins_cost(DEFAULT_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5940
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5941
  format %{ "CLR    $dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5942
  ins_encode( Set13( src, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5943
  ins_pipe(ialu_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5944
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5945
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5946
instruct loadConL13( iRegL dst, immL13 src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5947
  match(Set dst src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5948
  ins_cost(DEFAULT_COST * 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5949
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5950
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5951
  format %{ "MOV    $src,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5952
  ins_encode( Set13( src, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5953
  ins_pipe(ialu_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5954
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5955
7437
270cb0bf17af 7004925: CTW: assert(nbits == 32 || -(1 << nbits-1) <= x && x < ( 1 << nbits-1)) failed: value out of range
kvn
parents: 7433
diff changeset
  5956
instruct loadConF(regF dst, immF con, o7RegI tmp) %{
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5957
  match(Set dst con);
7437
270cb0bf17af 7004925: CTW: assert(nbits == 32 || -(1 << nbits-1) <= x && x < ( 1 << nbits-1)) failed: value out of range
kvn
parents: 7433
diff changeset
  5958
  effect(KILL tmp);
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5959
  format %{ "LDF    [$constanttablebase + $constantoffset],$dst\t! load from constant table: float=$con" %}
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5960
  ins_encode %{
7437
270cb0bf17af 7004925: CTW: assert(nbits == 32 || -(1 << nbits-1) <= x && x < ( 1 << nbits-1)) failed: value out of range
kvn
parents: 7433
diff changeset
  5961
      RegisterOrConstant con_offset = __ ensure_simm13_or_reg($constantoffset($con), $tmp$$Register);
270cb0bf17af 7004925: CTW: assert(nbits == 32 || -(1 << nbits-1) <= x && x < ( 1 << nbits-1)) failed: value out of range
kvn
parents: 7433
diff changeset
  5962
    __ ldf(FloatRegisterImpl::S, $constanttablebase, con_offset, $dst$$FloatRegister);
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5963
  %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5964
  ins_pipe(loadConFD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5965
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5966
7437
270cb0bf17af 7004925: CTW: assert(nbits == 32 || -(1 << nbits-1) <= x && x < ( 1 << nbits-1)) failed: value out of range
kvn
parents: 7433
diff changeset
  5967
instruct loadConD(regD dst, immD con, o7RegI tmp) %{
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5968
  match(Set dst con);
7437
270cb0bf17af 7004925: CTW: assert(nbits == 32 || -(1 << nbits-1) <= x && x < ( 1 << nbits-1)) failed: value out of range
kvn
parents: 7433
diff changeset
  5969
  effect(KILL tmp);
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5970
  format %{ "LDDF   [$constanttablebase + $constantoffset],$dst\t! load from constant table: double=$con" %}
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5971
  ins_encode %{
2576
a3babdbbca51 6833573: C2 sparc: assert(c < 64 && (c & 1) == 0,"bad double float register")
never
parents: 2571
diff changeset
  5972
    // XXX This is a quick fix for 6833573.
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  5973
    //__ ldf(FloatRegisterImpl::D, $constanttablebase, $constantoffset($con), $dst$$FloatRegister);
7437
270cb0bf17af 7004925: CTW: assert(nbits == 32 || -(1 << nbits-1) <= x && x < ( 1 << nbits-1)) failed: value out of range
kvn
parents: 7433
diff changeset
  5974
    RegisterOrConstant con_offset = __ ensure_simm13_or_reg($constantoffset($con), $tmp$$Register);
270cb0bf17af 7004925: CTW: assert(nbits == 32 || -(1 << nbits-1) <= x && x < ( 1 << nbits-1)) failed: value out of range
kvn
parents: 7433
diff changeset
  5975
    __ ldf(FloatRegisterImpl::D, $constanttablebase, con_offset, as_DoubleFloatRegister($dst$$reg));
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2348
diff changeset
  5976
  %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5977
  ins_pipe(loadConFD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5978
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5979
28954
7dda6c26cc98 8068977: Remove unused sun.misc.Unsafe prefetch intrinsic support
psandoz
parents: 28719
diff changeset
  5980
// Prefetch instructions for allocation.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5981
// Must be safe to execute with invalid address (cannot fault).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5982
10267
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10264
diff changeset
  5983
instruct prefetchAlloc( memory mem ) %{
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10264
diff changeset
  5984
  predicate(AllocatePrefetchInstr == 0);
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10264
diff changeset
  5985
  match( PrefetchAllocation mem );
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10264
diff changeset
  5986
  ins_cost(MEMORY_REF_COST);
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10264
diff changeset
  5987
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10264
diff changeset
  5988
  format %{ "PREFETCH $mem,2\t! Prefetch allocation" %}
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10264
diff changeset
  5989
  opcode(Assembler::prefetch_op3);
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10264
diff changeset
  5990
  ins_encode( form3_mem_prefetch_write( mem ) );
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10264
diff changeset
  5991
  ins_pipe(iload_mem);
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10264
diff changeset
  5992
%}
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10264
diff changeset
  5993
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10264
diff changeset
  5994
// Use BIS instruction to prefetch for allocation.
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10264
diff changeset
  5995
// Could fault, need space at the end of TLAB.
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10264
diff changeset
  5996
instruct prefetchAlloc_bis( iRegP dst ) %{
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10264
diff changeset
  5997
  predicate(AllocatePrefetchInstr == 1);
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10264
diff changeset
  5998
  match( PrefetchAllocation dst );
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10264
diff changeset
  5999
  ins_cost(MEMORY_REF_COST);
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10264
diff changeset
  6000
  size(4);
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10264
diff changeset
  6001
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10264
diff changeset
  6002
  format %{ "STXA   [$dst]\t! // Prefetch allocation using BIS" %}
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10264
diff changeset
  6003
  ins_encode %{
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10264
diff changeset
  6004
    __ stxa(G0, $dst$$Register, G0, Assembler::ASI_ST_BLKINIT_PRIMARY);
5251
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 5025
diff changeset
  6005
  %}
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 5025
diff changeset
  6006
  ins_pipe(istore_mem_reg);
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 5025
diff changeset
  6007
%}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6008
10267
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10264
diff changeset
  6009
// Next code is used for finding next cache line address to prefetch.
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10264
diff changeset
  6010
instruct cacheLineAdr( iRegP dst, iRegP src, immL13 mask ) %{
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10264
diff changeset
  6011
  match(Set dst (CastX2P (AndL (CastP2X src) mask)));
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10264
diff changeset
  6012
  ins_cost(DEFAULT_COST);
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10264
diff changeset
  6013
  size(4);
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10264
diff changeset
  6014
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10264
diff changeset
  6015
  format %{ "AND    $src,$mask,$dst\t! next cache line address" %}
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10264
diff changeset
  6016
  ins_encode %{
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10264
diff changeset
  6017
    __ and3($src$$Register, $mask$$constant, $dst$$Register);
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10264
diff changeset
  6018
  %}
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10264
diff changeset
  6019
  ins_pipe(ialu_reg_imm);
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10264
diff changeset
  6020
%}
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10264
diff changeset
  6021
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6022
//----------Store Instructions-------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6023
// Store Byte
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6024
instruct storeB(memory mem, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6025
  match(Set mem (StoreB mem src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6026
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6027
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6028
  format %{ "STB    $src,$mem\t! byte" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6029
  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
  6030
  ins_encode(simple_form3_mem_reg( mem, src ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6031
  ins_pipe(istore_mem_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6032
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6033
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6034
instruct storeB0(memory mem, immI0 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6035
  match(Set mem (StoreB mem src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6036
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6037
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6038
  format %{ "STB    $src,$mem\t! byte" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6039
  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
  6040
  ins_encode(simple_form3_mem_reg( mem, R_G0 ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6041
  ins_pipe(istore_mem_zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6042
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6043
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6044
instruct storeCM0(memory mem, immI0 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6045
  match(Set mem (StoreCM mem src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6046
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6047
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6048
  format %{ "STB    $src,$mem\t! CMS card-mark byte 0" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6049
  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
  6050
  ins_encode(simple_form3_mem_reg( mem, R_G0 ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6051
  ins_pipe(istore_mem_zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6052
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6053
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6054
// Store Char/Short
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6055
instruct storeC(memory mem, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6056
  match(Set mem (StoreC mem src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6057
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6058
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6059
  format %{ "STH    $src,$mem\t! short" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6060
  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
  6061
  ins_encode(simple_form3_mem_reg( mem, src ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6062
  ins_pipe(istore_mem_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6063
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6064
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6065
instruct storeC0(memory mem, immI0 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6066
  match(Set mem (StoreC mem src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6067
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6068
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6069
  format %{ "STH    $src,$mem\t! short" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6070
  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
  6071
  ins_encode(simple_form3_mem_reg( mem, R_G0 ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6072
  ins_pipe(istore_mem_zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6073
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6074
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6075
// Store Integer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6076
instruct storeI(memory mem, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6077
  match(Set mem (StoreI mem src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6078
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6079
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6080
  format %{ "STW    $src,$mem" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6081
  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
  6082
  ins_encode(simple_form3_mem_reg( mem, src ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6083
  ins_pipe(istore_mem_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6084
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6085
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6086
// Store Long
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6087
instruct storeL(memory mem, iRegL src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6088
  match(Set mem (StoreL mem src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6089
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6090
  format %{ "STX    $src,$mem\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6091
  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
  6092
  ins_encode(simple_form3_mem_reg( mem, src ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6093
  ins_pipe(istore_mem_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6094
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6095
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6096
instruct storeI0(memory mem, immI0 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6097
  match(Set mem (StoreI mem src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6098
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6099
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6100
  format %{ "STW    $src,$mem" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6101
  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
  6102
  ins_encode(simple_form3_mem_reg( mem, R_G0 ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6103
  ins_pipe(istore_mem_zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6104
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6105
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6106
instruct storeL0(memory mem, immL0 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6107
  match(Set mem (StoreL mem src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6108
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6109
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6110
  format %{ "STX    $src,$mem" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6111
  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
  6112
  ins_encode(simple_form3_mem_reg( mem, R_G0 ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6113
  ins_pipe(istore_mem_zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6114
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6115
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6116
// Store Integer from float register (used after fstoi)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6117
instruct storeI_Freg(memory mem, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6118
  match(Set mem (StoreI mem src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6119
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6120
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6121
  format %{ "STF    $src,$mem\t! after fstoi/fdtoi" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6122
  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
  6123
  ins_encode(simple_form3_mem_reg( mem, src ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6124
  ins_pipe(fstoreF_mem_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6125
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6126
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6127
// Store Pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6128
instruct storeP(memory dst, sp_ptr_RegP src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6129
  match(Set dst (StoreP dst src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6130
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6131
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6132
  format %{ "STX    $src,$dst\t! ptr" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6133
  opcode(Assembler::stx_op3, 0, REGP_OP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6134
  ins_encode( form3_mem_reg( dst, src ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6135
  ins_pipe(istore_mem_spORreg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6136
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6137
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6138
instruct storeP0(memory dst, immP0 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6139
  match(Set dst (StoreP dst src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6140
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6141
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6142
  format %{ "STX    $src,$dst\t! ptr" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6143
  opcode(Assembler::stx_op3, 0, REGP_OP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6144
  ins_encode( form3_mem_reg( dst, R_G0 ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6145
  ins_pipe(istore_mem_zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6146
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6147
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6148
// Store Compressed Pointer
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6149
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
  6150
   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
  6151
   ins_cost(MEMORY_REF_COST);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6152
   size(4);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6153
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6154
   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
  6155
   ins_encode %{
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6156
     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
  6157
     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
  6158
     Register src = $src$$Register;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6159
     if (index != G0) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6160
       __ stw(src, base, index);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6161
     } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6162
       __ stw(src, base, $dst$$disp);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6163
     }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6164
   %}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6165
   ins_pipe(istore_mem_spORreg);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6166
%}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6167
13969
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6168
instruct storeNKlass(memory dst, iRegN src) %{
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6169
   match(Set dst (StoreNKlass dst src));
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6170
   ins_cost(MEMORY_REF_COST);
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6171
   size(4);
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6172
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6173
   format %{ "STW    $src,$dst\t! compressed klass ptr" %}
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6174
   ins_encode %{
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6175
     Register base = as_Register($dst$$base);
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6176
     Register index = as_Register($dst$$index);
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6177
     Register src = $src$$Register;
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6178
     if (index != G0) {
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6179
       __ stw(src, base, index);
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6180
     } else {
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6181
       __ stw(src, base, $dst$$disp);
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6182
     }
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6183
   %}
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6184
   ins_pipe(istore_mem_spORreg);
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6185
%}
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6186
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6187
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
  6188
   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
  6189
   ins_cost(MEMORY_REF_COST);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6190
   size(4);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6191
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6192
   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
  6193
   ins_encode %{
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6194
     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
  6195
     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
  6196
     if (index != G0) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6197
       __ stw(0, base, index);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6198
     } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6199
       __ stw(0, base, $dst$$disp);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6200
     }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6201
   %}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6202
   ins_pipe(istore_mem_zero);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6203
%}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6204
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6205
// Store Double
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6206
instruct storeD( memory mem, regD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6207
  match(Set mem (StoreD mem src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6208
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6209
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6210
  format %{ "STDF   $src,$mem" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6211
  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
  6212
  ins_encode(simple_form3_mem_reg( mem, src ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6213
  ins_pipe(fstoreD_mem_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6214
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6215
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6216
instruct storeD0( memory mem, immD0 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6217
  match(Set mem (StoreD mem src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6218
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6219
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6220
  format %{ "STX    $src,$mem" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6221
  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
  6222
  ins_encode(simple_form3_mem_reg( mem, R_G0 ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6223
  ins_pipe(fstoreD_mem_zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6224
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6225
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6226
// Store Float
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6227
instruct storeF( memory mem, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6228
  match(Set mem (StoreF mem src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6229
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6230
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6231
  format %{ "STF    $src,$mem" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6232
  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
  6233
  ins_encode(simple_form3_mem_reg( mem, src ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6234
  ins_pipe(fstoreF_mem_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6235
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6236
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6237
instruct storeF0( memory mem, immF0 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6238
  match(Set mem (StoreF mem src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6239
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6240
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6241
  format %{ "STW    $src,$mem\t! storeF0" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6242
  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
  6243
  ins_encode(simple_form3_mem_reg( mem, R_G0 ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6244
  ins_pipe(fstoreF_mem_zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6245
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6246
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6247
// 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
  6248
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
  6249
  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
  6250
  match(Set dst (EncodeP src));
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6251
  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
  6252
  ins_encode %{
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6253
    __ 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
  6254
  %}
54780
f8d182aedc92 8223136: Move compressed oops functions to CompressedOops class
stefank
parents: 47881
diff changeset
  6255
  ins_avoid_back_to_back(CompressedOops::base() == NULL ? AVOID_NONE : AVOID_BEFORE);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6256
  ins_pipe(ialu_reg);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6257
%}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6258
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6259
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
  6260
  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
  6261
  match(Set dst (EncodeP src));
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6262
  format %{ "encode_heap_oop_not_null $src, $dst" %}
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6263
  ins_encode %{
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6264
    __ encode_heap_oop_not_null($src$$Register, $dst$$Register);
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6265
  %}
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6266
  ins_pipe(ialu_reg);
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6267
%}
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6268
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6269
instruct decodeHeapOop(iRegP dst, iRegN src) %{
608
fe8c5fbbc54e 6709093: Compressed Oops: reduce size of compiled methods
kvn
parents: 607
diff changeset
  6270
  predicate(n->bottom_type()->is_oopptr()->ptr() != TypePtr::NotNull &&
fe8c5fbbc54e 6709093: Compressed Oops: reduce size of compiled methods
kvn
parents: 607
diff changeset
  6271
            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
  6272
  match(Set dst (DecodeN src));
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6273
  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
  6274
  ins_encode %{
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6275
    __ 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
  6276
  %}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6277
  ins_pipe(ialu_reg);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6278
%}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6279
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6280
instruct decodeHeapOop_not_null(iRegP dst, iRegN src) %{
608
fe8c5fbbc54e 6709093: Compressed Oops: reduce size of compiled methods
kvn
parents: 607
diff changeset
  6281
  predicate(n->bottom_type()->is_oopptr()->ptr() == TypePtr::NotNull ||
fe8c5fbbc54e 6709093: Compressed Oops: reduce size of compiled methods
kvn
parents: 607
diff changeset
  6282
            n->bottom_type()->is_oopptr()->ptr() == TypePtr::Constant);
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6283
  match(Set dst (DecodeN src));
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6284
  format %{ "decode_heap_oop_not_null $src, $dst" %}
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6285
  ins_encode %{
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6286
    __ decode_heap_oop_not_null($src$$Register, $dst$$Register);
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6287
  %}
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6288
  ins_pipe(ialu_reg);
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6289
%}
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  6290
13969
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6291
instruct encodeKlass_not_null(iRegN dst, iRegP src) %{
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6292
  match(Set dst (EncodePKlass src));
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6293
  format %{ "encode_klass_not_null $src, $dst" %}
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6294
  ins_encode %{
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6295
    __ encode_klass_not_null($src$$Register, $dst$$Register);
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6296
  %}
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6297
  ins_pipe(ialu_reg);
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6298
%}
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6299
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6300
instruct decodeKlass_not_null(iRegP dst, iRegN src) %{
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6301
  match(Set dst (DecodeNKlass src));
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6302
  format %{ "decode_klass_not_null $src, $dst" %}
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6303
  ins_encode %{
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6304
    __ decode_klass_not_null($src$$Register, $dst$$Register);
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6305
  %}
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6306
  ins_pipe(ialu_reg);
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13930
diff changeset
  6307
%}
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6308
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6309
//----------MemBar Instructions-----------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6310
// Memory barrier flavors
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6311
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6312
instruct membar_acquire() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6313
  match(MemBarAcquire);
22855
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
  6314
  match(LoadFence);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6315
  ins_cost(4*MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6316
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6317
  size(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6318
  format %{ "MEMBAR-acquire" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6319
  ins_encode( enc_membar_acquire );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6320
  ins_pipe(long_memory_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6321
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6322
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6323
instruct membar_acquire_lock() %{
10262
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 10255
diff changeset
  6324
  match(MemBarAcquireLock);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6325
  ins_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6326
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6327
  size(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6328
  format %{ "!MEMBAR-acquire (CAS in prior FastLock so empty encoding)" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6329
  ins_encode( );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6330
  ins_pipe(empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6331
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6332
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6333
instruct membar_release() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6334
  match(MemBarRelease);
22855
d637fd28a6c3 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 22851
diff changeset
  6335
  match(StoreFence);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6336
  ins_cost(4*MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6337
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6338
  size(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6339
  format %{ "MEMBAR-release" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6340
  ins_encode( enc_membar_release );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6341
  ins_pipe(long_memory_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6342
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6343
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6344
instruct membar_release_lock() %{
10262
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 10255
diff changeset
  6345
  match(MemBarReleaseLock);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6346
  ins_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6347
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6348
  size(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6349
  format %{ "!MEMBAR-release (CAS in succeeding FastUnlock so empty encoding)" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6350
  ins_encode( );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6351
  ins_pipe(empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6352
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6353
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6354
instruct membar_volatile() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6355
  match(MemBarVolatile);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6356
  ins_cost(4*MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6357
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6358
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6359
  format %{ "MEMBAR-volatile" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6360
  ins_encode( enc_membar_volatile );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6361
  ins_pipe(long_memory_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6362
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6363
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6364
instruct unnecessary_membar_volatile() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6365
  match(MemBarVolatile);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6366
  predicate(Matcher::post_store_load_barrier(n));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6367
  ins_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6368
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6369
  size(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6370
  format %{ "!MEMBAR-volatile (unnecessary so empty encoding)" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6371
  ins_encode( );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6372
  ins_pipe(empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6373
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6374
11431
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11197
diff changeset
  6375
instruct membar_storestore() %{
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11197
diff changeset
  6376
  match(MemBarStoreStore);
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11197
diff changeset
  6377
  ins_cost(0);
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11197
diff changeset
  6378
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11197
diff changeset
  6379
  size(0);
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11197
diff changeset
  6380
  format %{ "!MEMBAR-storestore (empty encoding)" %}
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11197
diff changeset
  6381
  ins_encode( );
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11197
diff changeset
  6382
  ins_pipe(empty);
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11197
diff changeset
  6383
%}
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11197
diff changeset
  6384
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6385
//----------Register Move Instructions-----------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6386
instruct roundDouble_nop(regD dst) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6387
  match(Set dst (RoundDouble dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6388
  ins_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6389
  // SPARC results are already "rounded" (i.e., normal-format IEEE)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6390
  ins_encode( );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6391
  ins_pipe(empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6392
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6393
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6394
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6395
instruct roundFloat_nop(regF dst) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6396
  match(Set dst (RoundFloat dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6397
  ins_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6398
  // SPARC results are already "rounded" (i.e., normal-format IEEE)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6399
  ins_encode( );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6400
  ins_pipe(empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6401
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6402
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6403
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6404
// Cast Index to Pointer for unsafe natives
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6405
instruct castX2P(iRegX src, iRegP dst) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6406
  match(Set dst (CastX2P src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6407
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6408
  format %{ "MOV    $src,$dst\t! IntX->Ptr" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6409
  ins_encode( form3_g0_rs2_rd_move( src, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6410
  ins_pipe(ialu_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6411
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6412
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6413
// Cast Pointer to Index for unsafe natives
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6414
instruct castP2X(iRegP src, iRegX dst) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6415
  match(Set dst (CastP2X src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6416
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6417
  format %{ "MOV    $src,$dst\t! Ptr->IntX" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6418
  ins_encode( form3_g0_rs2_rd_move( src, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6419
  ins_pipe(ialu_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6420
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6421
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6422
instruct stfSSD(stackSlotD stkSlot, regD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6423
  // %%%% TO DO: Tell the coalescer that this kind of node is a copy!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6424
  match(Set stkSlot src);   // chain rule
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6425
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6426
  format %{ "STDF   $src,$stkSlot\t!stk" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6427
  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
  6428
  ins_encode(simple_form3_mem_reg(stkSlot, src));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6429
  ins_pipe(fstoreD_stk_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6430
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6431
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6432
instruct ldfSSD(regD dst, stackSlotD stkSlot) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6433
  // %%%% TO DO: Tell the coalescer that this kind of node is a copy!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6434
  match(Set dst stkSlot);   // chain rule
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6435
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6436
  format %{ "LDDF   $stkSlot,$dst\t!stk" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6437
  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
  6438
  ins_encode(simple_form3_mem_reg(stkSlot, dst));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6439
  ins_pipe(floadD_stk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6440
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6441
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6442
instruct stfSSF(stackSlotF stkSlot, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6443
  // %%%% TO DO: Tell the coalescer that this kind of node is a copy!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6444
  match(Set stkSlot src);   // chain rule
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6445
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6446
  format %{ "STF   $src,$stkSlot\t!stk" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6447
  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
  6448
  ins_encode(simple_form3_mem_reg(stkSlot, src));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6449
  ins_pipe(fstoreF_stk_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6450
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6451
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6452
//----------Conditional Move---------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6453
// Conditional move
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6454
instruct cmovIP_reg(cmpOpP cmp, flagsRegP pcc, iRegI dst, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6455
  match(Set dst (CMoveI (Binary cmp pcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6456
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6457
  format %{ "MOV$cmp $pcc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6458
  ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::ptr_cc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6459
  ins_pipe(ialu_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6460
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6461
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6462
instruct cmovIP_imm(cmpOpP cmp, flagsRegP pcc, iRegI dst, immI11 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6463
  match(Set dst (CMoveI (Binary cmp pcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6464
  ins_cost(140);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6465
  format %{ "MOV$cmp $pcc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6466
  ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::ptr_cc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6467
  ins_pipe(ialu_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6468
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6469
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6470
instruct cmovII_reg(cmpOp cmp, flagsReg icc, iRegI dst, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6471
  match(Set dst (CMoveI (Binary cmp icc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6472
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6473
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6474
  format %{ "MOV$cmp  $icc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6475
  ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::icc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6476
  ins_pipe(ialu_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6477
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6478
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6479
instruct cmovII_imm(cmpOp cmp, flagsReg icc, iRegI dst, immI11 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6480
  match(Set dst (CMoveI (Binary cmp icc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6481
  ins_cost(140);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6482
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6483
  format %{ "MOV$cmp  $icc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6484
  ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::icc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6485
  ins_pipe(ialu_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6486
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6487
4589
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6488
instruct cmovIIu_reg(cmpOpU cmp, flagsRegU icc, iRegI dst, iRegI src) %{
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6489
  match(Set dst (CMoveI (Binary cmp icc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6490
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6491
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6492
  format %{ "MOV$cmp  $icc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6493
  ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::icc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6494
  ins_pipe(ialu_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6495
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6496
4589
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6497
instruct cmovIIu_imm(cmpOpU cmp, flagsRegU icc, iRegI dst, immI11 src) %{
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6498
  match(Set dst (CMoveI (Binary cmp icc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6499
  ins_cost(140);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6500
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6501
  format %{ "MOV$cmp  $icc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6502
  ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::icc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6503
  ins_pipe(ialu_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6504
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6505
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6506
instruct cmovIF_reg(cmpOpF cmp, flagsRegF fcc, iRegI dst, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6507
  match(Set dst (CMoveI (Binary cmp fcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6508
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6509
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6510
  format %{ "MOV$cmp $fcc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6511
  ins_encode( enc_cmov_reg_f(cmp,dst,src, fcc) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6512
  ins_pipe(ialu_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6513
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6514
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6515
instruct cmovIF_imm(cmpOpF cmp, flagsRegF fcc, iRegI dst, immI11 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6516
  match(Set dst (CMoveI (Binary cmp fcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6517
  ins_cost(140);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6518
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6519
  format %{ "MOV$cmp $fcc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6520
  ins_encode( enc_cmov_imm_f(cmp,dst,src, fcc) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6521
  ins_pipe(ialu_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6522
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6523
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6524
// 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
  6525
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
  6526
  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
  6527
  ins_cost(150);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6528
  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
  6529
  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
  6530
  ins_pipe(ialu_reg);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6531
%}
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6532
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6533
// 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
  6534
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
  6535
  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
  6536
  ins_cost(150);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6537
  size(4);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6538
  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
  6539
  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
  6540
  ins_pipe(ialu_reg);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6541
%}
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6542
4589
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6543
// This instruction also works with CmpN so we don't need cmovNN_reg.
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6544
instruct cmovNIu_reg(cmpOpU cmp, flagsRegU icc, iRegN dst, iRegN src) %{
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6545
  match(Set dst (CMoveN (Binary cmp icc) (Binary dst src)));
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6546
  ins_cost(150);
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6547
  size(4);
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6548
  format %{ "MOV$cmp  $icc,$src,$dst" %}
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6549
  ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::icc)) );
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6550
  ins_pipe(ialu_reg);
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6551
%}
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6552
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6553
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
  6554
  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
  6555
  ins_cost(150);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6556
  size(4);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6557
  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
  6558
  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
  6559
  ins_pipe(ialu_reg);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6560
%}
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6561
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6562
// Conditional move
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6563
instruct cmovPP_reg(cmpOpP cmp, flagsRegP pcc, iRegP dst, iRegP src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6564
  match(Set dst (CMoveP (Binary cmp pcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6565
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6566
  format %{ "MOV$cmp $pcc,$src,$dst\t! ptr" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6567
  ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::ptr_cc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6568
  ins_pipe(ialu_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6569
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6570
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6571
instruct cmovPP_imm(cmpOpP cmp, flagsRegP pcc, iRegP dst, immP0 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6572
  match(Set dst (CMoveP (Binary cmp pcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6573
  ins_cost(140);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6574
  format %{ "MOV$cmp $pcc,$src,$dst\t! ptr" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6575
  ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::ptr_cc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6576
  ins_pipe(ialu_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6577
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6578
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  6579
// This instruction also works with CmpN so we don't need cmovPN_reg.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6580
instruct cmovPI_reg(cmpOp cmp, flagsReg icc, iRegP dst, iRegP src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6581
  match(Set dst (CMoveP (Binary cmp icc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6582
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6583
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6584
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6585
  format %{ "MOV$cmp  $icc,$src,$dst\t! ptr" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6586
  ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::icc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6587
  ins_pipe(ialu_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6588
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6589
4589
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6590
instruct cmovPIu_reg(cmpOpU cmp, flagsRegU icc, iRegP dst, iRegP src) %{
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6591
  match(Set dst (CMoveP (Binary cmp icc) (Binary dst src)));
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6592
  ins_cost(150);
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6593
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6594
  size(4);
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6595
  format %{ "MOV$cmp  $icc,$src,$dst\t! ptr" %}
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6596
  ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::icc)) );
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6597
  ins_pipe(ialu_reg);
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6598
%}
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6599
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6600
instruct cmovPI_imm(cmpOp cmp, flagsReg icc, iRegP dst, immP0 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6601
  match(Set dst (CMoveP (Binary cmp icc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6602
  ins_cost(140);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6603
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6604
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6605
  format %{ "MOV$cmp  $icc,$src,$dst\t! ptr" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6606
  ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::icc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6607
  ins_pipe(ialu_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6608
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6609
4589
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6610
instruct cmovPIu_imm(cmpOpU cmp, flagsRegU icc, iRegP dst, immP0 src) %{
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6611
  match(Set dst (CMoveP (Binary cmp icc) (Binary dst src)));
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6612
  ins_cost(140);
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6613
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6614
  size(4);
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6615
  format %{ "MOV$cmp  $icc,$src,$dst\t! ptr" %}
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6616
  ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::icc)) );
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6617
  ins_pipe(ialu_imm);
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6618
%}
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6619
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6620
instruct cmovPF_reg(cmpOpF cmp, flagsRegF fcc, iRegP dst, iRegP src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6621
  match(Set dst (CMoveP (Binary cmp fcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6622
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6623
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6624
  format %{ "MOV$cmp $fcc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6625
  ins_encode( enc_cmov_reg_f(cmp,dst,src, fcc) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6626
  ins_pipe(ialu_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6627
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6628
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6629
instruct cmovPF_imm(cmpOpF cmp, flagsRegF fcc, iRegP dst, immP0 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6630
  match(Set dst (CMoveP (Binary cmp fcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6631
  ins_cost(140);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6632
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6633
  format %{ "MOV$cmp $fcc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6634
  ins_encode( enc_cmov_imm_f(cmp,dst,src, fcc) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6635
  ins_pipe(ialu_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6636
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6637
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6638
// Conditional move
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6639
instruct cmovFP_reg(cmpOpP cmp, flagsRegP pcc, regF dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6640
  match(Set dst (CMoveF (Binary cmp pcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6641
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6642
  opcode(0x101);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6643
  format %{ "FMOVD$cmp $pcc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6644
  ins_encode( enc_cmovf_reg(cmp,dst,src, (Assembler::ptr_cc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6645
  ins_pipe(int_conditional_float_move);
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 cmovFI_reg(cmpOp cmp, flagsReg icc, regF dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6649
  match(Set dst (CMoveF (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 %{ "FMOVS$cmp $icc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6654
  opcode(0x101);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6655
  ins_encode( enc_cmovf_reg(cmp,dst,src, (Assembler::icc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6656
  ins_pipe(int_conditional_float_move);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6657
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6658
4589
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6659
instruct cmovFIu_reg(cmpOpU cmp, flagsRegU icc, regF dst, regF src) %{
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6660
  match(Set dst (CMoveF (Binary cmp icc) (Binary dst src)));
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6661
  ins_cost(150);
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6662
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6663
  size(4);
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6664
  format %{ "FMOVS$cmp $icc,$src,$dst" %}
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6665
  opcode(0x101);
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6666
  ins_encode( enc_cmovf_reg(cmp,dst,src, (Assembler::icc)) );
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6667
  ins_pipe(int_conditional_float_move);
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6668
%}
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6669
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6670
// Conditional move,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6671
instruct cmovFF_reg(cmpOpF cmp, flagsRegF fcc, regF dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6672
  match(Set dst (CMoveF (Binary cmp fcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6673
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6674
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6675
  format %{ "FMOVF$cmp $fcc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6676
  opcode(0x1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6677
  ins_encode( enc_cmovff_reg(cmp,fcc,dst,src) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6678
  ins_pipe(int_conditional_double_move);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6679
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6680
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6681
// Conditional move
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6682
instruct cmovDP_reg(cmpOpP cmp, flagsRegP pcc, regD dst, regD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6683
  match(Set dst (CMoveD (Binary cmp pcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6684
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6685
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6686
  opcode(0x102);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6687
  format %{ "FMOVD$cmp $pcc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6688
  ins_encode( enc_cmovf_reg(cmp,dst,src, (Assembler::ptr_cc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6689
  ins_pipe(int_conditional_double_move);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6690
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6691
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6692
instruct cmovDI_reg(cmpOp cmp, flagsReg icc, regD dst, regD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6693
  match(Set dst (CMoveD (Binary cmp icc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6694
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6695
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6696
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6697
  format %{ "FMOVD$cmp $icc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6698
  opcode(0x102);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6699
  ins_encode( enc_cmovf_reg(cmp,dst,src, (Assembler::icc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6700
  ins_pipe(int_conditional_double_move);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6701
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6702
4589
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6703
instruct cmovDIu_reg(cmpOpU cmp, flagsRegU icc, regD dst, regD src) %{
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6704
  match(Set dst (CMoveD (Binary cmp icc) (Binary dst src)));
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6705
  ins_cost(150);
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6706
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6707
  size(4);
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6708
  format %{ "FMOVD$cmp $icc,$src,$dst" %}
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6709
  opcode(0x102);
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6710
  ins_encode( enc_cmovf_reg(cmp,dst,src, (Assembler::icc)) );
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6711
  ins_pipe(int_conditional_double_move);
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6712
%}
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6713
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6714
// Conditional move,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6715
instruct cmovDF_reg(cmpOpF cmp, flagsRegF fcc, regD dst, regD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6716
  match(Set dst (CMoveD (Binary cmp fcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6717
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6718
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6719
  format %{ "FMOVD$cmp $fcc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6720
  opcode(0x2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6721
  ins_encode( enc_cmovff_reg(cmp,fcc,dst,src) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6722
  ins_pipe(int_conditional_double_move);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6723
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6724
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6725
// Conditional move
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6726
instruct cmovLP_reg(cmpOpP cmp, flagsRegP pcc, iRegL dst, iRegL src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6727
  match(Set dst (CMoveL (Binary cmp pcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6728
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6729
  format %{ "MOV$cmp $pcc,$src,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6730
  ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::ptr_cc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6731
  ins_pipe(ialu_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6732
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6733
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6734
instruct cmovLP_imm(cmpOpP cmp, flagsRegP pcc, iRegL dst, immI11 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6735
  match(Set dst (CMoveL (Binary cmp pcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6736
  ins_cost(140);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6737
  format %{ "MOV$cmp $pcc,$src,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6738
  ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::ptr_cc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6739
  ins_pipe(ialu_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6740
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6741
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6742
instruct cmovLI_reg(cmpOp cmp, flagsReg icc, iRegL dst, iRegL src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6743
  match(Set dst (CMoveL (Binary cmp icc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6744
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6745
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6746
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6747
  format %{ "MOV$cmp  $icc,$src,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6748
  ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::icc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6749
  ins_pipe(ialu_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6750
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6751
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6752
4589
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6753
instruct cmovLIu_reg(cmpOpU cmp, flagsRegU icc, iRegL dst, iRegL src) %{
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6754
  match(Set dst (CMoveL (Binary cmp icc) (Binary dst src)));
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6755
  ins_cost(150);
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6756
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6757
  size(4);
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6758
  format %{ "MOV$cmp  $icc,$src,$dst\t! long" %}
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6759
  ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::icc)) );
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6760
  ins_pipe(ialu_reg);
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6761
%}
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6762
2621c7da5a88 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 4566
diff changeset
  6763
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6764
instruct cmovLF_reg(cmpOpF cmp, flagsRegF fcc, iRegL dst, iRegL src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6765
  match(Set dst (CMoveL (Binary cmp fcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6766
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6767
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6768
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6769
  format %{ "MOV$cmp  $fcc,$src,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6770
  ins_encode( enc_cmov_reg_f(cmp,dst,src, fcc) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6771
  ins_pipe(ialu_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6772
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6773
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6774
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6775
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6776
//----------OS and Locking Instructions----------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6777
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6778
// This name is KNOWN by the ADLC and cannot be changed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6779
// The ADLC forces a 'TypeRawPtr::BOTTOM' output type
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6780
// for this guy.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6781
instruct tlsLoadP(g2RegP dst) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6782
  match(Set dst (ThreadLocal));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6783
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6784
  size(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6785
  ins_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6786
  format %{ "# TLS is in G2" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6787
  ins_encode( /*empty encoding*/ );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6788
  ins_pipe(ialu_none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6789
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6790
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6791
instruct checkCastPP( iRegP dst ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6792
  match(Set dst (CheckCastPP dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6793
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6794
  size(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6795
  format %{ "# checkcastPP of $dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6796
  ins_encode( /*empty encoding*/ );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6797
  ins_pipe(empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6798
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6799
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6800
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6801
instruct castPP( iRegP dst ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6802
  match(Set dst (CastPP dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6803
  format %{ "# castPP of $dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6804
  ins_encode( /*empty encoding*/ );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6805
  ins_pipe(empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6806
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6807
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6808
instruct castII( iRegI dst ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6809
  match(Set dst (CastII dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6810
  format %{ "# castII of $dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6811
  ins_encode( /*empty encoding*/ );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6812
  ins_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6813
  ins_pipe(empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6814
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6815
58019
86b95fc6ca32 8229496: SIGFPE (division by zero) in C2 OSR compiled method
thartmann
parents: 54960
diff changeset
  6816
instruct castLL( iRegL dst ) %{
86b95fc6ca32 8229496: SIGFPE (division by zero) in C2 OSR compiled method
thartmann
parents: 54960
diff changeset
  6817
  match(Set dst (CastLL dst));
86b95fc6ca32 8229496: SIGFPE (division by zero) in C2 OSR compiled method
thartmann
parents: 54960
diff changeset
  6818
  format %{ "# castLL of $dst" %}
86b95fc6ca32 8229496: SIGFPE (division by zero) in C2 OSR compiled method
thartmann
parents: 54960
diff changeset
  6819
  ins_encode( /*empty encoding*/ );
86b95fc6ca32 8229496: SIGFPE (division by zero) in C2 OSR compiled method
thartmann
parents: 54960
diff changeset
  6820
  ins_cost(0);
86b95fc6ca32 8229496: SIGFPE (division by zero) in C2 OSR compiled method
thartmann
parents: 54960
diff changeset
  6821
  ins_pipe(empty);
86b95fc6ca32 8229496: SIGFPE (division by zero) in C2 OSR compiled method
thartmann
parents: 54960
diff changeset
  6822
%}
86b95fc6ca32 8229496: SIGFPE (division by zero) in C2 OSR compiled method
thartmann
parents: 54960
diff changeset
  6823
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6824
//----------Arithmetic Instructions--------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6825
// Addition Instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6826
// Register Addition
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6827
instruct addI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6828
  match(Set dst (AddI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6829
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6830
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6831
  format %{ "ADD    $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6832
  ins_encode %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6833
    __ add($src1$$Register, $src2$$Register, $dst$$Register);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6834
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6835
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6836
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6837
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6838
// Immediate Addition
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6839
instruct addI_reg_imm13(iRegI dst, iRegI src1, immI13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6840
  match(Set dst (AddI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6841
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6842
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6843
  format %{ "ADD    $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6844
  opcode(Assembler::add_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6845
  ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6846
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6847
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6848
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6849
// Pointer Register Addition
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6850
instruct addP_reg_reg(iRegP dst, iRegP src1, iRegX src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6851
  match(Set dst (AddP src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6852
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6853
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6854
  format %{ "ADD    $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6855
  opcode(Assembler::add_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6856
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6857
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6858
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6859
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6860
// Pointer Immediate Addition
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6861
instruct addP_reg_imm13(iRegP dst, iRegP src1, immX13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6862
  match(Set dst (AddP src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6863
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6864
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6865
  format %{ "ADD    $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6866
  opcode(Assembler::add_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6867
  ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6868
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6869
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6870
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6871
// Long Addition
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6872
instruct addL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6873
  match(Set dst (AddL src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6874
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6875
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6876
  format %{ "ADD    $src1,$src2,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6877
  opcode(Assembler::add_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6878
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6879
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6880
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6881
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6882
instruct addL_reg_imm13(iRegL dst, iRegL src1, immL13 con) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6883
  match(Set dst (AddL src1 con));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6884
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6885
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6886
  format %{ "ADD    $src1,$con,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6887
  opcode(Assembler::add_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6888
  ins_encode( form3_rs1_simm13_rd( src1, con, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6889
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6890
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6891
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6892
//----------Conditional_store--------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6893
// Conditional-store of the updated heap-top.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6894
// Used during allocation of the shared heap.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6895
// Sets flags (EQ) on success.  Implemented with a CASA on Sparc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6896
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6897
// LoadP-locked.  Same as a regular pointer load when used with a compare-swap
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6898
instruct loadPLocked(iRegP dst, memory mem) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6899
  match(Set dst (LoadPLocked mem));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6900
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6901
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6902
  format %{ "LDX    $mem,$dst\t! ptr" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6903
  opcode(Assembler::ldx_op3, 0, REGP_OP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6904
  ins_encode( form3_mem_reg( mem, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6905
  ins_pipe(iload_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6906
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6907
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6908
instruct storePConditional( iRegP heap_top_ptr, iRegP oldval, g3RegP newval, flagsRegP pcc ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6909
  match(Set pcc (StorePConditional heap_top_ptr (Binary oldval newval)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6910
  effect( KILL newval );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6911
  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
  6912
            "CMP    R_G3,$oldval\t\t! See if we made progress"  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6913
  ins_encode( enc_cas(heap_top_ptr,oldval,newval) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6914
  ins_pipe( long_memory_op );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6915
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6916
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  6917
// Conditional-store of an int value.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  6918
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
  6919
  match(Set icc (StoreIConditional mem_ptr (Binary oldval newval)));
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  6920
  effect( KILL newval );
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  6921
  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
  6922
            "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
  6923
  ins_encode( enc_cas(mem_ptr,oldval,newval) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6924
  ins_pipe( long_memory_op );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6925
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6926
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  6927
// Conditional-store of a long value.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  6928
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
  6929
  match(Set xcc (StoreLConditional mem_ptr (Binary oldval newval)));
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  6930
  effect( KILL newval );
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  6931
  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
  6932
            "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
  6933
  ins_encode( enc_cas(mem_ptr,oldval,newval) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6934
  ins_pipe( long_memory_op );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6935
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6936
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6937
// No flag versions for CompareAndSwap{P,I,L} because matcher can't match them
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6938
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6939
instruct compareAndSwapL_bool(iRegP mem_ptr, iRegL oldval, iRegL newval, iRegI res, o7RegI tmp1, flagsReg ccr ) %{
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 13728
diff changeset
  6940
  predicate(VM_Version::supports_cx8());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6941
  match(Set res (CompareAndSwapL mem_ptr (Binary oldval newval)));
41053
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  6942
  match(Set res (WeakCompareAndSwapL mem_ptr (Binary oldval newval)));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6943
  effect( USE mem_ptr, KILL ccr, KILL tmp1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6944
  format %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6945
            "MOV    $newval,O7\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6946
            "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
  6947
            "CMP    $oldval,O7\t\t! See if we made progress\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6948
            "MOV    1,$res\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6949
            "MOVne  xcc,R_G0,$res"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6950
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6951
  ins_encode( enc_casx(mem_ptr, oldval, newval),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6952
              enc_lflags_ne_to_boolean(res) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6953
  ins_pipe( long_memory_op );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6954
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6955
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6956
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6957
instruct compareAndSwapI_bool(iRegP mem_ptr, iRegI oldval, iRegI newval, iRegI res, o7RegI tmp1, flagsReg ccr ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6958
  match(Set res (CompareAndSwapI mem_ptr (Binary oldval newval)));
41053
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  6959
  match(Set res (WeakCompareAndSwapI mem_ptr (Binary oldval newval)));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6960
  effect( USE mem_ptr, KILL ccr, KILL tmp1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6961
  format %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6962
            "MOV    $newval,O7\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6963
            "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
  6964
            "CMP    $oldval,O7\t\t! See if we made progress\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6965
            "MOV    1,$res\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6966
            "MOVne  icc,R_G0,$res"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6967
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6968
  ins_encode( enc_casi(mem_ptr, oldval, newval),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6969
              enc_iflags_ne_to_boolean(res) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6970
  ins_pipe( long_memory_op );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6971
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6972
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6973
instruct compareAndSwapP_bool(iRegP mem_ptr, iRegP oldval, iRegP newval, iRegI res, o7RegI tmp1, flagsReg ccr ) %{
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 13728
diff changeset
  6974
  predicate(VM_Version::supports_cx8());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6975
  match(Set res (CompareAndSwapP mem_ptr (Binary oldval newval)));
41053
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  6976
  match(Set res (WeakCompareAndSwapP mem_ptr (Binary oldval newval)));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6977
  effect( USE mem_ptr, KILL ccr, KILL tmp1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6978
  format %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6979
            "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
  6980
            "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
  6981
            "CMP    $oldval,O7\t\t! See if we made progress\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6982
            "MOV    1,$res\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6983
            "MOVne  xcc,R_G0,$res"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6984
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6985
  ins_encode( enc_casx(mem_ptr, oldval, newval),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6986
              enc_lflags_ne_to_boolean(res) );
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6987
  ins_pipe( long_memory_op );
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6988
%}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  6989
607
3edc58bab61e 6709165: Tests hang or misbahve with HS 13.0-b01 on solaris-sparcv9
never
parents: 591
diff changeset
  6990
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
  6991
  match(Set res (CompareAndSwapN mem_ptr (Binary oldval newval)));
41053
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  6992
  match(Set res (WeakCompareAndSwapN 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
  6993
  effect( USE mem_ptr, KILL ccr, KILL tmp1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6994
  format %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6995
            "MOV    $newval,O7\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6996
            "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
  6997
            "CMP    $oldval,O7\t\t! See if we made progress\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6998
            "MOV    1,$res\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  6999
            "MOVne  icc,R_G0,$res"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7000
  %}
607
3edc58bab61e 6709165: Tests hang or misbahve with HS 13.0-b01 on solaris-sparcv9
never
parents: 591
diff changeset
  7001
  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
  7002
              enc_iflags_ne_to_boolean(res) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7003
  ins_pipe( long_memory_op );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7004
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7005
41053
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7006
instruct compareAndExchangeI(iRegP mem_ptr, iRegI oldval, iRegI newval)
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7007
%{
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7008
  match(Set newval (CompareAndExchangeI mem_ptr (Binary oldval newval)));
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7009
  effect( USE mem_ptr );
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7010
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7011
  format %{
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7012
            "CASA   [$mem_ptr],$oldval,$newval\t! If $oldval==[$mem_ptr] Then store $newval into [$mem_ptr] and set $newval=[$mem_ptr]\n\t"
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7013
  %}
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7014
  ins_encode( enc_casi_exch(mem_ptr, oldval, newval) );
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7015
  ins_pipe( long_memory_op );
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7016
%}
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7017
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7018
instruct compareAndExchangeL(iRegP mem_ptr, iRegL oldval, iRegL newval)
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7019
%{
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7020
  match(Set newval (CompareAndExchangeL mem_ptr (Binary oldval newval)));
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7021
  effect( USE mem_ptr );
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7022
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7023
  format %{
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7024
            "CASXA  [$mem_ptr],$oldval,$newval\t! If $oldval==[$mem_ptr] Then store $newval into [$mem_ptr] and set $newval=[$mem_ptr]\n\t"
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7025
  %}
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7026
  ins_encode( enc_casx_exch(mem_ptr, oldval, newval) );
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7027
  ins_pipe( long_memory_op );
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7028
%}
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7029
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7030
instruct compareAndExchangeP(iRegP mem_ptr, iRegP oldval, iRegP newval)
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7031
%{
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7032
  match(Set newval (CompareAndExchangeP mem_ptr (Binary oldval newval)));
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7033
  effect( USE mem_ptr );
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7034
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7035
  format %{
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7036
            "CASXA  [$mem_ptr],$oldval,$newval\t! If $oldval==[$mem_ptr] Then store $newval into [$mem_ptr] and set $newval=[$mem_ptr]\n\t"
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7037
  %}
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7038
  ins_encode( enc_casx_exch(mem_ptr, oldval, newval) );
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7039
  ins_pipe( long_memory_op );
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7040
%}
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7041
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7042
instruct compareAndExchangeN(iRegP mem_ptr, iRegN oldval, iRegN newval)
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7043
%{
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7044
  match(Set newval (CompareAndExchangeN mem_ptr (Binary oldval newval)));
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7045
  effect( USE mem_ptr );
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7046
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7047
  format %{
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7048
            "CASA   [$mem_ptr],$oldval,$newval\t! If $oldval==[$mem_ptr] Then store $newval into [$mem_ptr] and set $newval=[$mem_ptr]\n\t"
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7049
  %}
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7050
  ins_encode( enc_casi_exch(mem_ptr, oldval, newval) );
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7051
  ins_pipe( long_memory_op );
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7052
%}
3a2666d0b07a 8141634: Implement VarHandles/Unsafe intrinsics on SPARC
zmajo
parents: 40040
diff changeset
  7053
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 13728
diff changeset
  7054
instruct xchgI( memory mem, iRegI newval) %{
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 13728
diff changeset
  7055
  match(Set newval (GetAndSetI mem newval));
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 13728
diff changeset
  7056
  format %{ "SWAP  [$mem],$newval" %}
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 13728
diff changeset
  7057
  size(4);
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 13728
diff changeset
  7058
  ins_encode %{
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 13728
diff changeset
  7059
    __ swap($mem$$Address, $newval$$Register);
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 13728
diff changeset
  7060
  %}
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 13728
diff changeset
  7061
  ins_pipe( long_memory_op );
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 13728
diff changeset
  7062
%}
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 13728
diff changeset
  7063
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 13728
diff changeset
  7064
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 13728
diff changeset
  7065
instruct xchgN( memory mem, iRegN newval) %{
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 13728
diff changeset
  7066
  match(Set newval (GetAndSetN mem newval));
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 13728
diff changeset
  7067
  format %{ "SWAP  [$mem],$newval" %}
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 13728
diff changeset
  7068
  size(4);
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 13728
diff changeset
  7069
  ins_encode %{
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 13728
diff changeset
  7070
    __ swap($mem$$Address, $newval$$Register);
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 13728
diff changeset
  7071
  %}
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 13728
diff changeset
  7072
  ins_pipe( long_memory_op );
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 13728
diff changeset
  7073
%}
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 13728
diff changeset
  7074
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7075
//---------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7076
// Subtraction Instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7077
// Register Subtraction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7078
instruct subI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7079
  match(Set dst (SubI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7080
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7081
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7082
  format %{ "SUB    $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7083
  opcode(Assembler::sub_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7084
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7085
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7086
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7087
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7088
// Immediate Subtraction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7089
instruct subI_reg_imm13(iRegI dst, iRegI src1, immI13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7090
  match(Set dst (SubI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7091
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7092
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7093
  format %{ "SUB    $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7094
  opcode(Assembler::sub_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7095
  ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7096
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7097
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7098
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7099
instruct subI_zero_reg(iRegI dst, immI0 zero, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7100
  match(Set dst (SubI zero src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7101
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7102
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7103
  format %{ "NEG    $src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7104
  opcode(Assembler::sub_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7105
  ins_encode( form3_rs1_rs2_rd( R_G0, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7106
  ins_pipe(ialu_zero_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7107
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7108
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7109
// Long subtraction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7110
instruct subL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7111
  match(Set dst (SubL src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7112
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7113
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7114
  format %{ "SUB    $src1,$src2,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7115
  opcode(Assembler::sub_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7116
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7117
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7118
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7119
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7120
// Immediate Subtraction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7121
instruct subL_reg_imm13(iRegL dst, iRegL src1, immL13 con) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7122
  match(Set dst (SubL src1 con));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7123
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7124
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7125
  format %{ "SUB    $src1,$con,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7126
  opcode(Assembler::sub_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7127
  ins_encode( form3_rs1_simm13_rd( src1, con, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7128
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7129
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7130
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7131
// Long negation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7132
instruct negL_reg_reg(iRegL dst, immL0 zero, iRegL src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7133
  match(Set dst (SubL zero src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7134
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7135
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7136
  format %{ "NEG    $src2,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7137
  opcode(Assembler::sub_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7138
  ins_encode( form3_rs1_rs2_rd( R_G0, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7139
  ins_pipe(ialu_zero_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7140
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7141
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7142
// Multiplication Instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7143
// Integer Multiplication
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7144
// Register Multiplication
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7145
instruct mulI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7146
  match(Set dst (MulI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7147
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7148
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7149
  format %{ "MULX   $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7150
  opcode(Assembler::mulx_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7151
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7152
  ins_pipe(imul_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7153
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7154
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7155
// Immediate Multiplication
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7156
instruct mulI_reg_imm13(iRegI dst, iRegI src1, immI13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7157
  match(Set dst (MulI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7158
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7159
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7160
  format %{ "MULX   $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7161
  opcode(Assembler::mulx_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7162
  ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7163
  ins_pipe(imul_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7164
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7165
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7166
instruct mulL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7167
  match(Set dst (MulL src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7168
  ins_cost(DEFAULT_COST * 5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7169
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7170
  format %{ "MULX   $src1,$src2,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7171
  opcode(Assembler::mulx_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7172
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7173
  ins_pipe(mulL_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7174
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7175
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7176
// Immediate Multiplication
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7177
instruct mulL_reg_imm13(iRegL dst, iRegL src1, immL13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7178
  match(Set dst (MulL src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7179
  ins_cost(DEFAULT_COST * 5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7180
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7181
  format %{ "MULX   $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7182
  opcode(Assembler::mulx_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7183
  ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7184
  ins_pipe(mulL_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7185
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7186
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7187
// Integer Division
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7188
// Register Division
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7189
instruct divI_reg_reg(iRegI dst, iRegIsafe src1, iRegIsafe src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7190
  match(Set dst (DivI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7191
  ins_cost((2+71)*DEFAULT_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7192
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7193
  format %{ "SRA     $src2,0,$src2\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7194
            "SRA     $src1,0,$src1\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7195
            "SDIVX   $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7196
  ins_encode( idiv_reg( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7197
  ins_pipe(sdiv_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
// Immediate Division
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7201
instruct divI_reg_imm13(iRegI dst, iRegIsafe src1, immI13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7202
  match(Set dst (DivI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7203
  ins_cost((2+71)*DEFAULT_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7204
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7205
  format %{ "SRA     $src1,0,$src1\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7206
            "SDIVX   $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7207
  ins_encode( idiv_imm( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7208
  ins_pipe(sdiv_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7209
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7210
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7211
//----------Div-By-10-Expansion------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7212
// Extract hi bits of a 32x32->64 bit multiply.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7213
// Expand rule only, not matched
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7214
instruct mul_hi(iRegIsafe dst, iRegIsafe src1, iRegIsafe src2 ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7215
  effect( DEF dst, USE src1, USE src2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7216
  format %{ "MULX   $src1,$src2,$dst\t! Used in div-by-10\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7217
            "SRLX   $dst,#32,$dst\t\t! Extract only hi word of result" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7218
  ins_encode( enc_mul_hi(dst,src1,src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7219
  ins_pipe(sdiv_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7220
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7221
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 2022
diff changeset
  7222
// Magic constant, reciprocal of 10
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7223
instruct loadConI_x66666667(iRegIsafe dst) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7224
  effect( DEF dst );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7225
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7226
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7227
  format %{ "SET    0x66666667,$dst\t! Used in div-by-10" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7228
  ins_encode( Set32(0x66666667, dst) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7229
  ins_pipe(ialu_hi_lo_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7230
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7231
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 2022
diff changeset
  7232
// Register Shift Right Arithmetic Long by 32-63
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7233
instruct sra_31( iRegI dst, iRegI src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7234
  effect( DEF dst, USE src );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7235
  format %{ "SRA    $src,31,$dst\t! Used in div-by-10" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7236
  ins_encode( form3_rs1_rd_copysign_hi(src,dst) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7237
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7238
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7239
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7240
// Arithmetic Shift Right by 8-bit immediate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7241
instruct sra_reg_2( iRegI dst, iRegI src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7242
  effect( DEF dst, USE src );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7243
  format %{ "SRA    $src,2,$dst\t! Used in div-by-10" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7244
  opcode(Assembler::sra_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7245
  ins_encode( form3_rs1_simm13_rd( src, 0x2, 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
// Integer DIV with 10
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7250
instruct divI_10( iRegI dst, iRegIsafe src, immI10 div ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7251
  match(Set dst (DivI src div));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7252
  ins_cost((6+6)*DEFAULT_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7253
  expand %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7254
    iRegIsafe tmp1;               // Killed temps;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7255
    iRegIsafe tmp2;               // Killed temps;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7256
    iRegI tmp3;                   // Killed temps;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7257
    iRegI tmp4;                   // Killed temps;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7258
    loadConI_x66666667( tmp1 );   // SET  0x66666667 -> tmp1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7259
    mul_hi( tmp2, src, tmp1 );    // MUL  hibits(src * tmp1) -> tmp2
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7260
    sra_31( tmp3, src );          // SRA  src,31 -> tmp3
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7261
    sra_reg_2( tmp4, tmp2 );      // SRA  tmp2,2 -> tmp4
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7262
    subI_reg_reg( dst,tmp4,tmp3); // SUB  tmp4 - tmp3 -> dst
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7263
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7264
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7265
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7266
// Register Long Division
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7267
instruct divL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7268
  match(Set dst (DivL src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7269
  ins_cost(DEFAULT_COST*71);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7270
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7271
  format %{ "SDIVX  $src1,$src2,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7272
  opcode(Assembler::sdivx_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7273
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7274
  ins_pipe(divL_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7275
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7276
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7277
// Register Long Division
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7278
instruct divL_reg_imm13(iRegL dst, iRegL src1, immL13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7279
  match(Set dst (DivL src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7280
  ins_cost(DEFAULT_COST*71);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7281
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7282
  format %{ "SDIVX  $src1,$src2,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7283
  opcode(Assembler::sdivx_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7284
  ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7285
  ins_pipe(divL_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7286
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7287
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7288
// Integer Remainder
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7289
// Register Remainder
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7290
instruct modI_reg_reg(iRegI dst, iRegIsafe src1, iRegIsafe src2, o7RegP temp, flagsReg ccr ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7291
  match(Set dst (ModI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7292
  effect( KILL ccr, KILL temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7293
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7294
  format %{ "SREM   $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7295
  ins_encode( irem_reg(src1, src2, dst, temp) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7296
  ins_pipe(sdiv_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7297
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7298
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7299
// Immediate Remainder
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7300
instruct modI_reg_imm13(iRegI dst, iRegIsafe src1, immI13 src2, o7RegP temp, flagsReg ccr ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7301
  match(Set dst (ModI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7302
  effect( KILL ccr, KILL temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7303
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7304
  format %{ "SREM   $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7305
  ins_encode( irem_imm(src1, src2, dst, temp) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7306
  ins_pipe(sdiv_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7307
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7308
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7309
// Register Long Remainder
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7310
instruct divL_reg_reg_1(iRegL dst, iRegL src1, iRegL src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7311
  effect(DEF dst, USE src1, USE src2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7312
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7313
  format %{ "SDIVX  $src1,$src2,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7314
  opcode(Assembler::sdivx_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7315
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7316
  ins_pipe(divL_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7317
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7318
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7319
// Register Long Division
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7320
instruct divL_reg_imm13_1(iRegL dst, iRegL src1, immL13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7321
  effect(DEF dst, USE src1, USE src2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7322
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7323
  format %{ "SDIVX  $src1,$src2,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7324
  opcode(Assembler::sdivx_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7325
  ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7326
  ins_pipe(divL_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7327
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7328
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7329
instruct mulL_reg_reg_1(iRegL dst, iRegL src1, iRegL src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7330
  effect(DEF dst, USE src1, USE src2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7331
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7332
  format %{ "MULX   $src1,$src2,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7333
  opcode(Assembler::mulx_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7334
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7335
  ins_pipe(mulL_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7336
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7337
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7338
// Immediate Multiplication
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7339
instruct mulL_reg_imm13_1(iRegL dst, iRegL src1, immL13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7340
  effect(DEF dst, USE src1, USE src2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7341
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7342
  format %{ "MULX   $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7343
  opcode(Assembler::mulx_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7344
  ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7345
  ins_pipe(mulL_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7346
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7347
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7348
instruct subL_reg_reg_1(iRegL dst, iRegL src1, iRegL src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7349
  effect(DEF dst, USE src1, USE src2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7350
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7351
  format %{ "SUB    $src1,$src2,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7352
  opcode(Assembler::sub_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7353
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7354
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7355
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7356
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7357
instruct subL_reg_reg_2(iRegL dst, iRegL src1, iRegL src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7358
  effect(DEF dst, USE src1, USE src2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7359
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7360
  format %{ "SUB    $src1,$src2,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7361
  opcode(Assembler::sub_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7362
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7363
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7364
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7365
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7366
// Register Long Remainder
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7367
instruct modL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7368
  match(Set dst (ModL src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7369
  ins_cost(DEFAULT_COST*(71 + 6 + 1));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7370
  expand %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7371
    iRegL tmp1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7372
    iRegL tmp2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7373
    divL_reg_reg_1(tmp1, src1, src2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7374
    mulL_reg_reg_1(tmp2, tmp1, src2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7375
    subL_reg_reg_1(dst,  src1, tmp2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7376
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7377
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7378
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7379
// Register Long Remainder
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7380
instruct modL_reg_imm13(iRegL dst, iRegL src1, immL13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7381
  match(Set dst (ModL src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7382
  ins_cost(DEFAULT_COST*(71 + 6 + 1));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7383
  expand %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7384
    iRegL tmp1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7385
    iRegL tmp2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7386
    divL_reg_imm13_1(tmp1, src1, src2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7387
    mulL_reg_imm13_1(tmp2, tmp1, src2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7388
    subL_reg_reg_2  (dst,  src1, tmp2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7389
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7390
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7391
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7392
// Integer Shift Instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7393
// Register Shift Left
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7394
instruct shlI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7395
  match(Set dst (LShiftI 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 %{ "SLL    $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7399
  opcode(Assembler::sll_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7400
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7401
  ins_pipe(ialu_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
// Register Shift Left Immediate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7405
instruct shlI_reg_imm5(iRegI dst, iRegI src1, immU5 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7406
  match(Set dst (LShiftI 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 %{ "SLL    $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7410
  opcode(Assembler::sll_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7411
  ins_encode( form3_rs1_imm5_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7412
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7413
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7414
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7415
// Register Shift Left
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7416
instruct shlL_reg_reg(iRegL dst, iRegL src1, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7417
  match(Set dst (LShiftL 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 %{ "SLLX   $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7421
  opcode(Assembler::sllx_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7422
  ins_encode( form3_sd_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7423
  ins_pipe(ialu_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
// Register Shift Left Immediate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7427
instruct shlL_reg_imm6(iRegL dst, iRegL src1, immU6 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7428
  match(Set dst (LShiftL 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 %{ "SLLX   $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7432
  opcode(Assembler::sllx_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7433
  ins_encode( form3_sd_rs1_imm6_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7434
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7435
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7436
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7437
// Register Arithmetic Shift Right
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7438
instruct sarI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7439
  match(Set dst (RShiftI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7440
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7441
  format %{ "SRA    $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7442
  opcode(Assembler::sra_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7443
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7444
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7445
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7446
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7447
// Register Arithmetic Shift Right Immediate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7448
instruct sarI_reg_imm5(iRegI dst, iRegI src1, immU5 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7449
  match(Set dst (RShiftI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7450
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7451
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7452
  format %{ "SRA    $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7453
  opcode(Assembler::sra_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7454
  ins_encode( form3_rs1_imm5_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7455
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7456
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7457
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7458
// Register Shift Right Arithmatic Long
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7459
instruct sarL_reg_reg(iRegL dst, iRegL src1, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7460
  match(Set dst (RShiftL src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7461
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7462
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7463
  format %{ "SRAX   $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7464
  opcode(Assembler::srax_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7465
  ins_encode( form3_sd_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7466
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7467
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7468
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7469
// Register Shift Left Immediate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7470
instruct sarL_reg_imm6(iRegL dst, iRegL src1, immU6 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7471
  match(Set dst (RShiftL src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7472
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7473
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7474
  format %{ "SRAX   $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7475
  opcode(Assembler::srax_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7476
  ins_encode( form3_sd_rs1_imm6_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7477
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7478
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7479
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7480
// Register Shift Right
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7481
instruct shrI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7482
  match(Set dst (URShiftI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7483
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7484
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7485
  format %{ "SRL    $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7486
  opcode(Assembler::srl_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7487
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7488
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7489
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7490
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7491
// Register Shift Right Immediate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7492
instruct shrI_reg_imm5(iRegI dst, iRegI src1, immU5 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7493
  match(Set dst (URShiftI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7494
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7495
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7496
  format %{ "SRL    $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7497
  opcode(Assembler::srl_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7498
  ins_encode( form3_rs1_imm5_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7499
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7500
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7501
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7502
// Register Shift Right
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7503
instruct shrL_reg_reg(iRegL dst, iRegL src1, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7504
  match(Set dst (URShiftL src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7505
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7506
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7507
  format %{ "SRLX   $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7508
  opcode(Assembler::srlx_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7509
  ins_encode( form3_sd_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7510
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7511
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7512
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7513
// Register Shift Right Immediate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7514
instruct shrL_reg_imm6(iRegL dst, iRegL src1, immU6 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7515
  match(Set dst (URShiftL src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7516
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7517
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7518
  format %{ "SRLX   $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7519
  opcode(Assembler::srlx_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7520
  ins_encode( form3_sd_rs1_imm6_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7521
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7522
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7523
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7524
// Register Shift Right Immediate with a CastP2X
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7525
instruct shrP_reg_imm6(iRegL dst, iRegP src1, immU6 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7526
  match(Set dst (URShiftL (CastP2X src1) src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7527
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7528
  format %{ "SRLX   $src1,$src2,$dst\t! Cast ptr $src1 to long and shift" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7529
  opcode(Assembler::srlx_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7530
  ins_encode( form3_sd_rs1_imm6_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7531
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7532
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7533
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7534
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7535
//----------Floating Point Arithmetic Instructions-----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7536
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7537
//  Add float single precision
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7538
instruct addF_reg_reg(regF dst, regF src1, regF src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7539
  match(Set dst (AddF src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7540
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7541
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7542
  format %{ "FADDS  $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7543
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fadds_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7544
  ins_encode(form3_opf_rs1F_rs2F_rdF(src1, src2, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7545
  ins_pipe(faddF_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7546
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7547
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7548
//  Add float double precision
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7549
instruct addD_reg_reg(regD dst, regD src1, regD src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7550
  match(Set dst (AddD src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7551
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7552
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7553
  format %{ "FADDD  $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7554
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::faddd_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7555
  ins_encode(form3_opf_rs1D_rs2D_rdD(src1, src2, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7556
  ins_pipe(faddD_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7557
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7558
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7559
//  Sub float single precision
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7560
instruct subF_reg_reg(regF dst, regF src1, regF src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7561
  match(Set dst (SubF src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7562
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7563
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7564
  format %{ "FSUBS  $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7565
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fsubs_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7566
  ins_encode(form3_opf_rs1F_rs2F_rdF(src1, src2, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7567
  ins_pipe(faddF_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7568
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7569
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7570
//  Sub float double precision
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7571
instruct subD_reg_reg(regD dst, regD src1, regD src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7572
  match(Set dst (SubD src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7573
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7574
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7575
  format %{ "FSUBD  $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7576
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fsubd_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7577
  ins_encode(form3_opf_rs1D_rs2D_rdD(src1, src2, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7578
  ins_pipe(faddD_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7579
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7580
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7581
//  Mul float single precision
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7582
instruct mulF_reg_reg(regF dst, regF src1, regF src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7583
  match(Set dst (MulF src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7584
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7585
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7586
  format %{ "FMULS  $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7587
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fmuls_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7588
  ins_encode(form3_opf_rs1F_rs2F_rdF(src1, src2, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7589
  ins_pipe(fmulF_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7590
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7591
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7592
//  Mul float double precision
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7593
instruct mulD_reg_reg(regD dst, regD src1, regD src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7594
  match(Set dst (MulD src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7595
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7596
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7597
  format %{ "FMULD  $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7598
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fmuld_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7599
  ins_encode(form3_opf_rs1D_rs2D_rdD(src1, src2, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7600
  ins_pipe(fmulD_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7601
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7602
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7603
//  Div float single precision
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7604
instruct divF_reg_reg(regF dst, regF src1, regF src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7605
  match(Set dst (DivF src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7606
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7607
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7608
  format %{ "FDIVS  $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7609
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fdivs_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7610
  ins_encode(form3_opf_rs1F_rs2F_rdF(src1, src2, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7611
  ins_pipe(fdivF_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7612
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7613
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7614
//  Div float double precision
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7615
instruct divD_reg_reg(regD dst, regD src1, regD src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7616
  match(Set dst (DivD src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7617
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7618
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7619
  format %{ "FDIVD  $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7620
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fdivd_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7621
  ins_encode(form3_opf_rs1D_rs2D_rdD(src1, src2, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7622
  ins_pipe(fdivD_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7623
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7624
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7625
//  Absolute float double precision
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7626
instruct absD_reg(regD dst, regD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7627
  match(Set dst (AbsD src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7628
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7629
  format %{ "FABSd  $src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7630
  ins_encode(fabsd(dst, src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7631
  ins_pipe(faddD_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7632
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7633
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7634
//  Absolute float single precision
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7635
instruct absF_reg(regF dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7636
  match(Set dst (AbsF src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7637
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7638
  format %{ "FABSs  $src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7639
  ins_encode(fabss(dst, src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7640
  ins_pipe(faddF_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7641
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7642
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7643
instruct negF_reg(regF dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7644
  match(Set dst (NegF src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7645
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7646
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7647
  format %{ "FNEGs  $src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7648
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fnegs_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7649
  ins_encode(form3_opf_rs2F_rdF(src, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7650
  ins_pipe(faddF_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7651
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7652
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7653
instruct negD_reg(regD dst, regD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7654
  match(Set dst (NegD src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7655
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7656
  format %{ "FNEGd  $src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7657
  ins_encode(fnegd(dst, src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7658
  ins_pipe(faddD_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7659
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7660
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7661
//  Sqrt float double precision
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7662
instruct sqrtF_reg_reg(regF dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7663
  match(Set dst (ConvD2F (SqrtD (ConvF2D src))));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7664
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7665
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7666
  format %{ "FSQRTS $src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7667
  ins_encode(fsqrts(dst, src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7668
  ins_pipe(fdivF_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7669
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7670
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7671
//  Sqrt float double precision
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7672
instruct sqrtD_reg_reg(regD dst, regD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7673
  match(Set dst (SqrtD src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7674
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7675
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7676
  format %{ "FSQRTD $src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7677
  ins_encode(fsqrtd(dst, src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7678
  ins_pipe(fdivD_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7679
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7680
47563
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7681
// Single/Double precision fused floating-point multiply-add (d = a * b + c).
46597
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  7682
instruct fmaF_regx4(regF dst, regF a, regF b, regF c) %{
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  7683
  predicate(UseFMA);
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  7684
  match(Set dst (FmaF c (Binary a b)));
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  7685
  format %{ "fmadds $a,$b,$c,$dst\t# $dst = $a * $b + $c" %}
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  7686
  ins_encode(fmadds(dst, a, b, c));
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  7687
  ins_pipe(fmaF_regx4);
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  7688
%}
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  7689
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  7690
instruct fmaD_regx4(regD dst, regD a, regD b, regD c) %{
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  7691
  predicate(UseFMA);
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  7692
  match(Set dst (FmaD c (Binary a b)));
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  7693
  format %{ "fmaddd $a,$b,$c,$dst\t# $dst = $a * $b + $c" %}
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  7694
  ins_encode(fmaddd(dst, a, b, c));
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  7695
  ins_pipe(fmaD_regx4);
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  7696
%}
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 46596
diff changeset
  7697
47563
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7698
// Additional patterns matching complement versions that we can map directly to
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7699
// variants of the fused multiply-add instructions.
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7700
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7701
// Single/Double precision fused floating-point multiply-sub (d = a * b - c)
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7702
instruct fmsubF_regx4(regF dst, regF a, regF b, regF c) %{
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7703
  predicate(UseFMA);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7704
  match(Set dst (FmaF (NegF c) (Binary a b)));
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7705
  format %{ "fmsubs $a,$b,$c,$dst\t# $dst = $a * $b - $c" %}
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7706
  ins_encode(fmsubs(dst, a, b, c));
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7707
  ins_pipe(fmaF_regx4);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7708
%}
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7709
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7710
instruct fmsubD_regx4(regD dst, regD a, regD b, regD c) %{
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7711
  predicate(UseFMA);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7712
  match(Set dst (FmaD (NegD c) (Binary a b)));
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7713
  format %{ "fmsubd $a,$b,$c,$dst\t# $dst = $a * $b - $c" %}
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7714
  ins_encode(fmsubd(dst, a, b, c));
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7715
  ins_pipe(fmaD_regx4);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7716
%}
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7717
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7718
// Single/Double precision fused floating-point neg. multiply-add,
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7719
//      d = -1 * a * b - c = -(a * b + c)
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7720
instruct fnmaddF_regx4(regF dst, regF a, regF b, regF c) %{
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7721
  predicate(UseFMA);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7722
  match(Set dst (FmaF (NegF c) (Binary (NegF a) b)));
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7723
  match(Set dst (FmaF (NegF c) (Binary a (NegF b))));
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7724
  format %{ "fnmadds $a,$b,$c,$dst\t# $dst = -($a * $b + $c)" %}
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7725
  ins_encode(fnmadds(dst, a, b, c));
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7726
  ins_pipe(fmaF_regx4);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7727
%}
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7728
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7729
instruct fnmaddD_regx4(regD dst, regD a, regD b, regD c) %{
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7730
  predicate(UseFMA);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7731
  match(Set dst (FmaD (NegD c) (Binary (NegD a) b)));
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7732
  match(Set dst (FmaD (NegD c) (Binary a (NegD b))));
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7733
  format %{ "fnmaddd $a,$b,$c,$dst\t# $dst = -($a * $b + $c)" %}
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7734
  ins_encode(fnmaddd(dst, a, b, c));
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7735
  ins_pipe(fmaD_regx4);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7736
%}
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7737
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7738
// Single/Double precision fused floating-point neg. multiply-sub,
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7739
//      d = -1 * a * b + c = -(a * b - c)
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7740
instruct fnmsubF_regx4(regF dst, regF a, regF b, regF c) %{
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7741
  predicate(UseFMA);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7742
  match(Set dst (FmaF c (Binary (NegF a) b)));
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7743
  match(Set dst (FmaF c (Binary a (NegF b))));
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7744
  format %{ "fnmsubs $a,$b,$c,$dst\t# $dst = -($a * $b - $c)" %}
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7745
  ins_encode(fnmsubs(dst, a, b, c));
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7746
  ins_pipe(fmaF_regx4);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7747
%}
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7748
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7749
instruct fnmsubD_regx4(regD dst, regD a, regD b, regD c) %{
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7750
  predicate(UseFMA);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7751
  match(Set dst (FmaD c (Binary (NegD a) b)));
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7752
  match(Set dst (FmaD c (Binary a (NegD b))));
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7753
  format %{ "fnmsubd $a,$b,$c,$dst\t# $dst = -($a * $b - $c)" %}
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7754
  ins_encode(fnmsubd(dst, a, b, c));
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7755
  ins_pipe(fmaD_regx4);
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7756
%}
bbd116ac5ef3 8188031: Complement fused mac operations on SPARC
neliasso
parents: 47216
diff changeset
  7757
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7758
//----------Logical Instructions-----------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7759
// And Instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7760
// Register And
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7761
instruct andI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7762
  match(Set dst (AndI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7763
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7764
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7765
  format %{ "AND    $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7766
  opcode(Assembler::and_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7767
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7768
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7769
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7770
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7771
// Immediate And
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7772
instruct andI_reg_imm13(iRegI dst, iRegI src1, immI13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7773
  match(Set dst (AndI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7774
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7775
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7776
  format %{ "AND    $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7777
  opcode(Assembler::and_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7778
  ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7779
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7780
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7781
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7782
// Register And Long
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7783
instruct andL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7784
  match(Set dst (AndL src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7785
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7786
  ins_cost(DEFAULT_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7787
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7788
  format %{ "AND    $src1,$src2,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7789
  opcode(Assembler::and_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7790
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7791
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7792
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7793
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7794
instruct andL_reg_imm13(iRegL dst, iRegL src1, immL13 con) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7795
  match(Set dst (AndL src1 con));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7796
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7797
  ins_cost(DEFAULT_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7798
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7799
  format %{ "AND    $src1,$con,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7800
  opcode(Assembler::and_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7801
  ins_encode( form3_rs1_simm13_rd( src1, con, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7802
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7803
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7804
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7805
// Or Instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7806
// Register Or
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7807
instruct orI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7808
  match(Set dst (OrI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7809
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7810
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7811
  format %{ "OR     $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7812
  opcode(Assembler::or_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7813
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7814
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7815
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7816
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7817
// Immediate Or
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7818
instruct orI_reg_imm13(iRegI dst, iRegI src1, immI13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7819
  match(Set dst (OrI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7820
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7821
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7822
  format %{ "OR     $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7823
  opcode(Assembler::or_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7824
  ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7825
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7826
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7827
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7828
// Register Or Long
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7829
instruct orL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7830
  match(Set dst (OrL src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7831
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7832
  ins_cost(DEFAULT_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7833
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7834
  format %{ "OR     $src1,$src2,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7835
  opcode(Assembler::or_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7836
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7837
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7838
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7839
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7840
instruct orL_reg_imm13(iRegL dst, iRegL src1, immL13 con) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7841
  match(Set dst (OrL src1 con));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7842
  ins_cost(DEFAULT_COST*2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7843
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7844
  ins_cost(DEFAULT_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7845
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7846
  format %{ "OR     $src1,$con,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7847
  opcode(Assembler::or_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7848
  ins_encode( form3_rs1_simm13_rd( src1, con, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7849
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7850
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7851
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7852
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
  7853
  match(Set dst (OrL src1 (CastP2X src2)));
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7854
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7855
  ins_cost(DEFAULT_COST);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7856
  size(4);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7857
  format %{ "OR     $src1,$src2,$dst\t! long" %}
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7858
  opcode(Assembler::or_op3, Assembler::arith_op);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7859
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7860
  ins_pipe(ialu_reg_reg);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7861
%}
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1495
diff changeset
  7862
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7863
// Xor Instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7864
// Register Xor
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7865
instruct xorI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7866
  match(Set dst (XorI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7867
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7868
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7869
  format %{ "XOR    $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7870
  opcode(Assembler::xor_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7871
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7872
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7873
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7874
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7875
// Immediate Xor
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7876
instruct xorI_reg_imm13(iRegI dst, iRegI src1, immI13 src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7877
  match(Set dst (XorI src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7878
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7879
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7880
  format %{ "XOR    $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7881
  opcode(Assembler::xor_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7882
  ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7883
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7884
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7885
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7886
// Register Xor Long
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7887
instruct xorL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7888
  match(Set dst (XorL src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7889
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7890
  ins_cost(DEFAULT_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7891
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7892
  format %{ "XOR    $src1,$src2,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7893
  opcode(Assembler::xor_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7894
  ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7895
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7896
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7897
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7898
instruct xorL_reg_imm13(iRegL dst, iRegL src1, immL13 con) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7899
  match(Set dst (XorL src1 con));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7900
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7901
  ins_cost(DEFAULT_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7902
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7903
  format %{ "XOR    $src1,$con,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7904
  opcode(Assembler::xor_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7905
  ins_encode( form3_rs1_simm13_rd( src1, con, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7906
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7907
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7908
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7909
//----------Convert to Boolean-------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7910
// Nice hack for 32-bit tests but doesn't work for
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7911
// 64-bit pointers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7912
instruct convI2B( iRegI dst, iRegI src, flagsReg ccr ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7913
  match(Set dst (Conv2B src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7914
  effect( KILL ccr );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7915
  ins_cost(DEFAULT_COST*2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7916
  format %{ "CMP    R_G0,$src\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7917
            "ADDX   R_G0,0,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7918
  ins_encode( enc_to_bool( src, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7919
  ins_pipe(ialu_reg_ialu);
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 convP2B( iRegI dst, iRegP src ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7923
  match(Set dst (Conv2B src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7924
  ins_cost(DEFAULT_COST*2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7925
  format %{ "MOV    $src,$dst\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7926
            "MOVRNZ $src,1,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7927
  ins_encode( form3_g0_rs2_rd_move( src, dst ), enc_convP2B( dst, src ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7928
  ins_pipe(ialu_clr_and_mover);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7929
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7930
8324
a9933c6c5a95 7017746: Regression : C2 compiler crash due to SIGSEGV in PhaseCFG::schedule_early()
kvn
parents: 7892
diff changeset
  7931
instruct cmpLTMask0( iRegI dst, iRegI src, immI0 zero, flagsReg ccr ) %{
a9933c6c5a95 7017746: Regression : C2 compiler crash due to SIGSEGV in PhaseCFG::schedule_early()
kvn
parents: 7892
diff changeset
  7932
  match(Set dst (CmpLTMask src zero));
a9933c6c5a95 7017746: Regression : C2 compiler crash due to SIGSEGV in PhaseCFG::schedule_early()
kvn
parents: 7892
diff changeset
  7933
  effect(KILL ccr);
a9933c6c5a95 7017746: Regression : C2 compiler crash due to SIGSEGV in PhaseCFG::schedule_early()
kvn
parents: 7892
diff changeset
  7934
  size(4);
a9933c6c5a95 7017746: Regression : C2 compiler crash due to SIGSEGV in PhaseCFG::schedule_early()
kvn
parents: 7892
diff changeset
  7935
  format %{ "SRA    $src,#31,$dst\t# cmpLTMask0" %}
a9933c6c5a95 7017746: Regression : C2 compiler crash due to SIGSEGV in PhaseCFG::schedule_early()
kvn
parents: 7892
diff changeset
  7936
  ins_encode %{
a9933c6c5a95 7017746: Regression : C2 compiler crash due to SIGSEGV in PhaseCFG::schedule_early()
kvn
parents: 7892
diff changeset
  7937
    __ sra($src$$Register, 31, $dst$$Register);
a9933c6c5a95 7017746: Regression : C2 compiler crash due to SIGSEGV in PhaseCFG::schedule_early()
kvn
parents: 7892
diff changeset
  7938
  %}
a9933c6c5a95 7017746: Regression : C2 compiler crash due to SIGSEGV in PhaseCFG::schedule_early()
kvn
parents: 7892
diff changeset
  7939
  ins_pipe(ialu_reg_imm);
a9933c6c5a95 7017746: Regression : C2 compiler crash due to SIGSEGV in PhaseCFG::schedule_early()
kvn
parents: 7892
diff changeset
  7940
%}
a9933c6c5a95 7017746: Regression : C2 compiler crash due to SIGSEGV in PhaseCFG::schedule_early()
kvn
parents: 7892
diff changeset
  7941
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7942
instruct cmpLTMask_reg_reg( iRegI dst, iRegI p, iRegI q, flagsReg ccr ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7943
  match(Set dst (CmpLTMask p q));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7944
  effect( KILL ccr );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7945
  ins_cost(DEFAULT_COST*4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7946
  format %{ "CMP    $p,$q\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7947
            "MOV    #0,$dst\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7948
            "BLT,a  .+8\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7949
            "MOV    #-1,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7950
  ins_encode( enc_ltmask(p,q,dst) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7951
  ins_pipe(ialu_reg_reg_ialu);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7952
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7953
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7954
instruct cadd_cmpLTMask( iRegI p, iRegI q, iRegI y, iRegI tmp, flagsReg ccr ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7955
  match(Set p (AddI (AndI (CmpLTMask p q) y) (SubI p q)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7956
  effect(KILL ccr, TEMP tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7957
  ins_cost(DEFAULT_COST*3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7958
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7959
  format %{ "SUBcc  $p,$q,$p\t! p' = p-q\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  7960
            "ADD    $p,$y,$tmp\t! g3=p-q+y\n\t"
8324
a9933c6c5a95 7017746: Regression : C2 compiler crash due to SIGSEGV in PhaseCFG::schedule_early()
kvn
parents: 7892
diff changeset
  7961
            "MOVlt  $tmp,$p\t! p' < 0 ? p'+y : p'" %}
17008
fe66415573bf 6443505: Ideal() function for CmpLTMask
drchase
parents: 14833
diff changeset
  7962
  ins_encode(enc_cadd_cmpLTMask(p, q, y, tmp));
fe66415573bf 6443505: Ideal() function for CmpLTMask
drchase
parents: 14833
diff changeset
  7963
  ins_pipe(cadd_cmpltmask);
fe66415573bf 6443505: Ideal() function for CmpLTMask
drchase
parents: 14833
diff changeset
  7964
%}
fe66415573bf 6443505: Ideal() function for CmpLTMask
drchase
parents: 14833
diff changeset
  7965
fe66415573bf 6443505: Ideal() function for CmpLTMask
drchase
parents: 14833
diff changeset
  7966
instruct and_cmpLTMask(iRegI p, iRegI q, iRegI y, flagsReg ccr) %{
fe66415573bf 6443505: Ideal() function for CmpLTMask
drchase
parents: 14833
diff changeset
  7967
  match(Set p (AndI (CmpLTMask p q) y));
fe66415573bf 6443505: Ideal() function for CmpLTMask
drchase
parents: 14833
diff changeset
  7968
  effect(KILL ccr);
fe66415573bf 6443505: Ideal() function for CmpLTMask
drchase
parents: 14833
diff changeset
  7969
  ins_cost(DEFAULT_COST*3);
fe66415573bf 6443505: Ideal() function for CmpLTMask
drchase
parents: 14833
diff changeset
  7970
fe66415573bf 6443505: Ideal() function for CmpLTMask
drchase
parents: 14833
diff changeset
  7971
  format %{ "CMP  $p,$q\n\t"
fe66415573bf 6443505: Ideal() function for CmpLTMask
drchase
parents: 14833
diff changeset
  7972
            "MOV  $y,$p\n\t"
fe66415573bf 6443505: Ideal() function for CmpLTMask
drchase
parents: 14833
diff changeset
  7973
            "MOVge G0,$p" %}
fe66415573bf 6443505: Ideal() function for CmpLTMask
drchase
parents: 14833
diff changeset
  7974
  ins_encode %{
fe66415573bf 6443505: Ideal() function for CmpLTMask
drchase
parents: 14833
diff changeset
  7975
    __ cmp($p$$Register, $q$$Register);
fe66415573bf 6443505: Ideal() function for CmpLTMask
drchase
parents: 14833
diff changeset
  7976
    __ mov($y$$Register, $p$$Register);
fe66415573bf 6443505: Ideal() function for CmpLTMask
drchase
parents: 14833
diff changeset
  7977
    __ movcc(Assembler::greaterEqual, false, Assembler::icc, G0, $p$$Register);
fe66415573bf 6443505: Ideal() function for CmpLTMask
drchase
parents: 14833
diff changeset
  7978
  %}
fe66415573bf 6443505: Ideal() function for CmpLTMask
drchase
parents: 14833
diff changeset
  7979
  ins_pipe(ialu_reg_reg_ialu);
fe66415573bf 6443505: Ideal() function for CmpLTMask
drchase
parents: 14833
diff changeset
  7980
%}
10027
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  7981
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  7982
//-----------------------------------------------------------------
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  7983
// Direct raw moves between float and general registers using VIS3.
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  7984
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  7985
//  ins_pipe(faddF_reg);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  7986
instruct MoveF2I_reg_reg(iRegI dst, regF src) %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  7987
  predicate(UseVIS >= 3);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  7988
  match(Set dst (MoveF2I src));
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  7989
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  7990
  format %{ "MOVSTOUW $src,$dst\t! MoveF2I" %}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  7991
  ins_encode %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  7992
    __ movstouw($src$$FloatRegister, $dst$$Register);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  7993
  %}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  7994
  ins_pipe(ialu_reg_reg);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  7995
%}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  7996
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  7997
instruct MoveI2F_reg_reg(regF dst, iRegI src) %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  7998
  predicate(UseVIS >= 3);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  7999
  match(Set dst (MoveI2F src));
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8000
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8001
  format %{ "MOVWTOS $src,$dst\t! MoveI2F" %}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8002
  ins_encode %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8003
    __ movwtos($src$$Register, $dst$$FloatRegister);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8004
  %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8005
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8006
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8007
10027
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8008
instruct MoveD2L_reg_reg(iRegL dst, regD src) %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8009
  predicate(UseVIS >= 3);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8010
  match(Set dst (MoveD2L src));
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8011
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8012
  format %{ "MOVDTOX $src,$dst\t! MoveD2L" %}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8013
  ins_encode %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8014
    __ movdtox(as_DoubleFloatRegister($src$$reg), $dst$$Register);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8015
  %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8016
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8017
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8018
10027
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8019
instruct MoveL2D_reg_reg(regD dst, iRegL src) %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8020
  predicate(UseVIS >= 3);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8021
  match(Set dst (MoveL2D src));
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8022
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8023
  format %{ "MOVXTOD $src,$dst\t! MoveL2D" %}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8024
  ins_encode %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8025
    __ movxtod($src$$Register, as_DoubleFloatRegister($dst$$reg));
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8026
  %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8027
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8028
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8029
10027
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8030
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8031
// Raw moves between float and general registers using stack.
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8032
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8033
instruct MoveF2I_stack_reg(iRegI dst, stackSlotF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8034
  match(Set dst (MoveF2I 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
  format %{ "LDUW   $src,$dst\t! MoveF2I" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8039
  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
  8040
  ins_encode(simple_form3_mem_reg( src, dst ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8041
  ins_pipe(iload_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8042
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8043
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8044
instruct MoveI2F_stack_reg(regF dst, stackSlotI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8045
  match(Set dst (MoveI2F src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8046
  effect(DEF dst, USE src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8047
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8048
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8049
  format %{ "LDF    $src,$dst\t! MoveI2F" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8050
  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
  8051
  ins_encode(simple_form3_mem_reg(src, dst));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8052
  ins_pipe(floadF_stk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8053
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8054
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8055
instruct MoveD2L_stack_reg(iRegL dst, stackSlotD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8056
  match(Set dst (MoveD2L src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8057
  effect(DEF dst, USE src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8058
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8059
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8060
  format %{ "LDX    $src,$dst\t! MoveD2L" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8061
  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
  8062
  ins_encode(simple_form3_mem_reg( src, dst ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8063
  ins_pipe(iload_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8064
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8065
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8066
instruct MoveL2D_stack_reg(regD dst, stackSlotL src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8067
  match(Set dst (MoveL2D src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8068
  effect(DEF dst, USE src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8069
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8070
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8071
  format %{ "LDDF   $src,$dst\t! MoveL2D" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8072
  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
  8073
  ins_encode(simple_form3_mem_reg(src, dst));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8074
  ins_pipe(floadD_stk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8075
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8076
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8077
instruct MoveF2I_reg_stack(stackSlotI dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8078
  match(Set dst (MoveF2I src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8079
  effect(DEF dst, USE src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8080
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8081
10027
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8082
  format %{ "STF   $src,$dst\t! MoveF2I" %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8083
  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
  8084
  ins_encode(simple_form3_mem_reg(dst, src));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8085
  ins_pipe(fstoreF_stk_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8086
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8087
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8088
instruct MoveI2F_reg_stack(stackSlotF dst, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8089
  match(Set dst (MoveI2F src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8090
  effect(DEF dst, USE src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8091
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8092
10027
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8093
  format %{ "STW    $src,$dst\t! MoveI2F" %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8094
  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
  8095
  ins_encode(simple_form3_mem_reg( dst, src ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8096
  ins_pipe(istore_mem_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8097
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8098
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8099
instruct MoveD2L_reg_stack(stackSlotL dst, regD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8100
  match(Set dst (MoveD2L src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8101
  effect(DEF dst, USE src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8102
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8103
10027
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8104
  format %{ "STDF   $src,$dst\t! MoveD2L" %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8105
  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
  8106
  ins_encode(simple_form3_mem_reg(dst, src));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8107
  ins_pipe(fstoreD_stk_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8108
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8109
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8110
instruct MoveL2D_reg_stack(stackSlotD dst, iRegL src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8111
  match(Set dst (MoveL2D src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8112
  effect(DEF dst, USE src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8113
  ins_cost(MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8114
10027
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8115
  format %{ "STX    $src,$dst\t! MoveL2D" %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8116
  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
  8117
  ins_encode(simple_form3_mem_reg( dst, src ) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8118
  ins_pipe(istore_mem_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8119
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8120
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8121
10027
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8122
//----------Arithmetic Conversion Instructions---------------------------------
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8123
// The conversions operations are all Alpha sorted.  Please keep it that way!
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8124
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8125
instruct convD2F_reg(regF dst, regD src) %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8126
  match(Set dst (ConvD2F src));
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8127
  size(4);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8128
  format %{ "FDTOS  $src,$dst" %}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8129
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fdtos_opf);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8130
  ins_encode(form3_opf_rs2D_rdF(src, dst));
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8131
  ins_pipe(fcvtD2F);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8132
%}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8133
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8134
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8135
// Convert a double to an int in a float register.
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8136
// If the double is a NAN, stuff a zero in instead.
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8137
instruct convD2I_helper(regF dst, regD src, flagsRegF0 fcc0) %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8138
  effect(DEF dst, USE src, KILL fcc0);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8139
  format %{ "FCMPd  fcc0,$src,$src\t! check for NAN\n\t"
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8140
            "FBO,pt fcc0,skip\t! branch on ordered, predict taken\n\t"
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8141
            "FDTOI  $src,$dst\t! convert in delay slot\n\t"
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8142
            "FITOS  $dst,$dst\t! change NaN/max-int to valid float\n\t"
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8143
            "FSUBs  $dst,$dst,$dst\t! cleared only if nan\n"
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8144
      "skip:" %}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8145
  ins_encode(form_d2i_helper(src,dst));
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8146
  ins_pipe(fcvtD2I);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8147
%}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8148
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8149
instruct convD2I_stk(stackSlotI dst, regD src) %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8150
  match(Set dst (ConvD2I src));
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8151
  ins_cost(DEFAULT_COST*2 + MEMORY_REF_COST*2 + BRANCH_COST);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8152
  expand %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8153
    regF tmp;
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8154
    convD2I_helper(tmp, src);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8155
    regF_to_stkI(dst, tmp);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8156
  %}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8157
%}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8158
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8159
instruct convD2I_reg(iRegI dst, regD src) %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8160
  predicate(UseVIS >= 3);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8161
  match(Set dst (ConvD2I src));
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8162
  ins_cost(DEFAULT_COST*2 + BRANCH_COST);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8163
  expand %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8164
    regF tmp;
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8165
    convD2I_helper(tmp, src);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8166
    MoveF2I_reg_reg(dst, tmp);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8167
  %}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8168
%}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8169
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8170
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8171
// Convert a double to a long in a double register.
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8172
// If the double is a NAN, stuff a zero in instead.
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8173
instruct convD2L_helper(regD dst, regD src, flagsRegF0 fcc0) %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8174
  effect(DEF dst, USE src, KILL fcc0);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8175
  format %{ "FCMPd  fcc0,$src,$src\t! check for NAN\n\t"
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8176
            "FBO,pt fcc0,skip\t! branch on ordered, predict taken\n\t"
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8177
            "FDTOX  $src,$dst\t! convert in delay slot\n\t"
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8178
            "FXTOD  $dst,$dst\t! change NaN/max-long to valid double\n\t"
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8179
            "FSUBd  $dst,$dst,$dst\t! cleared only if nan\n"
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8180
      "skip:" %}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8181
  ins_encode(form_d2l_helper(src,dst));
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8182
  ins_pipe(fcvtD2L);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8183
%}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8184
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8185
instruct convD2L_stk(stackSlotL dst, regD src) %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8186
  match(Set dst (ConvD2L src));
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8187
  ins_cost(DEFAULT_COST*2 + MEMORY_REF_COST*2 + BRANCH_COST);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8188
  expand %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8189
    regD tmp;
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8190
    convD2L_helper(tmp, src);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8191
    regD_to_stkL(dst, tmp);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8192
  %}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8193
%}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8194
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8195
instruct convD2L_reg(iRegL dst, regD src) %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8196
  predicate(UseVIS >= 3);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8197
  match(Set dst (ConvD2L src));
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8198
  ins_cost(DEFAULT_COST*2 + BRANCH_COST);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8199
  expand %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8200
    regD tmp;
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8201
    convD2L_helper(tmp, src);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8202
    MoveD2L_reg_reg(dst, tmp);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8203
  %}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8204
%}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8205
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8206
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8207
instruct convF2D_reg(regD dst, regF src) %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8208
  match(Set dst (ConvF2D src));
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8209
  format %{ "FSTOD  $src,$dst" %}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8210
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fstod_opf);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8211
  ins_encode(form3_opf_rs2F_rdD(src, dst));
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8212
  ins_pipe(fcvtF2D);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8213
%}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8214
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8215
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8216
// Convert a float to an int in a float register.
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8217
// If the float is a NAN, stuff a zero in instead.
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8218
instruct convF2I_helper(regF dst, regF src, flagsRegF0 fcc0) %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8219
  effect(DEF dst, USE src, KILL fcc0);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8220
  format %{ "FCMPs  fcc0,$src,$src\t! check for NAN\n\t"
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8221
            "FBO,pt fcc0,skip\t! branch on ordered, predict taken\n\t"
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8222
            "FSTOI  $src,$dst\t! convert in delay slot\n\t"
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8223
            "FITOS  $dst,$dst\t! change NaN/max-int to valid float\n\t"
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8224
            "FSUBs  $dst,$dst,$dst\t! cleared only if nan\n"
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8225
      "skip:" %}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8226
  ins_encode(form_f2i_helper(src,dst));
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8227
  ins_pipe(fcvtF2I);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8228
%}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8229
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8230
instruct convF2I_stk(stackSlotI dst, regF src) %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8231
  match(Set dst (ConvF2I src));
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8232
  ins_cost(DEFAULT_COST*2 + MEMORY_REF_COST*2 + BRANCH_COST);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8233
  expand %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8234
    regF tmp;
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8235
    convF2I_helper(tmp, src);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8236
    regF_to_stkI(dst, tmp);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8237
  %}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8238
%}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8239
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8240
instruct convF2I_reg(iRegI dst, regF src) %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8241
  predicate(UseVIS >= 3);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8242
  match(Set dst (ConvF2I src));
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8243
  ins_cost(DEFAULT_COST*2 + BRANCH_COST);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8244
  expand %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8245
    regF tmp;
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8246
    convF2I_helper(tmp, src);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8247
    MoveF2I_reg_reg(dst, tmp);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8248
  %}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8249
%}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8250
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8251
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8252
// Convert a float to a long in a float register.
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8253
// If the float is a NAN, stuff a zero in instead.
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8254
instruct convF2L_helper(regD dst, regF src, flagsRegF0 fcc0) %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8255
  effect(DEF dst, USE src, KILL fcc0);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8256
  format %{ "FCMPs  fcc0,$src,$src\t! check for NAN\n\t"
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8257
            "FBO,pt fcc0,skip\t! branch on ordered, predict taken\n\t"
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8258
            "FSTOX  $src,$dst\t! convert in delay slot\n\t"
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8259
            "FXTOD  $dst,$dst\t! change NaN/max-long to valid double\n\t"
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8260
            "FSUBd  $dst,$dst,$dst\t! cleared only if nan\n"
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8261
      "skip:" %}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8262
  ins_encode(form_f2l_helper(src,dst));
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8263
  ins_pipe(fcvtF2L);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8264
%}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8265
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8266
instruct convF2L_stk(stackSlotL dst, regF src) %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8267
  match(Set dst (ConvF2L src));
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8268
  ins_cost(DEFAULT_COST*2 + MEMORY_REF_COST*2 + BRANCH_COST);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8269
  expand %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8270
    regD tmp;
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8271
    convF2L_helper(tmp, src);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8272
    regD_to_stkL(dst, tmp);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8273
  %}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8274
%}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8275
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8276
instruct convF2L_reg(iRegL dst, regF src) %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8277
  predicate(UseVIS >= 3);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8278
  match(Set dst (ConvF2L src));
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8279
  ins_cost(DEFAULT_COST*2 + BRANCH_COST);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8280
  expand %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8281
    regD tmp;
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8282
    convF2L_helper(tmp, src);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8283
    MoveD2L_reg_reg(dst, tmp);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8284
  %}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8285
%}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8286
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8287
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8288
instruct convI2D_helper(regD dst, regF tmp) %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8289
  effect(USE tmp, DEF dst);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8290
  format %{ "FITOD  $tmp,$dst" %}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8291
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fitod_opf);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8292
  ins_encode(form3_opf_rs2F_rdD(tmp, dst));
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8293
  ins_pipe(fcvtI2D);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8294
%}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8295
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8296
instruct convI2D_stk(stackSlotI src, regD dst) %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8297
  match(Set dst (ConvI2D src));
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8298
  ins_cost(DEFAULT_COST + MEMORY_REF_COST);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8299
  expand %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8300
    regF tmp;
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8301
    stkI_to_regF(tmp, src);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8302
    convI2D_helper(dst, tmp);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8303
  %}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8304
%}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8305
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8306
instruct convI2D_reg(regD_low dst, iRegI src) %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8307
  predicate(UseVIS >= 3);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8308
  match(Set dst (ConvI2D src));
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8309
  expand %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8310
    regF tmp;
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8311
    MoveI2F_reg_reg(tmp, src);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8312
    convI2D_helper(dst, tmp);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8313
  %}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8314
%}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8315
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8316
instruct convI2D_mem(regD_low dst, memory mem) %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8317
  match(Set dst (ConvI2D (LoadI mem)));
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8318
  ins_cost(DEFAULT_COST + MEMORY_REF_COST);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8319
  format %{ "LDF    $mem,$dst\n\t"
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8320
            "FITOD  $dst,$dst" %}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8321
  opcode(Assembler::ldf_op3, Assembler::fitod_opf);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8322
  ins_encode(simple_form3_mem_reg( mem, dst ), form3_convI2F(dst, dst));
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8323
  ins_pipe(floadF_mem);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8324
%}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8325
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8326
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8327
instruct convI2F_helper(regF dst, regF tmp) %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8328
  effect(DEF dst, USE tmp);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8329
  format %{ "FITOS  $tmp,$dst" %}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8330
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fitos_opf);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8331
  ins_encode(form3_opf_rs2F_rdF(tmp, dst));
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8332
  ins_pipe(fcvtI2F);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8333
%}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8334
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8335
instruct convI2F_stk(regF dst, stackSlotI src) %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8336
  match(Set dst (ConvI2F src));
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8337
  ins_cost(DEFAULT_COST + MEMORY_REF_COST);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8338
  expand %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8339
    regF tmp;
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8340
    stkI_to_regF(tmp,src);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8341
    convI2F_helper(dst, tmp);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8342
  %}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8343
%}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8344
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8345
instruct convI2F_reg(regF dst, iRegI src) %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8346
  predicate(UseVIS >= 3);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8347
  match(Set dst (ConvI2F src));
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8348
  ins_cost(DEFAULT_COST);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8349
  expand %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8350
    regF tmp;
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8351
    MoveI2F_reg_reg(tmp, src);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8352
    convI2F_helper(dst, tmp);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8353
  %}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8354
%}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8355
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8356
instruct convI2F_mem( regF dst, memory mem ) %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8357
  match(Set dst (ConvI2F (LoadI mem)));
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8358
  ins_cost(DEFAULT_COST + MEMORY_REF_COST);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8359
  format %{ "LDF    $mem,$dst\n\t"
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8360
            "FITOS  $dst,$dst" %}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8361
  opcode(Assembler::ldf_op3, Assembler::fitos_opf);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8362
  ins_encode(simple_form3_mem_reg( mem, dst ), form3_convI2F(dst, dst));
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8363
  ins_pipe(floadF_mem);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8364
%}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8365
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8366
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8367
instruct convI2L_reg(iRegL dst, iRegI src) %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8368
  match(Set dst (ConvI2L src));
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8369
  size(4);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8370
  format %{ "SRA    $src,0,$dst\t! int->long" %}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8371
  opcode(Assembler::sra_op3, Assembler::arith_op);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8372
  ins_encode( form3_rs1_rs2_rd( src, R_G0, dst ) );
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8373
  ins_pipe(ialu_reg_reg);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8374
%}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8375
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8376
// Zero-extend convert int to long
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8377
instruct convI2L_reg_zex(iRegL dst, iRegI src, immL_32bits mask ) %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8378
  match(Set dst (AndL (ConvI2L src) mask) );
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8379
  size(4);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8380
  format %{ "SRL    $src,0,$dst\t! zero-extend int to long" %}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8381
  opcode(Assembler::srl_op3, Assembler::arith_op);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8382
  ins_encode( form3_rs1_rs2_rd( src, R_G0, dst ) );
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8383
  ins_pipe(ialu_reg_reg);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8384
%}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8385
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8386
// Zero-extend long
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8387
instruct zerox_long(iRegL dst, iRegL src, immL_32bits mask ) %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8388
  match(Set dst (AndL src mask) );
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8389
  size(4);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8390
  format %{ "SRL    $src,0,$dst\t! zero-extend long" %}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8391
  opcode(Assembler::srl_op3, Assembler::arith_op);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8392
  ins_encode( form3_rs1_rs2_rd( src, R_G0, dst ) );
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8393
  ins_pipe(ialu_reg_reg);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8394
%}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8395
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8396
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8397
//-----------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8398
// Long to Double conversion using V8 opcodes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8399
// Still useful because cheetah traps and becomes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8400
// amazingly slow for some common numbers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8401
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8402
// Magic constant, 0x43300000
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8403
instruct loadConI_x43300000(iRegI dst) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8404
  effect(DEF dst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8405
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8406
  format %{ "SETHI  HI(0x43300000),$dst\t! 2^52" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8407
  ins_encode(SetHi22(0x43300000, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8408
  ins_pipe(ialu_none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8409
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8410
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8411
// Magic constant, 0x41f00000
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8412
instruct loadConI_x41f00000(iRegI dst) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8413
  effect(DEF dst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8414
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8415
  format %{ "SETHI  HI(0x41f00000),$dst\t! 2^32" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8416
  ins_encode(SetHi22(0x41f00000, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8417
  ins_pipe(ialu_none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8418
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8419
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8420
// Construct a double from two float halves
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8421
instruct regDHi_regDLo_to_regD(regD_low dst, regD_low src1, regD_low src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8422
  effect(DEF dst, USE src1, USE src2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8423
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8424
  format %{ "FMOVS  $src1.hi,$dst.hi\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8425
            "FMOVS  $src2.lo,$dst.lo" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8426
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fmovs_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8427
  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
  8428
  ins_pipe(faddD_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8429
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8430
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8431
// Convert integer in high half of a double register (in the lower half of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8432
// the double register file) to double
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8433
instruct convI2D_regDHi_regD(regD dst, regD_low src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8434
  effect(DEF dst, USE src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8435
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8436
  format %{ "FITOD  $src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8437
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fitod_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8438
  ins_encode(form3_opf_rs2D_rdD(src, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8439
  ins_pipe(fcvtLHi2D);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8440
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8441
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8442
// Add float double precision
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8443
instruct addD_regD_regD(regD dst, regD src1, regD src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8444
  effect(DEF dst, USE src1, USE src2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8445
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8446
  format %{ "FADDD  $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8447
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::faddd_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8448
  ins_encode(form3_opf_rs1D_rs2D_rdD(src1, src2, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8449
  ins_pipe(faddD_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8450
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8451
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8452
// Sub float double precision
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8453
instruct subD_regD_regD(regD dst, regD src1, regD src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8454
  effect(DEF dst, USE src1, USE src2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8455
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8456
  format %{ "FSUBD  $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8457
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fsubd_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8458
  ins_encode(form3_opf_rs1D_rs2D_rdD(src1, src2, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8459
  ins_pipe(faddD_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8460
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8461
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8462
// Mul float double precision
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8463
instruct mulD_regD_regD(regD dst, regD src1, regD src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8464
  effect(DEF dst, USE src1, USE src2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8465
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8466
  format %{ "FMULD  $src1,$src2,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8467
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fmuld_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8468
  ins_encode(form3_opf_rs1D_rs2D_rdD(src1, src2, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8469
  ins_pipe(fmulD_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
// Long to Double conversion using fast fxtof
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8473
instruct convL2D_helper(regD dst, regD tmp) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8474
  effect(DEF dst, USE tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8475
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8476
  format %{ "FXTOD  $tmp,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8477
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fxtod_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8478
  ins_encode(form3_opf_rs2D_rdD(tmp, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8479
  ins_pipe(fcvtL2D);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8480
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8481
10027
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8482
instruct convL2D_stk_fast_fxtof(regD dst, stackSlotL src) %{
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8483
  match(Set dst (ConvL2D src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8484
  ins_cost(DEFAULT_COST + 3 * MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8485
  expand %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8486
    regD tmp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8487
    stkL_to_regD(tmp, src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8488
    convL2D_helper(dst, tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8489
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8490
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8491
10027
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8492
instruct convL2D_reg(regD dst, iRegL src) %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8493
  predicate(UseVIS >= 3);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8494
  match(Set dst (ConvL2D src));
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8495
  expand %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8496
    regD tmp;
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8497
    MoveL2D_reg_reg(tmp, src);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8498
    convL2D_helper(dst, tmp);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8499
  %}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8500
%}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8501
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8502
// Long to Float conversion using fast fxtof
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8503
instruct convL2F_helper(regF dst, regD tmp) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8504
  effect(DEF dst, USE tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8505
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8506
  format %{ "FXTOS  $tmp,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8507
  opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fxtos_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8508
  ins_encode(form3_opf_rs2D_rdF(tmp, dst));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8509
  ins_pipe(fcvtL2F);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8510
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8511
10027
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8512
instruct convL2F_stk_fast_fxtof(regF dst, stackSlotL src) %{
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8513
  match(Set dst (ConvL2F src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8514
  ins_cost(DEFAULT_COST + MEMORY_REF_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8515
  expand %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8516
    regD tmp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8517
    stkL_to_regD(tmp, src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8518
    convL2F_helper(dst, tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8519
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8520
%}
10027
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8521
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8522
instruct convL2F_reg(regF dst, iRegL src) %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8523
  predicate(UseVIS >= 3);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8524
  match(Set dst (ConvL2F src));
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8525
  ins_cost(DEFAULT_COST);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8526
  expand %{
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8527
    regD tmp;
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8528
    MoveL2D_reg_reg(tmp, src);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8529
    convL2F_helper(dst, tmp);
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8530
  %}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8531
%}
20cd71f29262 7059034: Use movxtod/movdtox on T4
kvn
parents: 8868
diff changeset
  8532
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8533
//-----------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8534
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8535
instruct convL2I_reg(iRegI dst, iRegL src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8536
  match(Set dst (ConvL2I src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8537
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8538
  format %{ "SRA    $src,R_G0,$dst\t! long->int" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8539
  ins_encode( form3_rs1_rd_signextend_lo1( src, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8540
  ins_pipe(ialu_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8541
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8542
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8543
// Register Shift Right Immediate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8544
instruct shrL_reg_imm6_L2I(iRegI dst, iRegL src, immI_32_63 cnt) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8545
  match(Set dst (ConvL2I (RShiftL src cnt)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8546
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8547
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8548
  format %{ "SRAX   $src,$cnt,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8549
  opcode(Assembler::srax_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8550
  ins_encode( form3_sd_rs1_imm6_rd( src, cnt, dst ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8551
  ins_pipe(ialu_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8552
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8553
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8554
//----------Control Flow Instructions------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8555
// Compare Instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8556
// Compare Integers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8557
instruct compI_iReg(flagsReg icc, iRegI op1, iRegI op2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8558
  match(Set icc (CmpI op1 op2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8559
  effect( DEF icc, USE op1, USE op2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8560
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8561
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8562
  format %{ "CMP    $op1,$op2" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8563
  opcode(Assembler::subcc_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8564
  ins_encode( form3_rs1_rs2_rd( op1, op2, R_G0 ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8565
  ins_pipe(ialu_cconly_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8566
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8567
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8568
instruct compU_iReg(flagsRegU icc, iRegI op1, iRegI op2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8569
  match(Set icc (CmpU op1 op2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8570
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8571
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8572
  format %{ "CMP    $op1,$op2\t! unsigned" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8573
  opcode(Assembler::subcc_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8574
  ins_encode( form3_rs1_rs2_rd( op1, op2, R_G0 ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8575
  ins_pipe(ialu_cconly_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8576
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8577
45965
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  8578
instruct compUL_iReg(flagsRegUL xcc, iRegL op1, iRegL op2) %{
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  8579
  match(Set xcc (CmpUL op1 op2));
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  8580
  effect(DEF xcc, USE op1, USE op2);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  8581
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  8582
  size(4);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  8583
  format %{ "CMP    $op1,$op2\t! unsigned long" %}
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  8584
  opcode(Assembler::subcc_op3, Assembler::arith_op);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  8585
  ins_encode(form3_rs1_rs2_rd(op1, op2, R_G0));
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  8586
  ins_pipe(ialu_cconly_reg_reg);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  8587
%}
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  8588
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8589
instruct compI_iReg_imm13(flagsReg icc, iRegI op1, immI13 op2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8590
  match(Set icc (CmpI op1 op2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8591
  effect( DEF icc, USE op1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8592
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8593
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8594
  format %{ "CMP    $op1,$op2" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8595
  opcode(Assembler::subcc_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8596
  ins_encode( form3_rs1_simm13_rd( op1, op2, R_G0 ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8597
  ins_pipe(ialu_cconly_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8598
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8599
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8600
instruct testI_reg_reg( flagsReg icc, iRegI op1, iRegI op2, immI0 zero ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8601
  match(Set icc (CmpI (AndI op1 op2) zero));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8602
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8603
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8604
  format %{ "BTST   $op2,$op1" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8605
  opcode(Assembler::andcc_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8606
  ins_encode( form3_rs1_rs2_rd( op1, op2, R_G0 ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8607
  ins_pipe(ialu_cconly_reg_reg_zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8608
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8609
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8610
instruct testI_reg_imm( flagsReg icc, iRegI op1, immI13 op2, immI0 zero ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8611
  match(Set icc (CmpI (AndI op1 op2) zero));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8612
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8613
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8614
  format %{ "BTST   $op2,$op1" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8615
  opcode(Assembler::andcc_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8616
  ins_encode( form3_rs1_simm13_rd( op1, op2, R_G0 ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8617
  ins_pipe(ialu_cconly_reg_imm_zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8618
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8619
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8620
instruct compL_reg_reg(flagsRegL xcc, iRegL op1, iRegL op2 ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8621
  match(Set xcc (CmpL op1 op2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8622
  effect( DEF xcc, USE op1, USE op2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8623
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8624
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8625
  format %{ "CMP    $op1,$op2\t\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8626
  opcode(Assembler::subcc_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8627
  ins_encode( form3_rs1_rs2_rd( op1, op2, R_G0 ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8628
  ins_pipe(ialu_cconly_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8629
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8630
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8631
instruct compL_reg_con(flagsRegL xcc, iRegL op1, immL13 con) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8632
  match(Set xcc (CmpL op1 con));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8633
  effect( DEF xcc, USE op1, USE con );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8634
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8635
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8636
  format %{ "CMP    $op1,$con\t\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8637
  opcode(Assembler::subcc_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8638
  ins_encode( form3_rs1_simm13_rd( op1, con, R_G0 ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8639
  ins_pipe(ialu_cconly_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8640
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8641
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8642
instruct testL_reg_reg(flagsRegL xcc, iRegL op1, iRegL op2, immL0 zero) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8643
  match(Set xcc (CmpL (AndL op1 op2) zero));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8644
  effect( DEF xcc, USE op1, USE op2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8645
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8646
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8647
  format %{ "BTST   $op1,$op2\t\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8648
  opcode(Assembler::andcc_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8649
  ins_encode( form3_rs1_rs2_rd( op1, op2, R_G0 ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8650
  ins_pipe(ialu_cconly_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8651
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8652
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8653
// useful for checking the alignment of a pointer:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8654
instruct testL_reg_con(flagsRegL xcc, iRegL op1, immL13 con, immL0 zero) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8655
  match(Set xcc (CmpL (AndL op1 con) zero));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8656
  effect( DEF xcc, USE op1, USE con );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8657
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8658
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8659
  format %{ "BTST   $op1,$con\t\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8660
  opcode(Assembler::andcc_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8661
  ins_encode( form3_rs1_simm13_rd( op1, con, R_G0 ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8662
  ins_pipe(ialu_cconly_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8663
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8664
22513
dc47bc8ecb75 8031743: C2: loadI2L_immI broken for negative memory values
iveresov
parents: 22512
diff changeset
  8665
instruct compU_iReg_imm13(flagsRegU icc, iRegI op1, immU12 op2 ) %{
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8666
  match(Set icc (CmpU op1 op2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8667
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8668
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8669
  format %{ "CMP    $op1,$op2\t! unsigned" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8670
  opcode(Assembler::subcc_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8671
  ins_encode( form3_rs1_simm13_rd( op1, op2, R_G0 ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8672
  ins_pipe(ialu_cconly_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8673
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8674
45965
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  8675
instruct compUL_iReg_imm13(flagsRegUL xcc, iRegL op1, immUL12 op2) %{
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  8676
  match(Set xcc (CmpUL op1 op2));
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  8677
  effect(DEF xcc, USE op1, USE op2);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  8678
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  8679
  size(4);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  8680
  format %{ "CMP    $op1,$op2\t! unsigned long" %}
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  8681
  opcode(Assembler::subcc_op3, Assembler::arith_op);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  8682
  ins_encode(form3_rs1_simm13_rd(op1, op2, R_G0));
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  8683
  ins_pipe(ialu_cconly_reg_imm);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  8684
%}
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  8685
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8686
// Compare Pointers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8687
instruct compP_iRegP(flagsRegP pcc, iRegP op1, iRegP op2 ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8688
  match(Set pcc (CmpP op1 op2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8689
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8690
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8691
  format %{ "CMP    $op1,$op2\t! ptr" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8692
  opcode(Assembler::subcc_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8693
  ins_encode( form3_rs1_rs2_rd( op1, op2, R_G0 ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8694
  ins_pipe(ialu_cconly_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8695
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8696
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8697
instruct compP_iRegP_imm13(flagsRegP pcc, iRegP op1, immP13 op2 ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8698
  match(Set pcc (CmpP op1 op2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8699
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8700
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8701
  format %{ "CMP    $op1,$op2\t! ptr" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8702
  opcode(Assembler::subcc_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8703
  ins_encode( form3_rs1_simm13_rd( op1, op2, R_G0 ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8704
  ins_pipe(ialu_cconly_reg_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8705
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8706
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8707
// Compare Narrow oops
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8708
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
  8709
  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
  8710
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8711
  size(4);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8712
  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
  8713
  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
  8714
  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
  8715
  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
  8716
%}
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8717
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8718
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
  8719
  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
  8720
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8721
  size(4);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8722
  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
  8723
  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
  8724
  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
  8725
  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
  8726
%}
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  8727
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8728
//----------Max and Min--------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8729
// Min Instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8730
// Conditional move for min
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8731
instruct cmovI_reg_lt( iRegI op2, iRegI op1, flagsReg icc ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8732
  effect( USE_DEF op2, USE op1, USE icc );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8733
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8734
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8735
  format %{ "MOVlt  icc,$op1,$op2\t! min" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8736
  opcode(Assembler::less);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8737
  ins_encode( enc_cmov_reg_minmax(op2,op1) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8738
  ins_pipe(ialu_reg_flags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8739
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8740
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8741
// Min Register with Register.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8742
instruct minI_eReg(iRegI op1, iRegI op2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8743
  match(Set op2 (MinI op1 op2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8744
  ins_cost(DEFAULT_COST*2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8745
  expand %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8746
    flagsReg icc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8747
    compI_iReg(icc,op1,op2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8748
    cmovI_reg_lt(op2,op1,icc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8749
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8750
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8751
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8752
// Max Instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8753
// Conditional move for max
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8754
instruct cmovI_reg_gt( iRegI op2, iRegI op1, flagsReg icc ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8755
  effect( USE_DEF op2, USE op1, USE icc );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8756
  format %{ "MOVgt  icc,$op1,$op2\t! max" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8757
  opcode(Assembler::greater);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8758
  ins_encode( enc_cmov_reg_minmax(op2,op1) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8759
  ins_pipe(ialu_reg_flags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8760
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8761
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8762
// Max Register with Register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8763
instruct maxI_eReg(iRegI op1, iRegI op2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8764
  match(Set op2 (MaxI op1 op2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8765
  ins_cost(DEFAULT_COST*2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8766
  expand %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8767
    flagsReg icc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8768
    compI_iReg(icc,op1,op2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8769
    cmovI_reg_gt(op2,op1,icc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8770
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8771
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8772
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8773
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8774
//----------Float Compares----------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8775
// Compare floating, generate condition code
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8776
instruct cmpF_cc(flagsRegF fcc, regF src1, regF src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8777
  match(Set fcc (CmpF src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8778
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8779
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8780
  format %{ "FCMPs  $fcc,$src1,$src2" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8781
  opcode(Assembler::fpop2_op3, Assembler::arith_op, Assembler::fcmps_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8782
  ins_encode( form3_opf_rs1F_rs2F_fcc( src1, src2, fcc ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8783
  ins_pipe(faddF_fcc_reg_reg_zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8784
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8785
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8786
instruct cmpD_cc(flagsRegF fcc, regD src1, regD src2) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8787
  match(Set fcc (CmpD src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8788
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8789
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8790
  format %{ "FCMPd  $fcc,$src1,$src2" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8791
  opcode(Assembler::fpop2_op3, Assembler::arith_op, Assembler::fcmpd_opf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8792
  ins_encode( form3_opf_rs1D_rs2D_fcc( src1, src2, fcc ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8793
  ins_pipe(faddD_fcc_reg_reg_zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8794
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8795
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8796
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8797
// Compare floating, generate -1,0,1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8798
instruct cmpF_reg(iRegI dst, regF src1, regF src2, flagsRegF0 fcc0) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8799
  match(Set dst (CmpF3 src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8800
  effect(KILL fcc0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8801
  ins_cost(DEFAULT_COST*3+BRANCH_COST*3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8802
  format %{ "fcmpl  $dst,$src1,$src2" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8803
  // Primary = float
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8804
  opcode( true );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8805
  ins_encode( floating_cmp( dst, src1, src2 ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8806
  ins_pipe( floating_cmp );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8807
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8808
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8809
instruct cmpD_reg(iRegI dst, regD src1, regD src2, flagsRegF0 fcc0) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8810
  match(Set dst (CmpD3 src1 src2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8811
  effect(KILL fcc0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8812
  ins_cost(DEFAULT_COST*3+BRANCH_COST*3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8813
  format %{ "dcmpl  $dst,$src1,$src2" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8814
  // Primary = double (not float)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8815
  opcode( false );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8816
  ins_encode( floating_cmp( dst, src1, src2 ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8817
  ins_pipe( floating_cmp );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8818
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8819
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8820
//----------Branches---------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8821
// Jump
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8822
// (compare 'operand indIndex' and 'instruct addP_reg_reg' above)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8823
instruct jumpXtnd(iRegX switch_val, o7RegI table) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8824
  match(Jump switch_val);
11444
8a2619fd3fca 7110824: ctw/jarfiles/GUI3rdParty_jar/ob_mask_DateField crashes VM
kvn
parents: 11431
diff changeset
  8825
  effect(TEMP table);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8826
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8827
  ins_cost(350);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8828
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  8829
  format %{  "ADD    $constanttablebase, $constantoffset, O7\n\t"
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  8830
             "LD     [O7 + $switch_val], O7\n\t"
11190
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  8831
             "JUMP   O7" %}
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  8832
  ins_encode %{
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  8833
    // Calculate table address into a register.
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  8834
    Register table_reg;
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  8835
    Register label_reg = O7;
11190
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  8836
    // If we are calculating the size of this instruction don't trust
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  8837
    // zero offsets because they might change when
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  8838
    // MachConstantBaseNode decides to optimize the constant table
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  8839
    // base.
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10971
diff changeset
  8840
    if ((constant_offset() == 0) && !Compile::current()->in_scratch_emit_size()) {
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  8841
      table_reg = $constanttablebase;
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  8842
    } else {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  8843
      table_reg = O7;
7437
270cb0bf17af 7004925: CTW: assert(nbits == 32 || -(1 << nbits-1) <= x && x < ( 1 << nbits-1)) failed: value out of range
kvn
parents: 7433
diff changeset
  8844
      RegisterOrConstant con_offset = __ ensure_simm13_or_reg($constantoffset, O7);
270cb0bf17af 7004925: CTW: assert(nbits == 32 || -(1 << nbits-1) <= x && x < ( 1 << nbits-1)) failed: value out of range
kvn
parents: 7433
diff changeset
  8845
      __ add($constanttablebase, con_offset, table_reg);
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  8846
    }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  8847
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  8848
    // Jump to base address + switch value
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  8849
    __ ld_ptr(table_reg, $switch_val$$Register, label_reg);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  8850
    __ jmp(label_reg, G0);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  8851
    __ delayed()->nop();
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7116
diff changeset
  8852
  %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8853
  ins_pipe(ialu_reg_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8854
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8855
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8856
// Direct Branch.  Use V8 version with longer range.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8857
instruct branch(label labl) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8858
  match(Goto);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8859
  effect(USE labl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8860
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8861
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8862
  ins_cost(BRANCH_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8863
  format %{ "BA     $labl" %}
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  8864
  ins_encode %{
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  8865
    Label* L = $labl$$label;
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  8866
    __ ba(*L);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  8867
    __ delayed()->nop();
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  8868
  %}
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  8869
  ins_avoid_back_to_back(AVOID_BEFORE);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8870
  ins_pipe(br);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8871
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8872
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  8873
// Direct Branch, short with no delay slot
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  8874
instruct branch_short(label labl) %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  8875
  match(Goto);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  8876
  predicate(UseCBCond);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  8877
  effect(USE labl);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  8878
46596
a7c9706d25a9 8144448: Avoid placing CTI immediately following or preceding RDPC instruction
neliasso
parents: 46595
diff changeset
  8879
  size(4); // Assuming no NOP inserted.
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  8880
  ins_cost(BRANCH_COST);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  8881
  format %{ "BA     $labl\t! short branch" %}
22832
03720a5b7595 8024344: PPC64 (part 112): C argument in register AND stack slot.
goetz
parents: 19319
diff changeset
  8882
  ins_encode %{
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  8883
    Label* L = $labl$$label;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  8884
    assert(__ use_cbcond(*L), "back to back cbcond");
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  8885
    __ ba_short(*L);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  8886
  %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  8887
  ins_short_branch(1);
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  8888
  ins_avoid_back_to_back(AVOID_BEFORE_AND_AFTER);
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  8889
  ins_pipe(cbcond_reg_imm);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  8890
%}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  8891
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8892
// Conditional Direct Branch
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8893
instruct branchCon(cmpOp cmp, flagsReg icc, label labl) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8894
  match(If cmp icc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8895
  effect(USE labl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8896
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8897
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8898
  ins_cost(BRANCH_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8899
  format %{ "BP$cmp   $icc,$labl" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8900
  // Prim = bits 24-22, Secnd = bits 31-30
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8901
  ins_encode( enc_bp( labl, cmp, icc ) );
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  8902
  ins_avoid_back_to_back(AVOID_BEFORE);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8903
  ins_pipe(br_cc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8904
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8905
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8906
instruct branchConU(cmpOpU cmp, flagsRegU icc, label labl) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8907
  match(If cmp icc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8908
  effect(USE labl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8909
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  8910
  ins_cost(BRANCH_COST);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8911
  format %{ "BP$cmp  $icc,$labl" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8912
  // Prim = bits 24-22, Secnd = bits 31-30
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8913
  ins_encode( enc_bp( labl, cmp, icc ) );
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  8914
  ins_avoid_back_to_back(AVOID_BEFORE);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8915
  ins_pipe(br_cc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8916
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8917
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8918
instruct branchConP(cmpOpP cmp, flagsRegP pcc, label labl) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8919
  match(If cmp pcc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8920
  effect(USE labl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8921
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8922
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8923
  ins_cost(BRANCH_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8924
  format %{ "BP$cmp  $pcc,$labl" %}
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  8925
  ins_encode %{
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  8926
    Label* L = $labl$$label;
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  8927
    Assembler::Predict predict_taken =
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  8928
      cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  8929
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  8930
    __ bp( (Assembler::Condition)($cmp$$cmpcode), false, Assembler::ptr_cc, predict_taken, *L);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  8931
    __ delayed()->nop();
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  8932
  %}
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  8933
  ins_avoid_back_to_back(AVOID_BEFORE);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8934
  ins_pipe(br_cc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8935
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8936
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8937
instruct branchConF(cmpOpF cmp, flagsRegF fcc, label labl) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8938
  match(If cmp fcc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8939
  effect(USE labl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8940
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8941
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8942
  ins_cost(BRANCH_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8943
  format %{ "FBP$cmp $fcc,$labl" %}
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  8944
  ins_encode %{
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  8945
    Label* L = $labl$$label;
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  8946
    Assembler::Predict predict_taken =
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  8947
      cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  8948
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  8949
    __ fbp( (Assembler::Condition)($cmp$$cmpcode), false, (Assembler::CC)($fcc$$reg), predict_taken, *L);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  8950
    __ delayed()->nop();
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  8951
  %}
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  8952
  ins_avoid_back_to_back(AVOID_BEFORE);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8953
  ins_pipe(br_fcc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8954
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8955
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8956
instruct branchLoopEnd(cmpOp cmp, flagsReg icc, label labl) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8957
  match(CountedLoopEnd cmp icc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8958
  effect(USE labl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8959
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8960
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8961
  ins_cost(BRANCH_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8962
  format %{ "BP$cmp   $icc,$labl\t! Loop end" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8963
  // Prim = bits 24-22, Secnd = bits 31-30
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8964
  ins_encode( enc_bp( labl, cmp, icc ) );
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  8965
  ins_avoid_back_to_back(AVOID_BEFORE);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8966
  ins_pipe(br_cc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8967
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8968
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8969
instruct branchLoopEndU(cmpOpU cmp, flagsRegU icc, label labl) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8970
  match(CountedLoopEnd cmp icc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8971
  effect(USE labl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8972
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8973
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8974
  ins_cost(BRANCH_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8975
  format %{ "BP$cmp  $icc,$labl\t! Loop end" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8976
  // Prim = bits 24-22, Secnd = bits 31-30
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8977
  ins_encode( enc_bp( labl, cmp, icc ) );
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  8978
  ins_avoid_back_to_back(AVOID_BEFORE);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8979
  ins_pipe(br_cc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8980
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  8981
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  8982
// Compare and branch instructions
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  8983
instruct cmpI_reg_branch(cmpOp cmp, iRegI op1, iRegI op2, label labl, flagsReg icc) %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  8984
  match(If cmp (CmpI op1 op2));
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  8985
  effect(USE labl, KILL icc);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  8986
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  8987
  size(12);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  8988
  ins_cost(BRANCH_COST);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  8989
  format %{ "CMP    $op1,$op2\t! int\n\t"
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  8990
            "BP$cmp   $labl" %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  8991
  ins_encode %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  8992
    Label* L = $labl$$label;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  8993
    Assembler::Predict predict_taken =
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  8994
      cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  8995
    __ cmp($op1$$Register, $op2$$Register);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  8996
    __ bp((Assembler::Condition)($cmp$$cmpcode), false, Assembler::icc, predict_taken, *L);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  8997
    __ delayed()->nop();
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  8998
  %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  8999
  ins_pipe(cmp_br_reg_reg);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9000
%}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9001
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9002
instruct cmpI_imm_branch(cmpOp cmp, iRegI op1, immI5 op2, label labl, flagsReg icc) %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9003
  match(If cmp (CmpI op1 op2));
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9004
  effect(USE labl, KILL icc);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9005
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9006
  size(12);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9007
  ins_cost(BRANCH_COST);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9008
  format %{ "CMP    $op1,$op2\t! int\n\t"
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9009
            "BP$cmp   $labl" %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9010
  ins_encode %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9011
    Label* L = $labl$$label;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9012
    Assembler::Predict predict_taken =
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9013
      cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9014
    __ cmp($op1$$Register, $op2$$constant);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9015
    __ bp((Assembler::Condition)($cmp$$cmpcode), false, Assembler::icc, predict_taken, *L);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9016
    __ delayed()->nop();
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9017
  %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9018
  ins_pipe(cmp_br_reg_imm);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9019
%}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9020
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9021
instruct cmpU_reg_branch(cmpOpU cmp, iRegI op1, iRegI op2, label labl, flagsRegU icc) %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9022
  match(If cmp (CmpU op1 op2));
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9023
  effect(USE labl, KILL icc);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9024
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9025
  size(12);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9026
  ins_cost(BRANCH_COST);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9027
  format %{ "CMP    $op1,$op2\t! unsigned\n\t"
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9028
            "BP$cmp  $labl" %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9029
  ins_encode %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9030
    Label* L = $labl$$label;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9031
    Assembler::Predict predict_taken =
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9032
      cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9033
    __ cmp($op1$$Register, $op2$$Register);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9034
    __ bp((Assembler::Condition)($cmp$$cmpcode), false, Assembler::icc, predict_taken, *L);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9035
    __ delayed()->nop();
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9036
  %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9037
  ins_pipe(cmp_br_reg_reg);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9038
%}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9039
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9040
instruct cmpU_imm_branch(cmpOpU cmp, iRegI op1, immI5 op2, label labl, flagsRegU icc) %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9041
  match(If cmp (CmpU op1 op2));
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9042
  effect(USE labl, KILL icc);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9043
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9044
  size(12);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9045
  ins_cost(BRANCH_COST);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9046
  format %{ "CMP    $op1,$op2\t! unsigned\n\t"
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9047
            "BP$cmp  $labl" %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9048
  ins_encode %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9049
    Label* L = $labl$$label;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9050
    Assembler::Predict predict_taken =
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9051
      cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9052
    __ cmp($op1$$Register, $op2$$constant);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9053
    __ bp((Assembler::Condition)($cmp$$cmpcode), false, Assembler::icc, predict_taken, *L);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9054
    __ delayed()->nop();
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9055
  %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9056
  ins_pipe(cmp_br_reg_imm);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9057
%}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9058
45965
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9059
instruct cmpUL_reg_branch(cmpOpU cmp, iRegL op1, iRegL op2, label labl, flagsRegUL xcc) %{
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9060
  match(If cmp (CmpUL op1 op2));
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9061
  effect(USE labl, KILL xcc);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9062
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9063
  size(12);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9064
  ins_cost(BRANCH_COST);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9065
  format %{ "CMP    $op1,$op2\t! unsigned long\n\t"
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9066
            "BP$cmp   $labl" %}
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9067
  ins_encode %{
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9068
    Label* L = $labl$$label;
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9069
    Assembler::Predict predict_taken =
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9070
      cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9071
    __ cmp($op1$$Register, $op2$$Register);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9072
    __ bp((Assembler::Condition)($cmp$$cmpcode), false, Assembler::xcc, predict_taken, *L);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9073
    __ delayed()->nop();
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9074
  %}
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9075
  ins_pipe(cmp_br_reg_reg);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9076
%}
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9077
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9078
instruct cmpUL_imm_branch(cmpOpU cmp, iRegL op1, immL5 op2, label labl, flagsRegUL xcc) %{
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9079
  match(If cmp (CmpUL op1 op2));
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9080
  effect(USE labl, KILL xcc);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9081
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9082
  size(12);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9083
  ins_cost(BRANCH_COST);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9084
  format %{ "CMP    $op1,$op2\t! unsigned long\n\t"
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9085
            "BP$cmp   $labl" %}
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9086
  ins_encode %{
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9087
    Label* L = $labl$$label;
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9088
    Assembler::Predict predict_taken =
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9089
      cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9090
    __ cmp($op1$$Register, $op2$$constant);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9091
    __ bp((Assembler::Condition)($cmp$$cmpcode), false, Assembler::xcc, predict_taken, *L);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9092
    __ delayed()->nop();
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9093
  %}
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9094
  ins_pipe(cmp_br_reg_imm);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9095
%}
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9096
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9097
instruct cmpL_reg_branch(cmpOp cmp, iRegL op1, iRegL op2, label labl, flagsRegL xcc) %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9098
  match(If cmp (CmpL op1 op2));
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9099
  effect(USE labl, KILL xcc);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9100
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9101
  size(12);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9102
  ins_cost(BRANCH_COST);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9103
  format %{ "CMP    $op1,$op2\t! long\n\t"
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9104
            "BP$cmp   $labl" %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9105
  ins_encode %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9106
    Label* L = $labl$$label;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9107
    Assembler::Predict predict_taken =
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9108
      cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9109
    __ cmp($op1$$Register, $op2$$Register);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9110
    __ bp((Assembler::Condition)($cmp$$cmpcode), false, Assembler::xcc, predict_taken, *L);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9111
    __ delayed()->nop();
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9112
  %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9113
  ins_pipe(cmp_br_reg_reg);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9114
%}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9115
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9116
instruct cmpL_imm_branch(cmpOp cmp, iRegL op1, immL5 op2, label labl, flagsRegL xcc) %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9117
  match(If cmp (CmpL op1 op2));
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9118
  effect(USE labl, KILL xcc);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9119
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9120
  size(12);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9121
  ins_cost(BRANCH_COST);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9122
  format %{ "CMP    $op1,$op2\t! long\n\t"
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9123
            "BP$cmp   $labl" %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9124
  ins_encode %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9125
    Label* L = $labl$$label;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9126
    Assembler::Predict predict_taken =
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9127
      cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9128
    __ cmp($op1$$Register, $op2$$constant);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9129
    __ bp((Assembler::Condition)($cmp$$cmpcode), false, Assembler::xcc, predict_taken, *L);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9130
    __ delayed()->nop();
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9131
  %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9132
  ins_pipe(cmp_br_reg_imm);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9133
%}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9134
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9135
// Compare Pointers and branch
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9136
instruct cmpP_reg_branch(cmpOpP cmp, iRegP op1, iRegP op2, label labl, flagsRegP pcc) %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9137
  match(If cmp (CmpP op1 op2));
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9138
  effect(USE labl, KILL pcc);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9139
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9140
  size(12);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9141
  ins_cost(BRANCH_COST);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9142
  format %{ "CMP    $op1,$op2\t! ptr\n\t"
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9143
            "B$cmp   $labl" %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9144
  ins_encode %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9145
    Label* L = $labl$$label;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9146
    Assembler::Predict predict_taken =
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9147
      cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9148
    __ cmp($op1$$Register, $op2$$Register);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9149
    __ bp((Assembler::Condition)($cmp$$cmpcode), false, Assembler::ptr_cc, predict_taken, *L);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9150
    __ delayed()->nop();
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9151
  %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9152
  ins_pipe(cmp_br_reg_reg);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9153
%}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9154
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9155
instruct cmpP_null_branch(cmpOpP cmp, iRegP op1, immP0 null, label labl, flagsRegP pcc) %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9156
  match(If cmp (CmpP op1 null));
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9157
  effect(USE labl, KILL pcc);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9158
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9159
  size(12);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9160
  ins_cost(BRANCH_COST);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9161
  format %{ "CMP    $op1,0\t! ptr\n\t"
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9162
            "B$cmp   $labl" %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9163
  ins_encode %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9164
    Label* L = $labl$$label;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9165
    Assembler::Predict predict_taken =
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9166
      cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9167
    __ cmp($op1$$Register, G0);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9168
    // bpr() is not used here since it has shorter distance.
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9169
    __ bp((Assembler::Condition)($cmp$$cmpcode), false, Assembler::ptr_cc, predict_taken, *L);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9170
    __ delayed()->nop();
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9171
  %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9172
  ins_pipe(cmp_br_reg_reg);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9173
%}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9174
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9175
instruct cmpN_reg_branch(cmpOp cmp, iRegN op1, iRegN op2, label labl, flagsReg icc) %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9176
  match(If cmp (CmpN op1 op2));
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9177
  effect(USE labl, KILL icc);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9178
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9179
  size(12);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9180
  ins_cost(BRANCH_COST);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9181
  format %{ "CMP    $op1,$op2\t! compressed ptr\n\t"
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9182
            "BP$cmp   $labl" %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9183
  ins_encode %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9184
    Label* L = $labl$$label;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9185
    Assembler::Predict predict_taken =
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9186
      cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9187
    __ cmp($op1$$Register, $op2$$Register);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9188
    __ bp((Assembler::Condition)($cmp$$cmpcode), false, Assembler::icc, predict_taken, *L);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9189
    __ delayed()->nop();
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9190
  %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9191
  ins_pipe(cmp_br_reg_reg);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9192
%}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9193
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9194
instruct cmpN_null_branch(cmpOp cmp, iRegN op1, immN0 null, label labl, flagsReg icc) %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9195
  match(If cmp (CmpN op1 null));
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9196
  effect(USE labl, KILL icc);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9197
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9198
  size(12);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9199
  ins_cost(BRANCH_COST);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9200
  format %{ "CMP    $op1,0\t! compressed ptr\n\t"
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9201
            "BP$cmp   $labl" %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9202
  ins_encode %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9203
    Label* L = $labl$$label;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9204
    Assembler::Predict predict_taken =
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9205
      cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9206
    __ cmp($op1$$Register, G0);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9207
    __ bp((Assembler::Condition)($cmp$$cmpcode), false, Assembler::icc, predict_taken, *L);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9208
    __ delayed()->nop();
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9209
  %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9210
  ins_pipe(cmp_br_reg_reg);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9211
%}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9212
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9213
// Loop back branch
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9214
instruct cmpI_reg_branchLoopEnd(cmpOp cmp, iRegI op1, iRegI op2, label labl, flagsReg icc) %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9215
  match(CountedLoopEnd cmp (CmpI op1 op2));
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9216
  effect(USE labl, KILL icc);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9217
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9218
  size(12);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9219
  ins_cost(BRANCH_COST);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9220
  format %{ "CMP    $op1,$op2\t! int\n\t"
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9221
            "BP$cmp   $labl\t! Loop end" %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9222
  ins_encode %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9223
    Label* L = $labl$$label;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9224
    Assembler::Predict predict_taken =
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9225
      cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9226
    __ cmp($op1$$Register, $op2$$Register);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9227
    __ bp((Assembler::Condition)($cmp$$cmpcode), false, Assembler::icc, predict_taken, *L);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9228
    __ delayed()->nop();
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9229
  %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9230
  ins_pipe(cmp_br_reg_reg);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9231
%}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9232
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9233
instruct cmpI_imm_branchLoopEnd(cmpOp cmp, iRegI op1, immI5 op2, label labl, flagsReg icc) %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9234
  match(CountedLoopEnd cmp (CmpI op1 op2));
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9235
  effect(USE labl, KILL icc);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9236
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9237
  size(12);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9238
  ins_cost(BRANCH_COST);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9239
  format %{ "CMP    $op1,$op2\t! int\n\t"
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9240
            "BP$cmp   $labl\t! Loop end" %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9241
  ins_encode %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9242
    Label* L = $labl$$label;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9243
    Assembler::Predict predict_taken =
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9244
      cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9245
    __ cmp($op1$$Register, $op2$$constant);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9246
    __ bp((Assembler::Condition)($cmp$$cmpcode), false, Assembler::icc, predict_taken, *L);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9247
    __ delayed()->nop();
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9248
  %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9249
  ins_pipe(cmp_br_reg_imm);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9250
%}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9251
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9252
// Short compare and branch instructions
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9253
instruct cmpI_reg_branch_short(cmpOp cmp, iRegI op1, iRegI op2, label labl, flagsReg icc) %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9254
  match(If cmp (CmpI op1 op2));
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9255
  predicate(UseCBCond);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9256
  effect(USE labl, KILL icc);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9257
46596
a7c9706d25a9 8144448: Avoid placing CTI immediately following or preceding RDPC instruction
neliasso
parents: 46595
diff changeset
  9258
  size(4); // Assuming no NOP inserted.
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9259
  ins_cost(BRANCH_COST);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9260
  format %{ "CWB$cmp  $op1,$op2,$labl\t! int" %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9261
  ins_encode %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9262
    Label* L = $labl$$label;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9263
    assert(__ use_cbcond(*L), "back to back cbcond");
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9264
    __ cbcond((Assembler::Condition)($cmp$$cmpcode), Assembler::icc, $op1$$Register, $op2$$Register, *L);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9265
  %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9266
  ins_short_branch(1);
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  9267
  ins_avoid_back_to_back(AVOID_BEFORE_AND_AFTER);
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9268
  ins_pipe(cbcond_reg_reg);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9269
%}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9270
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9271
instruct cmpI_imm_branch_short(cmpOp cmp, iRegI op1, immI5 op2, label labl, flagsReg icc) %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9272
  match(If cmp (CmpI op1 op2));
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9273
  predicate(UseCBCond);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9274
  effect(USE labl, KILL icc);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9275
46596
a7c9706d25a9 8144448: Avoid placing CTI immediately following or preceding RDPC instruction
neliasso
parents: 46595
diff changeset
  9276
  size(4); // Assuming no NOP inserted.
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9277
  ins_cost(BRANCH_COST);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9278
  format %{ "CWB$cmp  $op1,$op2,$labl\t! int" %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9279
  ins_encode %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9280
    Label* L = $labl$$label;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9281
    assert(__ use_cbcond(*L), "back to back cbcond");
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9282
    __ cbcond((Assembler::Condition)($cmp$$cmpcode), Assembler::icc, $op1$$Register, $op2$$constant, *L);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9283
  %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9284
  ins_short_branch(1);
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  9285
  ins_avoid_back_to_back(AVOID_BEFORE_AND_AFTER);
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9286
  ins_pipe(cbcond_reg_imm);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9287
%}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9288
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9289
instruct cmpU_reg_branch_short(cmpOpU cmp, iRegI op1, iRegI op2, label labl, flagsRegU icc) %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9290
  match(If cmp (CmpU op1 op2));
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9291
  predicate(UseCBCond);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9292
  effect(USE labl, KILL icc);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9293
46596
a7c9706d25a9 8144448: Avoid placing CTI immediately following or preceding RDPC instruction
neliasso
parents: 46595
diff changeset
  9294
  size(4); // Assuming no NOP inserted.
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9295
  ins_cost(BRANCH_COST);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9296
  format %{ "CWB$cmp $op1,$op2,$labl\t! unsigned" %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9297
  ins_encode %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9298
    Label* L = $labl$$label;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9299
    assert(__ use_cbcond(*L), "back to back cbcond");
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9300
    __ cbcond((Assembler::Condition)($cmp$$cmpcode), Assembler::icc, $op1$$Register, $op2$$Register, *L);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9301
  %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9302
  ins_short_branch(1);
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  9303
  ins_avoid_back_to_back(AVOID_BEFORE_AND_AFTER);
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9304
  ins_pipe(cbcond_reg_reg);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9305
%}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9306
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9307
instruct cmpU_imm_branch_short(cmpOpU cmp, iRegI op1, immI5 op2, label labl, flagsRegU icc) %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9308
  match(If cmp (CmpU op1 op2));
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9309
  predicate(UseCBCond);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9310
  effect(USE labl, KILL icc);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9311
46596
a7c9706d25a9 8144448: Avoid placing CTI immediately following or preceding RDPC instruction
neliasso
parents: 46595
diff changeset
  9312
  size(4); // Assuming no NOP inserted.
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9313
  ins_cost(BRANCH_COST);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9314
  format %{ "CWB$cmp $op1,$op2,$labl\t! unsigned" %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9315
  ins_encode %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9316
    Label* L = $labl$$label;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9317
    assert(__ use_cbcond(*L), "back to back cbcond");
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9318
    __ cbcond((Assembler::Condition)($cmp$$cmpcode), Assembler::icc, $op1$$Register, $op2$$constant, *L);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9319
  %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9320
  ins_short_branch(1);
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  9321
  ins_avoid_back_to_back(AVOID_BEFORE_AND_AFTER);
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9322
  ins_pipe(cbcond_reg_imm);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9323
%}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9324
45965
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9325
instruct cmpUL_reg_branch_short(cmpOpU cmp, iRegL op1, iRegL op2, label labl, flagsRegUL xcc) %{
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9326
  match(If cmp (CmpUL op1 op2));
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9327
  predicate(UseCBCond);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9328
  effect(USE labl, KILL xcc);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9329
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9330
  size(4);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9331
  ins_cost(BRANCH_COST);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9332
  format %{ "CXB$cmp  $op1,$op2,$labl\t! unsigned long" %}
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9333
  ins_encode %{
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9334
    Label* L = $labl$$label;
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9335
    assert(__ use_cbcond(*L), "back to back cbcond");
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9336
    __ cbcond((Assembler::Condition)($cmp$$cmpcode), Assembler::xcc, $op1$$Register, $op2$$Register, *L);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9337
  %}
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9338
  ins_short_branch(1);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9339
  ins_avoid_back_to_back(AVOID_BEFORE_AND_AFTER);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9340
  ins_pipe(cbcond_reg_reg);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9341
%}
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9342
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9343
instruct cmpUL_imm_branch_short(cmpOpU cmp, iRegL op1, immL5 op2, label labl, flagsRegUL xcc) %{
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9344
  match(If cmp (CmpUL op1 op2));
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9345
  predicate(UseCBCond);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9346
  effect(USE labl, KILL xcc);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9347
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9348
  size(4);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9349
  ins_cost(BRANCH_COST);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9350
  format %{ "CXB$cmp  $op1,$op2,$labl\t! unsigned long" %}
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9351
  ins_encode %{
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9352
    Label* L = $labl$$label;
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9353
    assert(__ use_cbcond(*L), "back to back cbcond");
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9354
    __ cbcond((Assembler::Condition)($cmp$$cmpcode), Assembler::xcc, $op1$$Register, $op2$$constant, *L);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9355
  %}
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9356
  ins_short_branch(1);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9357
  ins_avoid_back_to_back(AVOID_BEFORE_AND_AFTER);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9358
  ins_pipe(cbcond_reg_imm);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9359
%}
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9360
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9361
instruct cmpL_reg_branch_short(cmpOp cmp, iRegL op1, iRegL op2, label labl, flagsRegL xcc) %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9362
  match(If cmp (CmpL op1 op2));
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9363
  predicate(UseCBCond);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9364
  effect(USE labl, KILL xcc);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9365
46596
a7c9706d25a9 8144448: Avoid placing CTI immediately following or preceding RDPC instruction
neliasso
parents: 46595
diff changeset
  9366
  size(4); // Assuming no NOP inserted.
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9367
  ins_cost(BRANCH_COST);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9368
  format %{ "CXB$cmp  $op1,$op2,$labl\t! long" %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9369
  ins_encode %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9370
    Label* L = $labl$$label;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9371
    assert(__ use_cbcond(*L), "back to back cbcond");
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9372
    __ cbcond((Assembler::Condition)($cmp$$cmpcode), Assembler::xcc, $op1$$Register, $op2$$Register, *L);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9373
  %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9374
  ins_short_branch(1);
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  9375
  ins_avoid_back_to_back(AVOID_BEFORE_AND_AFTER);
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9376
  ins_pipe(cbcond_reg_reg);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9377
%}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9378
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9379
instruct cmpL_imm_branch_short(cmpOp cmp, iRegL op1, immL5 op2, label labl, flagsRegL xcc) %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9380
  match(If cmp (CmpL op1 op2));
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9381
  predicate(UseCBCond);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9382
  effect(USE labl, KILL xcc);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9383
46596
a7c9706d25a9 8144448: Avoid placing CTI immediately following or preceding RDPC instruction
neliasso
parents: 46595
diff changeset
  9384
  size(4); // Assuming no NOP inserted.
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9385
  ins_cost(BRANCH_COST);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9386
  format %{ "CXB$cmp  $op1,$op2,$labl\t! long" %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9387
  ins_encode %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9388
    Label* L = $labl$$label;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9389
    assert(__ use_cbcond(*L), "back to back cbcond");
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9390
    __ cbcond((Assembler::Condition)($cmp$$cmpcode), Assembler::xcc, $op1$$Register, $op2$$constant, *L);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9391
  %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9392
  ins_short_branch(1);
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  9393
  ins_avoid_back_to_back(AVOID_BEFORE_AND_AFTER);
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9394
  ins_pipe(cbcond_reg_imm);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9395
%}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9396
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9397
// Compare Pointers and branch
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9398
instruct cmpP_reg_branch_short(cmpOpP cmp, iRegP op1, iRegP op2, label labl, flagsRegP pcc) %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9399
  match(If cmp (CmpP op1 op2));
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9400
  predicate(UseCBCond);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9401
  effect(USE labl, KILL pcc);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9402
46596
a7c9706d25a9 8144448: Avoid placing CTI immediately following or preceding RDPC instruction
neliasso
parents: 46595
diff changeset
  9403
  size(4); // Assuming no NOP inserted.
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9404
  ins_cost(BRANCH_COST);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9405
  format %{ "CXB$cmp $op1,$op2,$labl\t! ptr" %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9406
  ins_encode %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9407
    Label* L = $labl$$label;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9408
    assert(__ use_cbcond(*L), "back to back cbcond");
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9409
    __ cbcond((Assembler::Condition)($cmp$$cmpcode), Assembler::ptr_cc, $op1$$Register, $op2$$Register, *L);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9410
  %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9411
  ins_short_branch(1);
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  9412
  ins_avoid_back_to_back(AVOID_BEFORE_AND_AFTER);
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9413
  ins_pipe(cbcond_reg_reg);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9414
%}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9415
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9416
instruct cmpP_null_branch_short(cmpOpP cmp, iRegP op1, immP0 null, label labl, flagsRegP pcc) %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9417
  match(If cmp (CmpP op1 null));
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9418
  predicate(UseCBCond);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9419
  effect(USE labl, KILL pcc);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9420
46596
a7c9706d25a9 8144448: Avoid placing CTI immediately following or preceding RDPC instruction
neliasso
parents: 46595
diff changeset
  9421
  size(4); // Assuming no NOP inserted.
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9422
  ins_cost(BRANCH_COST);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9423
  format %{ "CXB$cmp $op1,0,$labl\t! ptr" %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9424
  ins_encode %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9425
    Label* L = $labl$$label;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9426
    assert(__ use_cbcond(*L), "back to back cbcond");
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9427
    __ cbcond((Assembler::Condition)($cmp$$cmpcode), Assembler::ptr_cc, $op1$$Register, G0, *L);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9428
  %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9429
  ins_short_branch(1);
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  9430
  ins_avoid_back_to_back(AVOID_BEFORE_AND_AFTER);
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9431
  ins_pipe(cbcond_reg_reg);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9432
%}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9433
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9434
instruct cmpN_reg_branch_short(cmpOp cmp, iRegN op1, iRegN op2, label labl, flagsReg icc) %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9435
  match(If cmp (CmpN op1 op2));
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9436
  predicate(UseCBCond);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9437
  effect(USE labl, KILL icc);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9438
46596
a7c9706d25a9 8144448: Avoid placing CTI immediately following or preceding RDPC instruction
neliasso
parents: 46595
diff changeset
  9439
  size(4); // Assuming no NOP inserted.
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9440
  ins_cost(BRANCH_COST);
25741
aa6844e3ab10 8051550: Printing of 'cmpN_reg_branch_short' instruction shows wrong 'op2' register
thartmann
parents: 24932
diff changeset
  9441
  format %{ "CWB$cmp  $op1,$op2,$labl\t! compressed ptr" %}
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9442
  ins_encode %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9443
    Label* L = $labl$$label;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9444
    assert(__ use_cbcond(*L), "back to back cbcond");
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9445
    __ cbcond((Assembler::Condition)($cmp$$cmpcode), Assembler::icc, $op1$$Register, $op2$$Register, *L);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9446
  %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9447
  ins_short_branch(1);
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  9448
  ins_avoid_back_to_back(AVOID_BEFORE_AND_AFTER);
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9449
  ins_pipe(cbcond_reg_reg);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9450
%}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9451
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9452
instruct cmpN_null_branch_short(cmpOp cmp, iRegN op1, immN0 null, label labl, flagsReg icc) %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9453
  match(If cmp (CmpN op1 null));
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9454
  predicate(UseCBCond);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9455
  effect(USE labl, KILL icc);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9456
46596
a7c9706d25a9 8144448: Avoid placing CTI immediately following or preceding RDPC instruction
neliasso
parents: 46595
diff changeset
  9457
  size(4); // Assuming no NOP inserted.
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9458
  ins_cost(BRANCH_COST);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9459
  format %{ "CWB$cmp  $op1,0,$labl\t! compressed ptr" %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9460
  ins_encode %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9461
    Label* L = $labl$$label;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9462
    assert(__ use_cbcond(*L), "back to back cbcond");
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9463
    __ cbcond((Assembler::Condition)($cmp$$cmpcode), Assembler::icc, $op1$$Register, G0, *L);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9464
  %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9465
  ins_short_branch(1);
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  9466
  ins_avoid_back_to_back(AVOID_BEFORE_AND_AFTER);
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9467
  ins_pipe(cbcond_reg_reg);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9468
%}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9469
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9470
// Loop back branch
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9471
instruct cmpI_reg_branchLoopEnd_short(cmpOp cmp, iRegI op1, iRegI op2, label labl, flagsReg icc) %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9472
  match(CountedLoopEnd cmp (CmpI op1 op2));
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9473
  predicate(UseCBCond);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9474
  effect(USE labl, KILL icc);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9475
46596
a7c9706d25a9 8144448: Avoid placing CTI immediately following or preceding RDPC instruction
neliasso
parents: 46595
diff changeset
  9476
  size(4); // Assuming no NOP inserted.
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9477
  ins_cost(BRANCH_COST);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9478
  format %{ "CWB$cmp  $op1,$op2,$labl\t! Loop end" %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9479
  ins_encode %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9480
    Label* L = $labl$$label;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9481
    assert(__ use_cbcond(*L), "back to back cbcond");
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9482
    __ cbcond((Assembler::Condition)($cmp$$cmpcode), Assembler::icc, $op1$$Register, $op2$$Register, *L);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9483
  %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9484
  ins_short_branch(1);
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  9485
  ins_avoid_back_to_back(AVOID_BEFORE_AND_AFTER);
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9486
  ins_pipe(cbcond_reg_reg);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9487
%}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9488
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9489
instruct cmpI_imm_branchLoopEnd_short(cmpOp cmp, iRegI op1, immI5 op2, label labl, flagsReg icc) %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9490
  match(CountedLoopEnd cmp (CmpI op1 op2));
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9491
  predicate(UseCBCond);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9492
  effect(USE labl, KILL icc);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9493
46596
a7c9706d25a9 8144448: Avoid placing CTI immediately following or preceding RDPC instruction
neliasso
parents: 46595
diff changeset
  9494
  size(4); // Assuming no NOP inserted.
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9495
  ins_cost(BRANCH_COST);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9496
  format %{ "CWB$cmp  $op1,$op2,$labl\t! Loop end" %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9497
  ins_encode %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9498
    Label* L = $labl$$label;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9499
    assert(__ use_cbcond(*L), "back to back cbcond");
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9500
    __ cbcond((Assembler::Condition)($cmp$$cmpcode), Assembler::icc, $op1$$Register, $op2$$constant, *L);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9501
  %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9502
  ins_short_branch(1);
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  9503
  ins_avoid_back_to_back(AVOID_BEFORE_AND_AFTER);
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9504
  ins_pipe(cbcond_reg_imm);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9505
%}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9506
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9507
// Branch-on-register tests all 64 bits.  We assume that values
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9508
// in 64-bit registers always remains zero or sign extended
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9509
// unless our code munges the high bits.  Interrupts can chop
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9510
// the high order bits to zero or sign at any time.
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9511
instruct branchCon_regI(cmpOp_reg cmp, iRegI op1, immI0 zero, label labl) %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9512
  match(If cmp (CmpI op1 zero));
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9513
  predicate(can_branch_register(_kids[0]->_leaf, _kids[1]->_leaf));
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9514
  effect(USE labl);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9515
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9516
  size(8);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9517
  ins_cost(BRANCH_COST);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9518
  format %{ "BR$cmp   $op1,$labl" %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9519
  ins_encode( enc_bpr( labl, cmp, op1 ) );
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  9520
  ins_avoid_back_to_back(AVOID_BEFORE);
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9521
  ins_pipe(br_reg);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9522
%}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9523
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9524
instruct branchCon_regP(cmpOp_reg cmp, iRegP op1, immP0 null, label labl) %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9525
  match(If cmp (CmpP op1 null));
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9526
  predicate(can_branch_register(_kids[0]->_leaf, _kids[1]->_leaf));
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9527
  effect(USE labl);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9528
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9529
  size(8);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9530
  ins_cost(BRANCH_COST);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9531
  format %{ "BR$cmp   $op1,$labl" %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9532
  ins_encode( enc_bpr( labl, cmp, op1 ) );
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  9533
  ins_avoid_back_to_back(AVOID_BEFORE);
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9534
  ins_pipe(br_reg);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9535
%}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9536
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9537
instruct branchCon_regL(cmpOp_reg cmp, iRegL op1, immL0 zero, label labl) %{
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9538
  match(If cmp (CmpL op1 zero));
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9539
  predicate(can_branch_register(_kids[0]->_leaf, _kids[1]->_leaf));
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9540
  effect(USE labl);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9541
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9542
  size(8);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9543
  ins_cost(BRANCH_COST);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9544
  format %{ "BR$cmp   $op1,$labl" %}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9545
  ins_encode( enc_bpr( labl, cmp, op1 ) );
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  9546
  ins_avoid_back_to_back(AVOID_BEFORE);
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9547
  ins_pipe(br_reg);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9548
%}
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9549
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10262
diff changeset
  9550
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9551
// ============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9552
// Long Compare
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9553
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9554
// Currently we hold longs in 2 registers.  Comparing such values efficiently
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9555
// is tricky.  The flavor of compare used depends on whether we are testing
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9556
// for LT, LE, or EQ.  For a simple LT test we can check just the sign bit.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9557
// The GE test is the negated LT test.  The LE test can be had by commuting
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9558
// the operands (yielding a GE test) and then negating; negate again for the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9559
// GT test.  The EQ test is done by ORcc'ing the high and low halves, and the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9560
// NE test is negated from that.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9561
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9562
// Due to a shortcoming in the ADLC, it mixes up expressions like:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9563
// (foo (CmpI (CmpL X Y) 0)) and (bar (CmpI (CmpL X 0L) 0)).  Note the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9564
// difference between 'Y' and '0L'.  The tree-matches for the CmpI sections
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9565
// are collapsed internally in the ADLC's dfa-gen code.  The match for
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9566
// (CmpI (CmpL X Y) 0) is silently replaced with (CmpI (CmpL X 0L) 0) and the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9567
// foo match ends up with the wrong leaf.  One fix is to not match both
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9568
// reg-reg and reg-zero forms of long-compare.  This is unfortunate because
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9569
// both forms beat the trinary form of long-compare and both are very useful
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9570
// on Intel which has so few registers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9571
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9572
instruct branchCon_long(cmpOp cmp, flagsRegL xcc, label labl) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9573
  match(If cmp xcc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9574
  effect(USE labl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9575
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9576
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9577
  ins_cost(BRANCH_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9578
  format %{ "BP$cmp   $xcc,$labl" %}
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  9579
  ins_encode %{
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  9580
    Label* L = $labl$$label;
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  9581
    Assembler::Predict predict_taken =
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  9582
      cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  9583
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  9584
    __ bp( (Assembler::Condition)($cmp$$cmpcode), false, Assembler::xcc, predict_taken, *L);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  9585
    __ delayed()->nop();
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 10027
diff changeset
  9586
  %}
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  9587
  ins_avoid_back_to_back(AVOID_BEFORE);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9588
  ins_pipe(br_cc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9589
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9590
45965
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9591
instruct branchConU_long(cmpOpU cmp, flagsRegUL xcc, label labl) %{
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9592
  match(If cmp xcc);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9593
  effect(USE labl);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9594
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9595
  size(8);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9596
  ins_cost(BRANCH_COST);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9597
  format %{ "BP$cmp   $xcc,$labl" %}
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9598
  ins_encode %{
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9599
    Label* L = $labl$$label;
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9600
    Assembler::Predict predict_taken =
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9601
      cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9602
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9603
    __ bp((Assembler::Condition)($cmp$$cmpcode), false, Assembler::xcc, predict_taken, *L);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9604
    __ delayed()->nop();
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9605
  %}
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9606
  ins_avoid_back_to_back(AVOID_BEFORE);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9607
  ins_pipe(br_cc);
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9608
%}
e29c1363af9a 8173770: Image conversion improvements
thartmann
parents: 41673
diff changeset
  9609
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9610
// Manifest a CmpL3 result in an integer register.  Very painful.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9611
// This is the test to avoid.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9612
instruct cmpL3_reg_reg(iRegI dst, iRegL src1, iRegL src2, flagsReg ccr ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9613
  match(Set dst (CmpL3 src1 src2) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9614
  effect( KILL ccr );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9615
  ins_cost(6*DEFAULT_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9616
  size(24);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9617
  format %{ "CMP    $src1,$src2\t\t! long\n"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9618
          "\tBLT,a,pn done\n"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9619
          "\tMOV    -1,$dst\t! delay slot\n"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9620
          "\tBGT,a,pn done\n"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9621
          "\tMOV    1,$dst\t! delay slot\n"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9622
          "\tCLR    $dst\n"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9623
    "done:"     %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9624
  ins_encode( cmpl_flag(src1,src2,dst) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9625
  ins_pipe(cmpL_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9626
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9627
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9628
// Conditional move
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9629
instruct cmovLL_reg(cmpOp cmp, flagsRegL xcc, iRegL dst, iRegL src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9630
  match(Set dst (CMoveL (Binary cmp xcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9631
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9632
  format %{ "MOV$cmp  $xcc,$src,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9633
  ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::xcc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9634
  ins_pipe(ialu_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9635
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9636
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9637
instruct cmovLL_imm(cmpOp cmp, flagsRegL xcc, iRegL dst, immL0 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9638
  match(Set dst (CMoveL (Binary cmp xcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9639
  ins_cost(140);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9640
  format %{ "MOV$cmp  $xcc,$src,$dst\t! long" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9641
  ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::xcc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9642
  ins_pipe(ialu_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9643
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9644
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9645
instruct cmovIL_reg(cmpOp cmp, flagsRegL xcc, iRegI dst, iRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9646
  match(Set dst (CMoveI (Binary cmp xcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9647
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9648
  format %{ "MOV$cmp  $xcc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9649
  ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::xcc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9650
  ins_pipe(ialu_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9651
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9652
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9653
instruct cmovIL_imm(cmpOp cmp, flagsRegL xcc, iRegI dst, immI11 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9654
  match(Set dst (CMoveI (Binary cmp xcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9655
  ins_cost(140);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9656
  format %{ "MOV$cmp  $xcc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9657
  ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::xcc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9658
  ins_pipe(ialu_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9659
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9660
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  9661
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
  9662
  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
  9663
  ins_cost(150);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  9664
  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
  9665
  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
  9666
  ins_pipe(ialu_reg);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  9667
%}
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 589
diff changeset
  9668
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9669
instruct cmovPL_reg(cmpOp cmp, flagsRegL xcc, iRegP dst, iRegP src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9670
  match(Set dst (CMoveP (Binary cmp xcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9671
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9672
  format %{ "MOV$cmp  $xcc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9673
  ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::xcc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9674
  ins_pipe(ialu_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9675
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9676
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9677
instruct cmovPL_imm(cmpOp cmp, flagsRegL xcc, iRegP dst, immP0 src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9678
  match(Set dst (CMoveP (Binary cmp xcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9679
  ins_cost(140);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9680
  format %{ "MOV$cmp  $xcc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9681
  ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::xcc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9682
  ins_pipe(ialu_imm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9683
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9684
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9685
instruct cmovFL_reg(cmpOp cmp, flagsRegL xcc, regF dst, regF src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9686
  match(Set dst (CMoveF (Binary cmp xcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9687
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9688
  opcode(0x101);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9689
  format %{ "FMOVS$cmp $xcc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9690
  ins_encode( enc_cmovf_reg(cmp,dst,src, (Assembler::xcc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9691
  ins_pipe(int_conditional_float_move);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9692
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9693
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9694
instruct cmovDL_reg(cmpOp cmp, flagsRegL xcc, regD dst, regD src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9695
  match(Set dst (CMoveD (Binary cmp xcc) (Binary dst src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9696
  ins_cost(150);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9697
  opcode(0x102);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9698
  format %{ "FMOVD$cmp $xcc,$src,$dst" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9699
  ins_encode( enc_cmovf_reg(cmp,dst,src, (Assembler::xcc)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9700
  ins_pipe(int_conditional_float_move);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9701
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9702
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9703
// ============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9704
// Safepoint Instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9705
instruct safePoint_poll(iRegP poll) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9706
  match(SafePoint poll);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9707
  effect(USE poll);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9708
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9709
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9710
  format %{ "LDX    [$poll],R_G0\t! Safepoint: poll for GC" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9711
  ins_encode %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9712
    __ relocate(relocInfo::poll_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9713
    __ ld_ptr($poll$$Register, 0, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9714
  %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9715
  ins_pipe(loadPollP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9716
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9717
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9718
// ============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9719
// Call Instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9720
// Call Java Static Instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9721
instruct CallStaticJavaDirect( method meth ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9722
  match(CallStaticJava);
5690
796ff3814b23 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 5352
diff changeset
  9723
  predicate(! ((CallStaticJavaNode*)n)->is_method_handle_invoke());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9724
  effect(USE meth);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9725
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9726
  size(8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9727
  ins_cost(CALL_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9728
  format %{ "CALL,static  ; NOP ==> " %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9729
  ins_encode( Java_Static_Call( meth ), call_epilog );
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  9730
  ins_avoid_back_to_back(AVOID_BEFORE);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9731
  ins_pipe(simple_call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9732
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9733
5690
796ff3814b23 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 5352
diff changeset
  9734
// Call Java Static Instruction (method handle version)
796ff3814b23 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 5352
diff changeset
  9735
instruct CallStaticJavaHandle(method meth, l7RegP l7_mh_SP_save) %{
796ff3814b23 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 5352
diff changeset
  9736
  match(CallStaticJava);
796ff3814b23 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 5352
diff changeset
  9737
  predicate(((CallStaticJavaNode*)n)->is_method_handle_invoke());
796ff3814b23 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 5352
diff changeset
  9738
  effect(USE meth, KILL l7_mh_SP_save);
796ff3814b23 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 5352
diff changeset
  9739
10269
8a1ab847ebea 7079769: JSR 292: incorrect size() for CallStaticJavaHandle on sparc
twisti
parents: 10267
diff changeset
  9740
  size(16);
5690
796ff3814b23 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 5352
diff changeset
  9741
  ins_cost(CALL_COST);
796ff3814b23 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 5352
diff changeset
  9742
  format %{ "CALL,static/MethodHandle" %}
796ff3814b23 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 5352
diff changeset
  9743
  ins_encode(preserve_SP, Java_Static_Call(meth), restore_SP, call_epilog);
796ff3814b23 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 5352
diff changeset
  9744
  ins_pipe(simple_call);
796ff3814b23 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 5352
diff changeset
  9745
%}
796ff3814b23 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 5352
diff changeset
  9746
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9747
// Call Java Dynamic Instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9748
instruct CallDynamicJavaDirect( method meth ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9749
  match(CallDynamicJava);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9750
  effect(USE meth);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9751
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9752
  ins_cost(CALL_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9753
  format %{ "SET    (empty),R_G5\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9754
            "CALL,dynamic  ; NOP ==> " %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9755
  ins_encode( Java_Dynamic_Call( meth ), call_epilog );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9756
  ins_pipe(call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9757
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9758
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9759
// Call Runtime Instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9760
instruct CallRuntimeDirect(method meth, l7RegP l7) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9761
  match(CallRuntime);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9762
  effect(USE meth, KILL l7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9763
  ins_cost(CALL_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9764
  format %{ "CALL,runtime" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9765
  ins_encode( Java_To_Runtime( meth ),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9766
              call_epilog, adjust_long_from_native_call );
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  9767
  ins_avoid_back_to_back(AVOID_BEFORE);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9768
  ins_pipe(simple_call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9769
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9770
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9771
// Call runtime without safepoint - same as CallRuntime
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9772
instruct CallLeafDirect(method meth, l7RegP l7) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9773
  match(CallLeaf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9774
  effect(USE meth, KILL l7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9775
  ins_cost(CALL_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9776
  format %{ "CALL,runtime leaf" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9777
  ins_encode( Java_To_Runtime( meth ),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9778
              call_epilog,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9779
              adjust_long_from_native_call );
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  9780
  ins_avoid_back_to_back(AVOID_BEFORE);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9781
  ins_pipe(simple_call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9782
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9783
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9784
// Call runtime without safepoint - same as CallLeaf
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9785
instruct CallLeafNoFPDirect(method meth, l7RegP l7) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9786
  match(CallLeafNoFP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9787
  effect(USE meth, KILL l7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9788
  ins_cost(CALL_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9789
  format %{ "CALL,runtime leaf nofp" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9790
  ins_encode( Java_To_Runtime( meth ),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9791
              call_epilog,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9792
              adjust_long_from_native_call );
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  9793
  ins_avoid_back_to_back(AVOID_BEFORE);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9794
  ins_pipe(simple_call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9795
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9796
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9797
// Tail Call; Jump from runtime stub to Java code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9798
// Also known as an 'interprocedural jump'.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9799
// Target of jump will eventually return to caller.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9800
// TailJump below removes the return address.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9801
instruct TailCalljmpInd(g3RegP jump_target, inline_cache_regP method_oop) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9802
  match(TailCall jump_target method_oop );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9803
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9804
  ins_cost(CALL_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9805
  format %{ "Jmp     $jump_target  ; NOP \t! $method_oop holds method oop" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9806
  ins_encode(form_jmpl(jump_target));
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  9807
  ins_avoid_back_to_back(AVOID_BEFORE);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9808
  ins_pipe(tail_call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9809
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9810
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9811
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9812
// Return Instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9813
instruct Ret() %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9814
  match(Return);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9815
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9816
  // The epilogue node did the ret already.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9817
  size(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9818
  format %{ "! return" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9819
  ins_encode();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9820
  ins_pipe(empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9821
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9822
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9823
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9824
// Tail Jump; remove the return address; jump to target.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9825
// TailCall above leaves the return address around.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9826
// TailJump is used in only one place, the rethrow_Java stub (fancy_jump=2).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9827
// ex_oop (Exception Oop) is needed in %o0 at the jump. As there would be a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9828
// "restore" before this instruction (in Epilogue), we need to materialize it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9829
// in %i0.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9830
instruct tailjmpInd(g1RegP jump_target, i0RegP ex_oop) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9831
  match( TailJump jump_target ex_oop );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9832
  ins_cost(CALL_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9833
  format %{ "! discard R_O7\n\t"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9834
            "Jmp     $jump_target  ; ADD O7,8,O1 \t! $ex_oop holds exc. oop" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9835
  ins_encode(form_jmpl_set_exception_pc(jump_target));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9836
  // opcode(Assembler::jmpl_op3, Assembler::arith_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9837
  // The hack duplicates the exception oop into G3, so that CreateEx can use it there.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9838
  // ins_encode( form3_rs1_simm13_rd( jump_target, 0x00, R_G0 ), move_return_pc_to_o1() );
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  9839
  ins_avoid_back_to_back(AVOID_BEFORE);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9840
  ins_pipe(tail_call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9841
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9842
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9843
// Create exception oop: created by stack-crawling runtime code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9844
// Created exception is now available to this handler, and is setup
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9845
// just prior to jumping to this handler.  No code emitted.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9846
instruct CreateException( o0RegP ex_oop )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9847
%{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9848
  match(Set ex_oop (CreateEx));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9849
  ins_cost(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9850
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9851
  size(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9852
  // use the following format syntax
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9853
  format %{ "! exception oop is in R_O0; no code emitted" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9854
  ins_encode();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9855
  ins_pipe(empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9856
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9857
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9858
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9859
// Rethrow exception:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9860
// The exception oop will come in the first argument position.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9861
// Then JUMP (not call) to the rethrow stub code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9862
instruct RethrowException()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9863
%{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9864
  match(Rethrow);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9865
  ins_cost(CALL_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9866
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9867
  // use the following format syntax
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9868
  format %{ "Jmp    rethrow_stub" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9869
  ins_encode(enc_rethrow);
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  9870
  ins_avoid_back_to_back(AVOID_BEFORE);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9871
  ins_pipe(tail_call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9872
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9873
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9874
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9875
// Die now
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9876
instruct ShouldNotReachHere( )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9877
%{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9878
  match(Halt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9879
  ins_cost(CALL_COST);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9880
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9881
  size(4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9882
  // Use the following format syntax
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9883
  format %{ "ILLTRAP   ; ShouldNotReachHere" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9884
  ins_encode( form2_illtrap() );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9885
  ins_pipe(tail_call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9886
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9887
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9888
// ============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9889
// The 2nd slow-half of a subtype check.  Scan the subklass's 2ndary superklass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9890
// array for an instance of the superklass.  Set a hidden internal cache on a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9891
// hit (cache is checked with exposed code in gen_subtype_check()).  Return
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9892
// not zero for a miss or zero for a hit.  The encoding ALSO sets flags.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9893
instruct partialSubtypeCheck( o0RegP index, o1RegP sub, o2RegP super, flagsRegP pcc, o7RegP o7 ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9894
  match(Set index (PartialSubtypeCheck sub super));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9895
  effect( KILL pcc, KILL o7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9896
  ins_cost(DEFAULT_COST*10);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9897
  format %{ "CALL   PartialSubtypeCheck\n\tNOP" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9898
  ins_encode( enc_PartialSubtypeCheck() );
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  9899
  ins_avoid_back_to_back(AVOID_BEFORE);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9900
  ins_pipe(partial_subtype_check_pipe);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9901
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9902
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9903
instruct partialSubtypeCheck_vs_zero( flagsRegP pcc, o1RegP sub, o2RegP super, immP0 zero, o0RegP idx, o7RegP o7 ) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9904
  match(Set pcc (CmpP (PartialSubtypeCheck sub super) zero));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9905
  effect( KILL idx, KILL o7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9906
  ins_cost(DEFAULT_COST*10);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9907
  format %{ "CALL   PartialSubtypeCheck\n\tNOP\t# (sets condition codes)" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9908
  ins_encode( enc_PartialSubtypeCheck() );
24008
da7059252295 8038297: Avoid placing CTI immediately following cbcond instruction on T4
iveresov
parents: 23498
diff changeset
  9909
  ins_avoid_back_to_back(AVOID_BEFORE);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9910
  ins_pipe(partial_subtype_check_pipe);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9911
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9912
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 254
diff changeset
  9913
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9914
// ============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9915
// inlined locking and unlocking
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9916
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11444
diff changeset
  9917
instruct cmpFastLock(flagsRegP pcc, iRegP object, o1RegP box, iRegP scratch2, o7RegP scratch ) %{
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9918
  match(Set pcc (FastLock object box));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9919
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11444
diff changeset
  9920
  effect(TEMP scratch2, USE_KILL box, KILL scratch);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9921
  ins_cost(100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9922
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11444
diff changeset
  9923
  format %{ "FASTLOCK  $object,$box\t! kills $box,$scratch,$scratch2" %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9924
  ins_encode( Fast_Lock(object, box, scratch, scratch2) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9925
  ins_pipe(long_memory_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9926
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9927
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9928
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11444
diff changeset
  9929
instruct cmpFastUnlock(flagsRegP pcc, iRegP object, o1RegP box, iRegP scratch2, o7RegP scratch ) %{
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9930
  match(Set pcc (FastUnlock object box));
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11444
diff changeset
  9931
  effect(TEMP scratch2, USE_KILL box, KILL scratch);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9932
  ins_cost(100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9933
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11444
diff changeset
  9934
  format %{ "FASTUNLOCK  $object,$box\t! kills $box,$scratch,$scratch2" %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9935
  ins_encode( Fast_Unlock(object, box, scratch, scratch2) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9936
  ins_pipe(long_memory_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9937
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9938
10501
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9939
// The encodings are generic.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9940
instruct clear_array(iRegX cnt, iRegP base, iRegX temp, Universe dummy, flagsReg ccr) %{
10501
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9941
  predicate(!use_block_zeroing(n->in(2)) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9942
  match(Set dummy (ClearArray cnt base));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9943
  effect(TEMP temp, KILL ccr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9944
  ins_cost(300);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9945
  format %{ "MOV    $cnt,$temp\n"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9946
    "loop:   SUBcc  $temp,8,$temp\t! Count down a dword of bytes\n"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9947
    "        BRge   loop\t\t! Clearing loop\n"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  9948
    "        STX    G0,[$base+$temp]\t! delay slot" %}
10501
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9949
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9950
  ins_encode %{
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9951
    // Compiler ensures base is doubleword aligned and cnt is count of doublewords
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9952
    Register nof_bytes_arg    = $cnt$$Register;
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9953
    Register nof_bytes_tmp    = $temp$$Register;
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9954
    Register base_pointer_arg = $base$$Register;
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9955
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9956
    Label loop;
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9957
    __ mov(nof_bytes_arg, nof_bytes_tmp);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9958
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9959
    // Loop and clear, walking backwards through the array.
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9960
    // nof_bytes_tmp (if >0) is always the number of bytes to zero
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9961
    __ bind(loop);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9962
    __ deccc(nof_bytes_tmp, 8);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9963
    __ br(Assembler::greaterEqual, true, Assembler::pt, loop);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9964
    __ delayed()-> stx(G0, base_pointer_arg, nof_bytes_tmp);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9965
    // %%%% this mini-loop must not cross a cache boundary!
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9966
  %}
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9967
  ins_pipe(long_memory_op);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9968
%}
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9969
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9970
instruct clear_array_bis(g1RegX cnt, o0RegP base, Universe dummy, flagsReg ccr) %{
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9971
  predicate(use_block_zeroing(n->in(2)));
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9972
  match(Set dummy (ClearArray cnt base));
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9973
  effect(USE_KILL cnt, USE_KILL base, KILL ccr);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9974
  ins_cost(300);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9975
  format %{ "CLEAR  [$base, $cnt]\t! ClearArray" %}
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9976
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9977
  ins_encode %{
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9978
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9979
    assert(MinObjAlignmentInBytes >= BytesPerLong, "need alternate implementation");
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9980
    Register to    = $base$$Register;
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9981
    Register count = $cnt$$Register;
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9982
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9983
    Label Ldone;
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9984
    __ nop(); // Separate short branches
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9985
    // Use BIS for zeroing (temp is not used).
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9986
    __ bis_zeroing(to, count, G0, Ldone);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9987
    __ bind(Ldone);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9988
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9989
  %}
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9990
  ins_pipe(long_memory_op);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9991
%}
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9992
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9993
instruct clear_array_bis_2(g1RegX cnt, o0RegP base, iRegX tmp, Universe dummy, flagsReg ccr) %{
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9994
  predicate(use_block_zeroing(n->in(2)) && !Assembler::is_simm13((int)BlockZeroingLowLimit));
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9995
  match(Set dummy (ClearArray cnt base));
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9996
  effect(TEMP tmp, USE_KILL cnt, USE_KILL base, KILL ccr);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9997
  ins_cost(300);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9998
  format %{ "CLEAR  [$base, $cnt]\t! ClearArray" %}
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
  9999
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
 10000
  ins_encode %{
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
 10001
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
 10002
    assert(MinObjAlignmentInBytes >= BytesPerLong, "need alternate implementation");
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
 10003
    Register to    = $base$$Register;
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
 10004
    Register count = $cnt$$Register;
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
 10005
    Register temp  = $tmp$$Register;
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
 10006
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
 10007
    Label Ldone;
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
 10008
    __ nop(); // Separate short branches
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
 10009
    // Use BIS for zeroing
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
 10010
    __ bis_zeroing(to, count, temp, Ldone);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
 10011
    __ bind(Ldone);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
 10012
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10269
diff changeset
 10013
  %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10014
  ins_pipe(long_memory_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10015
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10016
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10017
instruct string_compareL(o0RegP str1, o1RegP str2, g3RegI cnt1, g4RegI cnt2, notemp_iRegI result,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10018
                         o7RegI tmp, flagsReg ccr) %{
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10019
  predicate(((StrCompNode*)n)->encoding() == StrIntrinsicNode::LL);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10020
  match(Set result (StrComp (Binary str1 cnt1) (Binary str2 cnt2)));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10021
  effect(USE_KILL str1, USE_KILL str2, USE_KILL cnt1, USE_KILL cnt2, KILL ccr, KILL tmp);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10022
  ins_cost(300);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10023
  format %{ "String Compare byte[] $str1,$cnt1,$str2,$cnt2 -> $result   // KILL $tmp" %}
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10024
  ins_encode %{
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10025
    __ string_compare($str1$$Register, $str2$$Register,
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 34162
diff changeset
 10026
                      $cnt1$$Register, $cnt2$$Register,
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10027
                      $tmp$$Register, $tmp$$Register,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10028
                      $result$$Register, StrIntrinsicNode::LL);
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 34162
diff changeset
 10029
  %}
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10030
  ins_pipe(long_memory_op);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10031
%}
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10032
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10033
instruct string_compareU(o0RegP str1, o1RegP str2, g3RegI cnt1, g4RegI cnt2, notemp_iRegI result,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10034
                         o7RegI tmp, flagsReg ccr) %{
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10035
  predicate(((StrCompNode*)n)->encoding() == StrIntrinsicNode::UU);
3905
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3798
diff changeset
 10036
  match(Set result (StrComp (Binary str1 cnt1) (Binary str2 cnt2)));
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3798
diff changeset
 10037
  effect(USE_KILL str1, USE_KILL str2, USE_KILL cnt1, USE_KILL cnt2, KILL ccr, KILL tmp);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10038
  ins_cost(300);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10039
  format %{ "String Compare char[] $str1,$cnt1,$str2,$cnt2 -> $result   // KILL $tmp" %}
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10040
  ins_encode %{
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10041
    __ string_compare($str1$$Register, $str2$$Register,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10042
                      $cnt1$$Register, $cnt2$$Register,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10043
                      $tmp$$Register, $tmp$$Register,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10044
                      $result$$Register, StrIntrinsicNode::UU);
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 34162
diff changeset
 10045
  %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10046
  ins_pipe(long_memory_op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10047
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10048
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10049
instruct string_compareLU(o0RegP str1, o1RegP str2, g3RegI cnt1, g4RegI cnt2, notemp_iRegI result,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10050
                          o7RegI tmp1, g1RegI tmp2, flagsReg ccr) %{
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10051
  predicate(((StrCompNode*)n)->encoding() == StrIntrinsicNode::LU);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10052
  match(Set result (StrComp (Binary str1 cnt1) (Binary str2 cnt2)));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10053
  effect(USE_KILL str1, USE_KILL str2, USE_KILL cnt1, USE_KILL cnt2, KILL ccr, KILL tmp1, KILL tmp2);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10054
  ins_cost(300);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10055
  format %{ "String Compare byte[] $str1,$cnt1,$str2,$cnt2 -> $result   // KILL $tmp1,$tmp2" %}
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10056
  ins_encode %{
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10057
    __ string_compare($str1$$Register, $str2$$Register,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10058
                      $cnt1$$Register, $cnt2$$Register,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10059
                      $tmp1$$Register, $tmp2$$Register,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10060
                      $result$$Register, StrIntrinsicNode::LU);
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 34162
diff changeset
 10061
  %}
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10062
  ins_pipe(long_memory_op);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10063
%}
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10064
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10065
instruct string_compareUL(o0RegP str1, o1RegP str2, g3RegI cnt1, g4RegI cnt2, notemp_iRegI result,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10066
                          o7RegI tmp1, g1RegI tmp2, flagsReg ccr) %{
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10067
  predicate(((StrCompNode*)n)->encoding() == StrIntrinsicNode::UL);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10068
  match(Set result (StrComp (Binary str1 cnt1) (Binary str2 cnt2)));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10069
  effect(USE_KILL str1, USE_KILL str2, USE_KILL cnt1, USE_KILL cnt2, KILL ccr, KILL tmp1, KILL tmp2);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10070
  ins_cost(300);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10071
  format %{ "String Compare byte[] $str1,$cnt1,$str2,$cnt2 -> $result   // KILL $tmp1,$tmp2" %}
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10072
  ins_encode %{
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10073
    __ string_compare($str2$$Register, $str1$$Register,
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 34162
diff changeset
 10074
                      $cnt2$$Register, $cnt1$$Register,
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10075
                      $tmp1$$Register, $tmp2$$Register,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10076
                      $result$$Register, StrIntrinsicNode::UL);
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 34162
diff changeset
 10077
  %}
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10078
  ins_pipe(long_memory_op);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10079
%}
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10080
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10081
instruct string_equalsL(o0RegP str1, o1RegP str2, g3RegI cnt, notemp_iRegI result,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10082
                        o7RegI tmp, flagsReg ccr) %{
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10083
  predicate(((StrEqualsNode*)n)->encoding() == StrIntrinsicNode::LL);
3905
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3798
diff changeset
 10084
  match(Set result (StrEquals (Binary str1 str2) cnt));
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3798
diff changeset
 10085
  effect(USE_KILL str1, USE_KILL str2, USE_KILL cnt, KILL tmp, KILL ccr);
2348
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
 10086
  ins_cost(300);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10087
  format %{ "String Equals byte[] $str1,$str2,$cnt -> $result   // KILL $tmp" %}
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10088
  ins_encode %{
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10089
    __ array_equals(false, $str1$$Register, $str2$$Register,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10090
                    $cnt$$Register, $tmp$$Register,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10091
                    $result$$Register, true /* byte */);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10092
  %}
2348
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
 10093
  ins_pipe(long_memory_op);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
 10094
%}
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
 10095
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10096
instruct string_equalsU(o0RegP str1, o1RegP str2, g3RegI cnt, notemp_iRegI result,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10097
                        o7RegI tmp, flagsReg ccr) %{
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10098
  predicate(((StrEqualsNode*)n)->encoding() == StrIntrinsicNode::UU);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10099
  match(Set result (StrEquals (Binary str1 str2) cnt));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10100
  effect(USE_KILL str1, USE_KILL str2, USE_KILL cnt, KILL tmp, KILL ccr);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10101
  ins_cost(300);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10102
  format %{ "String Equals char[]  $str1,$str2,$cnt -> $result   // KILL $tmp" %}
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10103
  ins_encode %{
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10104
    __ array_equals(false, $str1$$Register, $str2$$Register,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10105
                    $cnt$$Register, $tmp$$Register,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10106
                    $result$$Register, false /* byte */);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10107
  %}
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10108
  ins_pipe(long_memory_op);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10109
%}
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10110
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10111
instruct array_equalsB(o0RegP ary1, o1RegP ary2, g3RegI tmp1, notemp_iRegI result,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10112
                       o7RegI tmp2, flagsReg ccr) %{
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10113
  predicate(((AryEqNode*)n)->encoding() == StrIntrinsicNode::LL);
2348
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
 10114
  match(Set result (AryEq ary1 ary2));
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
 10115
  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
 10116
  ins_cost(300);
3905
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3798
diff changeset
 10117
  format %{ "Array Equals $ary1,$ary2 -> $result   // KILL $tmp1,$tmp2" %}
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10118
  ins_encode %{
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10119
    __ array_equals(true, $ary1$$Register, $ary2$$Register,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10120
                    $tmp1$$Register, $tmp2$$Register,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10121
                    $result$$Register, true /* byte */);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10122
  %}
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10123
  ins_pipe(long_memory_op);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10124
%}
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10125
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10126
instruct array_equalsC(o0RegP ary1, o1RegP ary2, g3RegI tmp1, notemp_iRegI result,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10127
                       o7RegI tmp2, flagsReg ccr) %{
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10128
  predicate(((AryEqNode*)n)->encoding() == StrIntrinsicNode::UU);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10129
  match(Set result (AryEq ary1 ary2));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10130
  effect(USE_KILL ary1, USE_KILL ary2, KILL tmp1, KILL tmp2, KILL ccr);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10131
  ins_cost(300);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10132
  format %{ "Array Equals $ary1,$ary2 -> $result   // KILL $tmp1,$tmp2" %}
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10133
  ins_encode %{
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10134
    __ array_equals(true, $ary1$$Register, $ary2$$Register,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10135
                    $tmp1$$Register, $tmp2$$Register,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10136
                    $result$$Register, false /* byte */);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10137
  %}
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10138
  ins_pipe(long_memory_op);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10139
%}
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10140
36808
bae14ddeff3b 8144693: Intrinsify StringCoding.hasNegatives() on SPARC
thartmann
parents: 36554
diff changeset
 10141
instruct has_negatives(o0RegP pAryR, g3RegI iSizeR, notemp_iRegI resultR,
bae14ddeff3b 8144693: Intrinsify StringCoding.hasNegatives() on SPARC
thartmann
parents: 36554
diff changeset
 10142
                       iRegL tmp1L, iRegL tmp2L, iRegL tmp3L, iRegL tmp4L,
46381
020219e46c86 8150388: Remove SPARC 32-bit support
gtriantafill
parents: 46378
diff changeset
 10143
                       flagsReg ccr)
36808
bae14ddeff3b 8144693: Intrinsify StringCoding.hasNegatives() on SPARC
thartmann
parents: 36554
diff changeset
 10144
%{
bae14ddeff3b 8144693: Intrinsify StringCoding.hasNegatives() on SPARC
thartmann
parents: 36554
diff changeset
 10145
  match(Set resultR (HasNegatives pAryR iSizeR));
bae14ddeff3b 8144693: Intrinsify StringCoding.hasNegatives() on SPARC
thartmann
parents: 36554
diff changeset
 10146
  effect(TEMP resultR, TEMP tmp1L, TEMP tmp2L, TEMP tmp3L, TEMP tmp4L, USE pAryR, USE iSizeR, KILL ccr);
bae14ddeff3b 8144693: Intrinsify StringCoding.hasNegatives() on SPARC
thartmann
parents: 36554
diff changeset
 10147
  format %{ "has negatives byte[] $pAryR,$iSizeR -> $resultR // KILL $tmp1L,$tmp2L,$tmp3L,$tmp4L" %}
bae14ddeff3b 8144693: Intrinsify StringCoding.hasNegatives() on SPARC
thartmann
parents: 36554
diff changeset
 10148
  ins_encode %{
46381
020219e46c86 8150388: Remove SPARC 32-bit support
gtriantafill
parents: 46378
diff changeset
 10149
    __ has_negatives($pAryR$$Register, $iSizeR$$Register,
36808
bae14ddeff3b 8144693: Intrinsify StringCoding.hasNegatives() on SPARC
thartmann
parents: 36554
diff changeset
 10150
                     $resultR$$Register,
46381
020219e46c86 8150388: Remove SPARC 32-bit support
gtriantafill
parents: 46378
diff changeset
 10151
                     $tmp1L$$Register, $tmp2L$$Register,
36808
bae14ddeff3b 8144693: Intrinsify StringCoding.hasNegatives() on SPARC
thartmann
parents: 36554
diff changeset
 10152
                     $tmp3L$$Register, $tmp4L$$Register);
bae14ddeff3b 8144693: Intrinsify StringCoding.hasNegatives() on SPARC
thartmann
parents: 36554
diff changeset
 10153
  %}
bae14ddeff3b 8144693: Intrinsify StringCoding.hasNegatives() on SPARC
thartmann
parents: 36554
diff changeset
 10154
  ins_pipe(long_memory_op);
bae14ddeff3b 8144693: Intrinsify StringCoding.hasNegatives() on SPARC
thartmann
parents: 36554
diff changeset
 10155
%}
bae14ddeff3b 8144693: Intrinsify StringCoding.hasNegatives() on SPARC
thartmann
parents: 36554
diff changeset
 10156
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10157
// char[] to byte[] compression
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10158
instruct string_compress(o0RegP src, o1RegP dst, g3RegI len, notemp_iRegI result, iRegL tmp, flagsReg ccr) %{
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10159
  predicate(UseVIS < 3);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10160
  match(Set result (StrCompressedCopy src (Binary dst len)));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10161
  effect(TEMP result, TEMP tmp, USE_KILL src, USE_KILL dst, USE_KILL len, KILL ccr);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10162
  ins_cost(300);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10163
  format %{ "String Compress $src,$dst,$len -> $result    // KILL $tmp" %}
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10164
  ins_encode %{
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10165
    Label Ldone;
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10166
    __ signx($len$$Register);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10167
    __ cmp_zero_and_br(Assembler::zero, $len$$Register, Ldone, false, Assembler::pn);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10168
    __ delayed()->mov($len$$Register, $result$$Register); // copy count
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10169
    __ string_compress($src$$Register, $dst$$Register, $len$$Register, $result$$Register, $tmp$$Register, Ldone);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10170
    __ bind(Ldone);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10171
  %}
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10172
  ins_pipe(long_memory_op);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10173
%}
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10174
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10175
// fast char[] to byte[] compression using VIS instructions
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10176
instruct string_compress_fast(o0RegP src, o1RegP dst, g3RegI len, notemp_iRegI result,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10177
                              iRegL tmp1, iRegL tmp2, iRegL tmp3, iRegL tmp4,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10178
                              regD ftmp1, regD ftmp2, regD ftmp3, flagsReg ccr) %{
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10179
  predicate(UseVIS >= 3);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10180
  match(Set result (StrCompressedCopy src (Binary dst len)));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10181
  effect(TEMP result, TEMP tmp1, TEMP tmp2, TEMP tmp3, TEMP tmp4, TEMP ftmp1, TEMP ftmp2, TEMP ftmp3, USE_KILL src, USE_KILL dst, USE_KILL len, KILL ccr);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10182
  ins_cost(300);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10183
  format %{ "String Compress Fast $src,$dst,$len -> $result    // KILL $tmp1,$tmp2,$tmp3,$tmp4,$ftmp1,$ftmp2,$ftmp3" %}
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10184
  ins_encode %{
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10185
    Label Ldone;
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10186
    __ signx($len$$Register);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10187
    __ string_compress_16($src$$Register, $dst$$Register, $len$$Register, $result$$Register,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10188
                          $tmp1$$Register, $tmp2$$Register, $tmp3$$Register, $tmp4$$Register,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10189
                          $ftmp1$$FloatRegister, $ftmp2$$FloatRegister, $ftmp3$$FloatRegister, Ldone);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10190
    __ cmp_and_brx_short($len$$Register, 0, Assembler::equal, Assembler::pn, Ldone);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10191
    __ string_compress($src$$Register, $dst$$Register, $len$$Register, $result$$Register, $tmp1$$Register, Ldone);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10192
    __ bind(Ldone);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10193
  %}
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10194
  ins_pipe(long_memory_op);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10195
%}
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10196
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10197
// byte[] to char[] inflation
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10198
instruct string_inflate(Universe dummy, o0RegP src, o1RegP dst, g3RegI len,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10199
                        iRegL tmp, flagsReg ccr) %{
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10200
  match(Set dummy (StrInflatedCopy src (Binary dst len)));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10201
  effect(TEMP tmp, USE_KILL src, USE_KILL dst, USE_KILL len, KILL ccr);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10202
  ins_cost(300);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10203
  format %{ "String Inflate $src,$dst,$len    // KILL $tmp" %}
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10204
  ins_encode %{
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10205
    Label Ldone;
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10206
    __ signx($len$$Register);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10207
    __ cmp_and_brx_short($len$$Register, 0, Assembler::equal, Assembler::pn, Ldone);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10208
    __ string_inflate($src$$Register, $dst$$Register, $len$$Register, $tmp$$Register, Ldone);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10209
    __ bind(Ldone);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10210
  %}
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10211
  ins_pipe(long_memory_op);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10212
%}
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10213
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10214
// fast byte[] to char[] inflation using VIS instructions
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10215
instruct string_inflate_fast(Universe dummy, o0RegP src, o1RegP dst, g3RegI len,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10216
                             iRegL tmp, regD ftmp1, regD ftmp2, regD ftmp3, regD ftmp4, flagsReg ccr) %{
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10217
  predicate(UseVIS >= 3);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10218
  match(Set dummy (StrInflatedCopy src (Binary dst len)));
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10219
  effect(TEMP tmp, TEMP ftmp1, TEMP ftmp2, TEMP ftmp3, TEMP ftmp4, USE_KILL src, USE_KILL dst, USE_KILL len, KILL ccr);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10220
  ins_cost(300);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10221
  format %{ "String Inflate Fast $src,$dst,$len    // KILL $tmp,$ftmp1,$ftmp2,$ftmp3,$ftmp4" %}
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10222
  ins_encode %{
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10223
    Label Ldone;
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10224
    __ signx($len$$Register);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10225
    __ string_inflate_16($src$$Register, $dst$$Register, $len$$Register, $tmp$$Register,
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10226
                         $ftmp1$$FloatRegister, $ftmp2$$FloatRegister, $ftmp3$$FloatRegister, $ftmp4$$FloatRegister, Ldone);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10227
    __ cmp_and_brx_short($len$$Register, 0, Assembler::equal, Assembler::pn, Ldone);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10228
    __ string_inflate($src$$Register, $dst$$Register, $len$$Register, $tmp$$Register, Ldone);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10229
    __ bind(Ldone);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33129
diff changeset
 10230
  %}
2348
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
 10231
  ins_pipe(long_memory_op);
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2259
diff changeset
 10232
%}
2255
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
 10233
2862
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10234
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10235
//---------- Zeros Count Instructions ------------------------------------------
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10236
14833
3c5e36997f11 8005033: clear high word for integer pop count on SPARC
twisti
parents: 13970
diff changeset
 10237
instruct countLeadingZerosI(iRegIsafe dst, iRegI src, iRegI tmp, flagsReg cr) %{
2862
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10238
  predicate(UsePopCountInstruction);  // See Matcher::match_rule_supported
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10239
  match(Set dst (CountLeadingZerosI src));
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10240
  effect(TEMP dst, TEMP tmp, KILL cr);
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10241
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10242
  // x |= (x >> 1);
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10243
  // x |= (x >> 2);
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10244
  // x |= (x >> 4);
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10245
  // x |= (x >> 8);
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10246
  // x |= (x >> 16);
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10247
  // return (WORDBITS - popc(x));
4096
5d08743da209 6893554: SPECjvm2008 mpegaudio fails with SecurityException
twisti
parents: 4019
diff changeset
 10248
  format %{ "SRL     $src,1,$tmp\t! count leading zeros (int)\n\t"
5d08743da209 6893554: SPECjvm2008 mpegaudio fails with SecurityException
twisti
parents: 4019
diff changeset
 10249
            "SRL     $src,0,$dst\t! 32-bit zero extend\n\t"
5d08743da209 6893554: SPECjvm2008 mpegaudio fails with SecurityException
twisti
parents: 4019
diff changeset
 10250
            "OR      $dst,$tmp,$dst\n\t"
2862
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10251
            "SRL     $dst,2,$tmp\n\t"
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10252
            "OR      $dst,$tmp,$dst\n\t"
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10253
            "SRL     $dst,4,$tmp\n\t"
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10254
            "OR      $dst,$tmp,$dst\n\t"
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10255
            "SRL     $dst,8,$tmp\n\t"
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10256
            "OR      $dst,$tmp,$dst\n\t"
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10257
            "SRL     $dst,16,$tmp\n\t"
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10258
            "OR      $dst,$tmp,$dst\n\t"
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10259
            "POPC    $dst,$dst\n\t"
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10260
            "MOV     32,$tmp\n\t"
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10261
            "SUB     $tmp,$dst,$dst" %}
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10262
  ins_encode %{
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10263
    Register Rdst = $dst$$Register;
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10264
    Register Rsrc = $src$$Register;
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10265
    Register Rtmp = $tmp$$Register;
7116
e24b7743e3d4 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 7115
diff changeset
 10266
    __ srl(Rsrc, 1,    Rtmp);
e24b7743e3d4 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 7115
diff changeset
 10267
    __ srl(Rsrc, 0,    Rdst);
4096
5d08743da209 6893554: SPECjvm2008 mpegaudio fails with SecurityException
twisti
parents: 4019
diff changeset
 10268
    __ or3(Rdst, Rtmp, Rdst);
7116
e24b7743e3d4 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 7115
diff changeset
 10269
    __ srl(Rdst, 2,    Rtmp);
2862
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10270
    __ or3(Rdst, Rtmp, Rdst);
7116
e24b7743e3d4 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 7115
diff changeset
 10271
    __ srl(Rdst, 4,    Rtmp);
2862
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10272
    __ or3(Rdst, Rtmp, Rdst);
7116
e24b7743e3d4 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 7115
diff changeset
 10273
    __ srl(Rdst, 8,    Rtmp);
2862
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10274
    __ or3(Rdst, Rtmp, Rdst);
7116
e24b7743e3d4 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 7115
diff changeset
 10275
    __ srl(Rdst, 16,   Rtmp);
2862
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10276
    __ or3(Rdst, Rtmp, Rdst);
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10277
    __ popc(Rdst, Rdst);
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10278
    __ mov(BitsPerInt, Rtmp);
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10279
    __ sub(Rtmp, Rdst, Rdst);
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10280
  %}
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10281
  ins_pipe(ialu_reg);
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10282
%}
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10283
7116
e24b7743e3d4 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 7115
diff changeset
 10284
instruct countLeadingZerosL(iRegIsafe dst, iRegL src, iRegL tmp, flagsReg cr) %{
2862
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10285
  predicate(UsePopCountInstruction);  // See Matcher::match_rule_supported
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10286
  match(Set dst (CountLeadingZerosL src));
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10287
  effect(TEMP dst, TEMP tmp, KILL cr);
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10288
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10289
  // x |= (x >> 1);
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10290
  // x |= (x >> 2);
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10291
  // x |= (x >> 4);
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10292
  // x |= (x >> 8);
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10293
  // x |= (x >> 16);
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10294
  // x |= (x >> 32);
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10295
  // return (WORDBITS - popc(x));
4096
5d08743da209 6893554: SPECjvm2008 mpegaudio fails with SecurityException
twisti
parents: 4019
diff changeset
 10296
  format %{ "SRLX    $src,1,$tmp\t! count leading zeros (long)\n\t"
2862
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10297
            "OR      $src,$tmp,$dst\n\t"
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10298
            "SRLX    $dst,2,$tmp\n\t"
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10299
            "OR      $dst,$tmp,$dst\n\t"
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10300
            "SRLX    $dst,4,$tmp\n\t"
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10301
            "OR      $dst,$tmp,$dst\n\t"
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10302
            "SRLX    $dst,8,$tmp\n\t"
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10303
            "OR      $dst,$tmp,$dst\n\t"
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10304
            "SRLX    $dst,16,$tmp\n\t"
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10305
            "OR      $dst,$tmp,$dst\n\t"
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10306
            "SRLX    $dst,32,$tmp\n\t"
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10307
            "OR      $dst,$tmp,$dst\n\t"
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10308
            "POPC    $dst,$dst\n\t"
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10309
            "MOV     64,$tmp\n\t"
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10310
            "SUB     $tmp,$dst,$dst" %}
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10311
  ins_encode %{
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10312
    Register Rdst = $dst$$Register;
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10313
    Register Rsrc = $src$$Register;
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10314
    Register Rtmp = $tmp$$Register;
7116
e24b7743e3d4 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 7115
diff changeset
 10315
    __ srlx(Rsrc, 1,    Rtmp);
e24b7743e3d4 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 7115
diff changeset
 10316
    __ or3( Rsrc, Rtmp, Rdst);
e24b7743e3d4 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 7115
diff changeset
 10317
    __ srlx(Rdst, 2,    Rtmp);
e24b7743e3d4 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 7115
diff changeset
 10318
    __ or3( Rdst, Rtmp, Rdst);
e24b7743e3d4 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 7115
diff changeset
 10319
    __ srlx(Rdst, 4,    Rtmp);
e24b7743e3d4 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 7115
diff changeset
 10320
    __ or3( Rdst, Rtmp, Rdst);
e24b7743e3d4 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 7115
diff changeset
 10321
    __ srlx(Rdst, 8,    Rtmp);
e24b7743e3d4 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 7115
diff changeset
 10322
    __ or3( Rdst, Rtmp, Rdst);
e24b7743e3d4 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 7115
diff changeset
 10323
    __ srlx(Rdst, 16,   Rtmp);
e24b7743e3d4 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 7115
diff changeset
 10324
    __ or3( Rdst, Rtmp, Rdst);
e24b7743e3d4 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 7115
diff changeset
 10325
    __ srlx(Rdst, 32,   Rtmp);
e24b7743e3d4 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 7115
diff changeset
 10326
    __ or3( Rdst, Rtmp, Rdst);
2862
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10327
    __ popc(Rdst, Rdst);
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10328
    __ mov(BitsPerLong, Rtmp);
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10329
    __ sub(Rtmp, Rdst, Rdst);
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10330
  %}
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10331
  ins_pipe(ialu_reg);
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10332
%}
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10333
14833
3c5e36997f11 8005033: clear high word for integer pop count on SPARC
twisti
parents: 13970
diff changeset
 10334
instruct countTrailingZerosI(iRegIsafe dst, iRegI src, flagsReg cr) %{
2862
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10335
  predicate(UsePopCountInstruction);  // See Matcher::match_rule_supported
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10336
  match(Set dst (CountTrailingZerosI src));
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10337
  effect(TEMP dst, KILL cr);
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10338
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10339
  // return popc(~x & (x - 1));
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10340
  format %{ "SUB     $src,1,$dst\t! count trailing zeros (int)\n\t"
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10341
            "ANDN    $dst,$src,$dst\n\t"
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10342
            "SRL     $dst,R_G0,$dst\n\t"
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10343
            "POPC    $dst,$dst" %}
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10344
  ins_encode %{
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10345
    Register Rdst = $dst$$Register;
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10346
    Register Rsrc = $src$$Register;
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10347
    __ sub(Rsrc, 1, Rdst);
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10348
    __ andn(Rdst, Rsrc, Rdst);
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10349
    __ srl(Rdst, G0, Rdst);
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10350
    __ popc(Rdst, Rdst);
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10351
  %}
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10352
  ins_pipe(ialu_reg);
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10353
%}
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10354
10736
1a11ec86574e 7100757: The BitSet.nextSetBit() produces incorrect result in 32bit VM on Sparc
kvn
parents: 10507
diff changeset
 10355
instruct countTrailingZerosL(iRegIsafe dst, iRegL src, flagsReg cr) %{
2862
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10356
  predicate(UsePopCountInstruction);  // See Matcher::match_rule_supported
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10357
  match(Set dst (CountTrailingZerosL src));
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10358
  effect(TEMP dst, KILL cr);
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10359
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10360
  // return popc(~x & (x - 1));
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10361
  format %{ "SUB     $src,1,$dst\t! count trailing zeros (long)\n\t"
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10362
            "ANDN    $dst,$src,$dst\n\t"
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10363
            "POPC    $dst,$dst" %}
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10364
  ins_encode %{
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10365
    Register Rdst = $dst$$Register;
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10366
    Register Rsrc = $src$$Register;
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10367
    __ sub(Rsrc, 1, Rdst);
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10368
    __ andn(Rdst, Rsrc, Rdst);
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10369
    __ popc(Rdst, Rdst);
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10370
  %}
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10371
  ins_pipe(ialu_reg);
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10372
%}
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10373
fad636edf18f 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 2576
diff changeset
 10374
2255
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
 10375
//---------- Population Count Instructions -------------------------------------
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
 10376
14833
3c5e36997f11 8005033: clear high word for integer pop count on SPARC
twisti
parents: 13970
diff changeset
 10377
instruct popCountI(iRegIsafe dst, iRegI src) %{
2255
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
 10378
  predicate(UsePopCountInstruction);
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
 10379
  match(Set dst (PopCountI src));
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
 10380
14833
3c5e36997f11 8005033: clear high word for integer pop count on SPARC
twisti
parents: 13970
diff changeset
 10381
  format %{ "SRL    $src, G0, $dst\t! clear upper word for 64 bit POPC\n\t"
3c5e36997f11 8005033: clear high word for integer pop count on SPARC
twisti
parents: 13970
diff changeset
 10382
            "POPC   $dst, $dst" %}
3c5e36997f11 8005033: clear high word for integer pop count on SPARC
twisti
parents: 13970
diff changeset
 10383
  ins_encode %{
3c5e36997f11 8005033: clear high word for integer pop count on SPARC
twisti
parents: 13970
diff changeset
 10384
    __ srl($src$$Register, G0, $dst$$Register);
3c5e36997f11 8005033: clear high word for integer pop count on SPARC
twisti
parents: 13970
diff changeset
 10385
    __ popc($dst$$Register, $dst$$Register);
2255
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
 10386
  %}
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
 10387
  ins_pipe(ialu_reg);
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
 10388
%}
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
 10389
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
 10390
// Note: Long.bitCount(long) returns an int.
14833
3c5e36997f11 8005033: clear high word for integer pop count on SPARC
twisti
parents: 13970
diff changeset
 10391
instruct popCountL(iRegIsafe dst, iRegL src) %{
2255
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
 10392
  predicate(UsePopCountInstruction);
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
 10393
  match(Set dst (PopCountL src));
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
 10394
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
 10395
  format %{ "POPC   $src, $dst" %}
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
 10396
  ins_encode %{
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
 10397
    __ popc($src$$Register, $dst$$Register);
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
 10398
  %}
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
 10399
  ins_pipe(ialu_reg);
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
 10400
%}
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
 10401
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2254
diff changeset
 10402
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10403
// ============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10404
//------------Bytes reverse--------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10405
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10406
instruct bytes_reverse_int(iRegI dst, stackSlotI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10407
  match(Set dst (ReverseBytesI src));
5352
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10408
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10409
  // Op cost is artificially doubled to make sure that load or store
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10410
  // instructions are preferred over this one which requires a spill
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10411
  // onto a stack slot.
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10412
  ins_cost(2*DEFAULT_COST + MEMORY_REF_COST);
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10413
  format %{ "LDUWA  $src, $dst\t!asi=primary_little" %}
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10414
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10415
  ins_encode %{
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10416
    __ set($src$$disp + STACK_BIAS, O7);
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10417
    __ lduwa($src$$base$$Register, O7, Assembler::ASI_PRIMARY_LITTLE, $dst$$Register);
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10418
  %}
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10419
  ins_pipe( iload_mem );
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10420
%}
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10421
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10422
instruct bytes_reverse_long(iRegL dst, stackSlotL src) %{
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10423
  match(Set dst (ReverseBytesL src));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10424
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10425
  // Op cost is artificially doubled to make sure that load or store
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10426
  // instructions are preferred over this one which requires a spill
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10427
  // onto a stack slot.
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10428
  ins_cost(2*DEFAULT_COST + MEMORY_REF_COST);
5352
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10429
  format %{ "LDXA   $src, $dst\t!asi=primary_little" %}
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10430
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10431
  ins_encode %{
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10432
    __ set($src$$disp + STACK_BIAS, O7);
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10433
    __ ldxa($src$$base$$Register, O7, Assembler::ASI_PRIMARY_LITTLE, $dst$$Register);
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10434
  %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10435
  ins_pipe( iload_mem );
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10436
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10437
5352
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10438
instruct bytes_reverse_unsigned_short(iRegI dst, stackSlotI src) %{
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10439
  match(Set dst (ReverseBytesUS src));
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10440
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10441
  // Op cost is artificially doubled to make sure that load or store
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10442
  // instructions are preferred over this one which requires a spill
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10443
  // onto a stack slot.
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10444
  ins_cost(2*DEFAULT_COST + MEMORY_REF_COST);
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10445
  format %{ "LDUHA  $src, $dst\t!asi=primary_little\n\t" %}
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10446
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10447
  ins_encode %{
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10448
    // the value was spilled as an int so bias the load
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10449
    __ set($src$$disp + STACK_BIAS + 2, O7);
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10450
    __ lduha($src$$base$$Register, O7, Assembler::ASI_PRIMARY_LITTLE, $dst$$Register);
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10451
  %}
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10452
  ins_pipe( iload_mem );
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10453
%}
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10454
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10455
instruct bytes_reverse_short(iRegI dst, stackSlotI src) %{
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10456
  match(Set dst (ReverseBytesS src));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10457
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10458
  // Op cost is artificially doubled to make sure that load or store
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10459
  // instructions are preferred over this one which requires a spill
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10460
  // onto a stack slot.
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10461
  ins_cost(2*DEFAULT_COST + MEMORY_REF_COST);
5352
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10462
  format %{ "LDSHA  $src, $dst\t!asi=primary_little\n\t" %}
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10463
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10464
  ins_encode %{
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10465
    // the value was spilled as an int so bias the load
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10466
    __ set($src$$disp + STACK_BIAS + 2, O7);
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10467
    __ ldsha($src$$base$$Register, O7, Assembler::ASI_PRIMARY_LITTLE, $dst$$Register);
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10468
  %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10469
  ins_pipe( iload_mem );
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10470
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10471
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10472
// Load Integer reversed byte order
5352
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10473
instruct loadI_reversed(iRegI dst, indIndexMemory src) %{
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10474
  match(Set dst (ReverseBytesI (LoadI src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10475
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10476
  ins_cost(DEFAULT_COST + MEMORY_REF_COST);
5352
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10477
  size(4);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10478
  format %{ "LDUWA  $src, $dst\t!asi=primary_little" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10479
5352
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10480
  ins_encode %{
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10481
    __ lduwa($src$$base$$Register, $src$$index$$Register, Assembler::ASI_PRIMARY_LITTLE, $dst$$Register);
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10482
  %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10483
  ins_pipe(iload_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10484
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10485
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10486
// Load Long - aligned and reversed
5352
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10487
instruct loadL_reversed(iRegL dst, indIndexMemory src) %{
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10488
  match(Set dst (ReverseBytesL (LoadL src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10489
5352
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10490
  ins_cost(MEMORY_REF_COST);
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10491
  size(4);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10492
  format %{ "LDXA   $src, $dst\t!asi=primary_little" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10493
5352
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10494
  ins_encode %{
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10495
    __ ldxa($src$$base$$Register, $src$$index$$Register, Assembler::ASI_PRIMARY_LITTLE, $dst$$Register);
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10496
  %}
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10497
  ins_pipe(iload_mem);
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10498
%}
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10499
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10500
// Load unsigned short / char reversed byte order
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10501
instruct loadUS_reversed(iRegI dst, indIndexMemory src) %{
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10502
  match(Set dst (ReverseBytesUS (LoadUS src)));
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10503
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10504
  ins_cost(MEMORY_REF_COST);
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10505
  size(4);
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10506
  format %{ "LDUHA  $src, $dst\t!asi=primary_little" %}
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10507
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10508
  ins_encode %{
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10509
    __ lduha($src$$base$$Register, $src$$index$$Register, Assembler::ASI_PRIMARY_LITTLE, $dst$$Register);
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10510
  %}
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10511
  ins_pipe(iload_mem);
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10512
%}
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10513
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10514
// Load short reversed byte order
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10515
instruct loadS_reversed(iRegI dst, indIndexMemory src) %{
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10516
  match(Set dst (ReverseBytesS (LoadS src)));
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10517
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10518
  ins_cost(MEMORY_REF_COST);
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10519
  size(4);
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10520
  format %{ "LDSHA  $src, $dst\t!asi=primary_little" %}
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10521
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10522
  ins_encode %{
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10523
    __ ldsha($src$$base$$Register, $src$$index$$Register, Assembler::ASI_PRIMARY_LITTLE, $dst$$Register);
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10524
  %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10525
  ins_pipe(iload_mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10526
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10527
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10528
// Store Integer reversed byte order
5352
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10529
instruct storeI_reversed(indIndexMemory dst, iRegI src) %{
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10530
  match(Set dst (StoreI dst (ReverseBytesI src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10531
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10532
  ins_cost(MEMORY_REF_COST);
5352
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10533
  size(4);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10534
  format %{ "STWA   $src, $dst\t!asi=primary_little" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10535
5352
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10536
  ins_encode %{
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10537
    __ stwa($src$$Register, $dst$$base$$Register, $dst$$index$$Register, Assembler::ASI_PRIMARY_LITTLE);
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10538
  %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10539
  ins_pipe(istore_mem_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10540
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10541
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10542
// Store Long reversed byte order
5352
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10543
instruct storeL_reversed(indIndexMemory dst, iRegL src) %{
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10544
  match(Set dst (StoreL dst (ReverseBytesL src)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10545
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10546
  ins_cost(MEMORY_REF_COST);
5352
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10547
  size(4);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10548
  format %{ "STXA   $src, $dst\t!asi=primary_little" %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10549
5352
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10550
  ins_encode %{
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10551
    __ stxa($src$$Register, $dst$$base$$Register, $dst$$index$$Register, Assembler::ASI_PRIMARY_LITTLE);
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10552
  %}
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10553
  ins_pipe(istore_mem_reg);
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10554
%}
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10555
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10556
// Store unsighed short/char reversed byte order
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10557
instruct storeUS_reversed(indIndexMemory dst, iRegI src) %{
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10558
  match(Set dst (StoreC dst (ReverseBytesUS src)));
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10559
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10560
  ins_cost(MEMORY_REF_COST);
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10561
  size(4);
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10562
  format %{ "STHA   $src, $dst\t!asi=primary_little" %}
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10563
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10564
  ins_encode %{
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10565
    __ stha($src$$Register, $dst$$base$$Register, $dst$$index$$Register, Assembler::ASI_PRIMARY_LITTLE);
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10566
  %}
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10567
  ins_pipe(istore_mem_reg);
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10568
%}
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10569
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10570
// Store short reversed byte order
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10571
instruct storeS_reversed(indIndexMemory dst, iRegI src) %{
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10572
  match(Set dst (StoreC dst (ReverseBytesS src)));
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10573
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10574
  ins_cost(MEMORY_REF_COST);
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10575
  size(4);
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10576
  format %{ "STHA   $src, $dst\t!asi=primary_little" %}
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10577
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10578
  ins_encode %{
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10579
    __ stha($src$$Register, $dst$$base$$Register, $dst$$index$$Register, Assembler::ASI_PRIMARY_LITTLE);
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 5251
diff changeset
 10580
  %}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10581
  ins_pipe(istore_mem_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10582
%}
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10583
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10584
// ====================VECTOR INSTRUCTIONS=====================================
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10585
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10586
// Load Aligned Packed values into a Double Register
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10587
instruct loadV8(regD dst, memory mem) %{
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10588
  predicate(n->as_LoadVector()->memory_size() == 8);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10589
  match(Set dst (LoadVector mem));
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10590
  ins_cost(MEMORY_REF_COST);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10591
  size(4);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10592
  format %{ "LDDF   $mem,$dst\t! load vector (8 bytes)" %}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10593
  ins_encode %{
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10594
    __ ldf(FloatRegisterImpl::D, $mem$$Address, as_DoubleFloatRegister($dst$$reg));
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10595
  %}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10596
  ins_pipe(floadD_mem);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10597
%}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10598
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10599
// Store Vector in Double register to memory
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10600
instruct storeV8(memory mem, regD src) %{
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10601
  predicate(n->as_StoreVector()->memory_size() == 8);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10602
  match(Set mem (StoreVector mem src));
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10603
  ins_cost(MEMORY_REF_COST);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10604
  size(4);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10605
  format %{ "STDF   $src,$mem\t! store vector (8 bytes)" %}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10606
  ins_encode %{
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10607
    __ stf(FloatRegisterImpl::D, as_DoubleFloatRegister($src$$reg), $mem$$Address);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10608
  %}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10609
  ins_pipe(fstoreD_mem_reg);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10610
%}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10611
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10612
// Store Zero into vector in memory
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10613
instruct storeV8B_zero(memory mem, immI0 zero) %{
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10614
  predicate(n->as_StoreVector()->memory_size() == 8);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10615
  match(Set mem (StoreVector mem (ReplicateB zero)));
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10616
  ins_cost(MEMORY_REF_COST);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10617
  size(4);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10618
  format %{ "STX    $zero,$mem\t! store zero vector (8 bytes)" %}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10619
  ins_encode %{
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10620
    __ stx(G0, $mem$$Address);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10621
  %}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10622
  ins_pipe(fstoreD_mem_zero);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10623
%}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10624
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10625
instruct storeV4S_zero(memory mem, immI0 zero) %{
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10626
  predicate(n->as_StoreVector()->memory_size() == 8);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10627
  match(Set mem (StoreVector mem (ReplicateS zero)));
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10628
  ins_cost(MEMORY_REF_COST);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10629
  size(4);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10630
  format %{ "STX    $zero,$mem\t! store zero vector (4 shorts)" %}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10631
  ins_encode %{
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10632
    __ stx(G0, $mem$$Address);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10633
  %}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10634
  ins_pipe(fstoreD_mem_zero);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10635
%}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10636
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10637
instruct storeV2I_zero(memory mem, immI0 zero) %{
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10638
  predicate(n->as_StoreVector()->memory_size() == 8);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10639
  match(Set mem (StoreVector mem (ReplicateI zero)));
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10640
  ins_cost(MEMORY_REF_COST);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10641
  size(4);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10642
  format %{ "STX    $zero,$mem\t! store zero vector (2 ints)" %}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10643
  ins_encode %{
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10644
    __ stx(G0, $mem$$Address);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10645
  %}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10646
  ins_pipe(fstoreD_mem_zero);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10647
%}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10648
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10649
instruct storeV2F_zero(memory mem, immF0 zero) %{
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10650
  predicate(n->as_StoreVector()->memory_size() == 8);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10651
  match(Set mem (StoreVector mem (ReplicateF zero)));
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10652
  ins_cost(MEMORY_REF_COST);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10653
  size(4);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10654
  format %{ "STX    $zero,$mem\t! store zero vector (2 floats)" %}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10655
  ins_encode %{
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10656
    __ stx(G0, $mem$$Address);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10657
  %}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10658
  ins_pipe(fstoreD_mem_zero);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10659
%}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10660
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10661
// Replicate scalar to packed byte values into Double register
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10662
instruct Repl8B_reg(regD dst, iRegI src, iRegL tmp, o7RegL tmp2) %{
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10663
  predicate(n->as_Vector()->length() == 8 && UseVIS >= 3);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10664
  match(Set dst (ReplicateB src));
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10665
  effect(DEF dst, USE src, TEMP tmp, KILL tmp2);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10666
  format %{ "SLLX  $src,56,$tmp\n\t"
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10667
            "SRLX  $tmp, 8,$tmp2\n\t"
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10668
            "OR    $tmp,$tmp2,$tmp\n\t"
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10669
            "SRLX  $tmp,16,$tmp2\n\t"
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10670
            "OR    $tmp,$tmp2,$tmp\n\t"
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10671
            "SRLX  $tmp,32,$tmp2\n\t"
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10672
            "OR    $tmp,$tmp2,$tmp\t! replicate8B\n\t"
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10673
            "MOVXTOD $tmp,$dst\t! MoveL2D" %}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10674
  ins_encode %{
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10675
    Register Rsrc = $src$$Register;
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10676
    Register Rtmp = $tmp$$Register;
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10677
    Register Rtmp2 = $tmp2$$Register;
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10678
    __ sllx(Rsrc,    56, Rtmp);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10679
    __ srlx(Rtmp,     8, Rtmp2);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10680
    __ or3 (Rtmp, Rtmp2, Rtmp);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10681
    __ srlx(Rtmp,    16, Rtmp2);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10682
    __ or3 (Rtmp, Rtmp2, Rtmp);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10683
    __ srlx(Rtmp,    32, Rtmp2);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10684
    __ or3 (Rtmp, Rtmp2, Rtmp);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10685
    __ movxtod(Rtmp, as_DoubleFloatRegister($dst$$reg));
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10686
  %}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10687
  ins_pipe(ialu_reg);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10688
%}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10689
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10690
// Replicate scalar to packed byte values into Double stack
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10691
instruct Repl8B_stk(stackSlotD dst, iRegI src, iRegL tmp, o7RegL tmp2) %{
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10692
  predicate(n->as_Vector()->length() == 8 && UseVIS < 3);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10693
  match(Set dst (ReplicateB src));
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10694
  effect(DEF dst, USE src, TEMP tmp, KILL tmp2);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10695
  format %{ "SLLX  $src,56,$tmp\n\t"
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10696
            "SRLX  $tmp, 8,$tmp2\n\t"
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10697
            "OR    $tmp,$tmp2,$tmp\n\t"
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10698
            "SRLX  $tmp,16,$tmp2\n\t"
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10699
            "OR    $tmp,$tmp2,$tmp\n\t"
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10700
            "SRLX  $tmp,32,$tmp2\n\t"
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10701
            "OR    $tmp,$tmp2,$tmp\t! replicate8B\n\t"
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10702
            "STX   $tmp,$dst\t! regL to stkD" %}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10703
  ins_encode %{
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10704
    Register Rsrc = $src$$Register;
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10705
    Register Rtmp = $tmp$$Register;
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10706
    Register Rtmp2 = $tmp2$$Register;
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10707
    __ sllx(Rsrc,    56, Rtmp);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10708
    __ srlx(Rtmp,     8, Rtmp2);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10709
    __ or3 (Rtmp, Rtmp2, Rtmp);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10710
    __ srlx(Rtmp,    16, Rtmp2);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10711
    __ or3 (Rtmp, Rtmp2, Rtmp);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10712
    __ srlx(Rtmp,    32, Rtmp2);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10713
    __ or3 (Rtmp, Rtmp2, Rtmp);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10714
    __ set ($dst$$disp + STACK_BIAS, Rtmp2);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10715
    __ stx (Rtmp, Rtmp2, $dst$$base$$Register);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10716
  %}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10717
  ins_pipe(ialu_reg);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10718
%}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10719
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10720
// Replicate scalar constant to packed byte values in Double register
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10721
instruct Repl8B_immI(regD dst, immI13 con, o7RegI tmp) %{
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10722
  predicate(n->as_Vector()->length() == 8);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10723
  match(Set dst (ReplicateB con));
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10724
  effect(KILL tmp);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10725
  format %{ "LDDF   [$constanttablebase + $constantoffset],$dst\t! load from constant table: Repl8B($con)" %}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10726
  ins_encode %{
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10727
    // XXX This is a quick fix for 6833573.
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10728
    //__ ldf(FloatRegisterImpl::D, $constanttablebase, $constantoffset(replicate_immI($con$$constant, 8, 1)), $dst$$FloatRegister);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10729
    RegisterOrConstant con_offset = __ ensure_simm13_or_reg($constantoffset(replicate_immI($con$$constant, 8, 1)), $tmp$$Register);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10730
    __ ldf(FloatRegisterImpl::D, $constanttablebase, con_offset, as_DoubleFloatRegister($dst$$reg));
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10731
  %}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10732
  ins_pipe(loadConFD);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10733
%}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10734
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10735
// Replicate scalar to packed char/short values into Double register
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10736
instruct Repl4S_reg(regD dst, iRegI src, iRegL tmp, o7RegL tmp2) %{
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10737
  predicate(n->as_Vector()->length() == 4 && UseVIS >= 3);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10738
  match(Set dst (ReplicateS src));
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10739
  effect(DEF dst, USE src, TEMP tmp, KILL tmp2);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10740
  format %{ "SLLX  $src,48,$tmp\n\t"
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10741
            "SRLX  $tmp,16,$tmp2\n\t"
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10742
            "OR    $tmp,$tmp2,$tmp\n\t"
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10743
            "SRLX  $tmp,32,$tmp2\n\t"
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10744
            "OR    $tmp,$tmp2,$tmp\t! replicate4S\n\t"
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10745
            "MOVXTOD $tmp,$dst\t! MoveL2D" %}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10746
  ins_encode %{
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10747
    Register Rsrc = $src$$Register;
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10748
    Register Rtmp = $tmp$$Register;
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10749
    Register Rtmp2 = $tmp2$$Register;
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10750
    __ sllx(Rsrc,    48, Rtmp);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10751
    __ srlx(Rtmp,    16, Rtmp2);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10752
    __ or3 (Rtmp, Rtmp2, Rtmp);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10753
    __ srlx(Rtmp,    32, Rtmp2);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10754
    __ or3 (Rtmp, Rtmp2, Rtmp);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10755
    __ movxtod(Rtmp, as_DoubleFloatRegister($dst$$reg));
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10756
  %}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10757
  ins_pipe(ialu_reg);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10758
%}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10759
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10760
// Replicate scalar to packed char/short values into Double stack
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10761
instruct Repl4S_stk(stackSlotD dst, iRegI src, iRegL tmp, o7RegL tmp2) %{
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10762
  predicate(n->as_Vector()->length() == 4 && UseVIS < 3);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10763
  match(Set dst (ReplicateS src));
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10764
  effect(DEF dst, USE src, TEMP tmp, KILL tmp2);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10765
  format %{ "SLLX  $src,48,$tmp\n\t"
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10766
            "SRLX  $tmp,16,$tmp2\n\t"
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10767
            "OR    $tmp,$tmp2,$tmp\n\t"
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10768
            "SRLX  $tmp,32,$tmp2\n\t"
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10769
            "OR    $tmp,$tmp2,$tmp\t! replicate4S\n\t"
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10770
            "STX   $tmp,$dst\t! regL to stkD" %}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10771
  ins_encode %{
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10772
    Register Rsrc = $src$$Register;
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10773
    Register Rtmp = $tmp$$Register;
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10774
    Register Rtmp2 = $tmp2$$Register;
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10775
    __ sllx(Rsrc,    48, Rtmp);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10776
    __ srlx(Rtmp,    16, Rtmp2);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10777
    __ or3 (Rtmp, Rtmp2, Rtmp);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10778
    __ srlx(Rtmp,    32, Rtmp2);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10779
    __ or3 (Rtmp, Rtmp2, Rtmp);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10780
    __ set ($dst$$disp + STACK_BIAS, Rtmp2);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10781
    __ stx (Rtmp, Rtmp2, $dst$$base$$Register);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10782
  %}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10783
  ins_pipe(ialu_reg);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10784
%}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10785
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10786
// Replicate scalar constant to packed char/short values in Double register
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10787
instruct Repl4S_immI(regD dst, immI con, o7RegI tmp) %{
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10788
  predicate(n->as_Vector()->length() == 4);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10789
  match(Set dst (ReplicateS con));
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10790
  effect(KILL tmp);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10791
  format %{ "LDDF   [$constanttablebase + $constantoffset],$dst\t! load from constant table: Repl4S($con)" %}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10792
  ins_encode %{
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10793
    // XXX This is a quick fix for 6833573.
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10794
    //__ ldf(FloatRegisterImpl::D, $constanttablebase, $constantoffset(replicate_immI($con$$constant, 4, 2)), $dst$$FloatRegister);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10795
    RegisterOrConstant con_offset = __ ensure_simm13_or_reg($constantoffset(replicate_immI($con$$constant, 4, 2)), $tmp$$Register);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10796
    __ ldf(FloatRegisterImpl::D, $constanttablebase, con_offset, as_DoubleFloatRegister($dst$$reg));
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10797
  %}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10798
  ins_pipe(loadConFD);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10799
%}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10800
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10801
// Replicate scalar to packed int values into Double register
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10802
instruct Repl2I_reg(regD dst, iRegI src, iRegL tmp, o7RegL tmp2) %{
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10803
  predicate(n->as_Vector()->length() == 2 && UseVIS >= 3);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10804
  match(Set dst (ReplicateI src));
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10805
  effect(DEF dst, USE src, TEMP tmp, KILL tmp2);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10806
  format %{ "SLLX  $src,32,$tmp\n\t"
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10807
            "SRLX  $tmp,32,$tmp2\n\t"
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10808
            "OR    $tmp,$tmp2,$tmp\t! replicate2I\n\t"
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10809
            "MOVXTOD $tmp,$dst\t! MoveL2D" %}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10810
  ins_encode %{
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10811
    Register Rsrc = $src$$Register;
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10812
    Register Rtmp = $tmp$$Register;
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10813
    Register Rtmp2 = $tmp2$$Register;
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10814
    __ sllx(Rsrc,    32, Rtmp);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10815
    __ srlx(Rtmp,    32, Rtmp2);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10816
    __ or3 (Rtmp, Rtmp2, Rtmp);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10817
    __ movxtod(Rtmp, as_DoubleFloatRegister($dst$$reg));
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10818
  %}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10819
  ins_pipe(ialu_reg);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10820
%}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10821
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10822
// Replicate scalar to packed int values into Double stack
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10823
instruct Repl2I_stk(stackSlotD dst, iRegI src, iRegL tmp, o7RegL tmp2) %{
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10824
  predicate(n->as_Vector()->length() == 2 && UseVIS < 3);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10825
  match(Set dst (ReplicateI src));
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10826
  effect(DEF dst, USE src, TEMP tmp, KILL tmp2);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10827
  format %{ "SLLX  $src,32,$tmp\n\t"
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10828
            "SRLX  $tmp,32,$tmp2\n\t"
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10829
            "OR    $tmp,$tmp2,$tmp\t! replicate2I\n\t"
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10830
            "STX   $tmp,$dst\t! regL to stkD" %}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10831
  ins_encode %{
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10832
    Register Rsrc = $src$$Register;
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10833
    Register Rtmp = $tmp$$Register;
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10834
    Register Rtmp2 = $tmp2$$Register;
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10835
    __ sllx(Rsrc,    32, Rtmp);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10836
    __ srlx(Rtmp,    32, Rtmp2);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10837
    __ or3 (Rtmp, Rtmp2, Rtmp);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10838
    __ set ($dst$$disp + STACK_BIAS, Rtmp2);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10839
    __ stx (Rtmp, Rtmp2, $dst$$base$$Register);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10840
  %}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10841
  ins_pipe(ialu_reg);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10842
%}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10843
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10844
// Replicate scalar zero constant to packed int values in Double register
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10845
instruct Repl2I_immI(regD dst, immI con, o7RegI tmp) %{
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10846
  predicate(n->as_Vector()->length() == 2);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10847
  match(Set dst (ReplicateI con));
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10848
  effect(KILL tmp);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10849
  format %{ "LDDF   [$constanttablebase + $constantoffset],$dst\t! load from constant table: Repl2I($con)" %}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10850
  ins_encode %{
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10851
    // XXX This is a quick fix for 6833573.
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10852
    //__ ldf(FloatRegisterImpl::D, $constanttablebase, $constantoffset(replicate_immI($con$$constant, 2, 4)), $dst$$FloatRegister);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10853
    RegisterOrConstant con_offset = __ ensure_simm13_or_reg($constantoffset(replicate_immI($con$$constant, 2, 4)), $tmp$$Register);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10854
    __ ldf(FloatRegisterImpl::D, $constanttablebase, con_offset, as_DoubleFloatRegister($dst$$reg));
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10855
  %}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10856
  ins_pipe(loadConFD);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10857
%}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10858
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10859
// Replicate scalar to packed float values into Double stack
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10860
instruct Repl2F_stk(stackSlotD dst, regF src) %{
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10861
  predicate(n->as_Vector()->length() == 2);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10862
  match(Set dst (ReplicateF src));
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10863
  ins_cost(MEMORY_REF_COST*2);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10864
  format %{ "STF    $src,$dst.hi\t! packed2F\n\t"
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10865
            "STF    $src,$dst.lo" %}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10866
  opcode(Assembler::stf_op3);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10867
  ins_encode(simple_form3_mem_reg(dst, src), form3_mem_plus_4_reg(dst, src));
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10868
  ins_pipe(fstoreF_stk_reg);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10869
%}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10870
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10871
// Replicate scalar zero constant to packed float values in Double register
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10872
instruct Repl2F_immF(regD dst, immF con, o7RegI tmp) %{
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10873
  predicate(n->as_Vector()->length() == 2);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10874
  match(Set dst (ReplicateF con));
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10875
  effect(KILL tmp);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10876
  format %{ "LDDF   [$constanttablebase + $constantoffset],$dst\t! load from constant table: Repl2F($con)" %}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10877
  ins_encode %{
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10878
    // XXX This is a quick fix for 6833573.
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10879
    //__ ldf(FloatRegisterImpl::D, $constanttablebase, $constantoffset(replicate_immF($con$$constant)), $dst$$FloatRegister);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10880
    RegisterOrConstant con_offset = __ ensure_simm13_or_reg($constantoffset(replicate_immF($con$$constant)), $tmp$$Register);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10881
    __ ldf(FloatRegisterImpl::D, $constanttablebase, con_offset, as_DoubleFloatRegister($dst$$reg));
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10882
  %}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10883
  ins_pipe(loadConFD);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10884
%}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 12957
diff changeset
 10885
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10886
//----------PEEPHOLE RULES-----------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10887
// These must follow all instruction definitions as they use the names
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10888
// defined in the instructions definitions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10889
//
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 2022
diff changeset
 10890
// peepmatch ( root_instr_name [preceding_instruction]* );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10891
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10892
// peepconstraint %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10893
// (instruction_number.operand_name relational_op instruction_number.operand_name
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10894
//  [, ...] );
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10895
// // instruction numbers are zero-based using left to right order in peepmatch
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10896
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10897
// peepreplace ( instr_name  ( [instruction_number.operand_name]* ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10898
// // provide an instruction_number.operand_name for each operand that appears
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10899
// // in the replacement instruction's match rule
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10900
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10901
// ---------VM FLAGS---------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10902
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10903
// All peephole optimizations can be turned off using -XX:-OptoPeephole
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10904
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10905
// Each peephole rule is given an identifying number starting with zero and
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10906
// increasing by one in the order seen by the parser.  An individual peephole
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10907
// can be enabled, and all others disabled, by using -XX:OptoPeepholeAt=#
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10908
// on the command-line.
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10909
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10910
// ---------CURRENT LIMITATIONS----------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10911
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10912
// Only match adjacent instructions in same basic block
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10913
// Only equality constraints
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10914
// Only constraints between operands, not (0.dest_reg == EAX_enc)
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10915
// Only one replacement instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10916
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10917
// ---------EXAMPLE----------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10918
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10919
// // pertinent parts of existing instructions in architecture description
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10920
// instruct movI(eRegI dst, eRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10921
//   match(Set dst (CopyI src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10922
// %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10923
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10924
// instruct incI_eReg(eRegI dst, immI1 src, eFlagsReg cr) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10925
//   match(Set dst (AddI dst src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10926
//   effect(KILL cr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10927
// %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10928
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10929
// // Change (inc mov) to lea
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10930
// peephole %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10931
//   // increment preceeded by register-register move
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10932
//   peepmatch ( incI_eReg movI );
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10933
//   // require that the destination register of the increment
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10934
//   // match the destination register of the move
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10935
//   peepconstraint ( 0.dst == 1.dst );
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10936
//   // construct a replacement instruction that sets
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10937
//   // the destination to ( move's source register + one )
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10938
//   peepreplace ( incI_eReg_immI1( 0.dst 1.src 0.src ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10939
// %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10940
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10941
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10942
// // Change load of spilled value to only a spill
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10943
// instruct storeI(memory mem, eRegI src) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10944
//   match(Set mem (StoreI mem src));
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10945
// %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10946
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10947
// instruct loadI(eRegI dst, memory mem) %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10948
//   match(Set dst (LoadI mem));
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10949
// %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10950
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10951
// peephole %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10952
//   peepmatch ( loadI storeI );
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10953
//   peepconstraint ( 1.src == 0.dst, 1.mem == 0.mem );
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10954
//   peepreplace ( storeI( 1.mem 1.mem 1.src ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10955
// %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10956
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10957
//----------SMARTSPILL RULES---------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10958
// These must follow all instruction definitions as they use the names
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10959
// defined in the instructions definitions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10960
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10961
// SPARC will probably not have any of these rules due to RISC instruction set.
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10962
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10963
//----------PIPELINE-----------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
 10964
// Rules which define the behavior of the target architectures pipeline.