hotspot/src/cpu/sparc/vm/assembler_sparc.cpp
author jrose
Fri, 13 Mar 2009 18:39:22 -0700
changeset 2256 82d4e10b7c6b
parent 2254 f13dda645a4b
child 2344 f2e09ba7ceab
child 2332 5c7b6f4ce0a1
permissions -rw-r--r--
6813212: factor duplicated assembly code for general subclass check (for 6655638) Summary: Code in interp_masm, stubGenerator, c1_LIRAssembler, and AD files moved into MacroAssembler. Reviewed-by: kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
670
ddf3e9583f2f 6719955: Update copyright year
xdono
parents: 605
diff changeset
     2
 * Copyright 1997-2008 Sun Microsystems, Inc.  All Rights Reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
#include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
#include "incls/_assembler_sparc.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
// Implementation of Address
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
Address::Address( addr_type t, int which ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  switch (t) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
   case extra_in_argument:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
   case extra_out_argument:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
     _base = t == extra_in_argument ? FP : SP;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
     _hi   = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// Warning:  In LP64 mode, _disp will occupy more than 10 bits.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
//           This is inconsistent with the other constructors but op
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
//           codes such as ld or ldx, only access disp() to get their
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
//           simm13 argument.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
     _disp = ((which - Argument::n_register_parameters + frame::memory_parameter_word_sp_offset) * BytesPerWord) + STACK_BIAS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
   default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
static const char* argumentNames[][2] = {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  {"A0","P0"}, {"A1","P1"}, {"A2","P2"}, {"A3","P3"}, {"A4","P4"},
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  {"A5","P5"}, {"A6","P6"}, {"A7","P7"}, {"A8","P8"}, {"A9","P9"},
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  {"A(n>9)","P(n>9)"}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
const char* Argument::name() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  int nofArgs = sizeof argumentNames / sizeof argumentNames[0];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  int num = number();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  if (num >= nofArgs)  num = nofArgs - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  return argumentNames[num][is_in() ? 1 : 0];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
void Assembler::print_instruction(int inst) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  const char* s;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  switch (inv_op(inst)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  default:         s = "????"; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  case call_op:    s = "call"; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  case branch_op:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    switch (inv_op2(inst)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
      case bpr_op2:    s = "bpr";  break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
      case fb_op2:     s = "fb";   break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
      case fbp_op2:    s = "fbp";  break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
      case br_op2:     s = "br";   break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
      case bp_op2:     s = "bp";   break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
      case cb_op2:     s = "cb";   break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
      default:         s = "????"; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  ::tty->print("%s", s);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
// Patch instruction inst at offset inst_pos to refer to dest_pos
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
// and return the resulting instruction.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
// We should have pcs, not offsets, but since all is relative, it will work out
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
// OK.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
int Assembler::patched_branch(int dest_pos, int inst, int inst_pos) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  int m; // mask for displacement field
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  int v; // new value for displacement field
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  const int word_aligned_ones = -4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  switch (inv_op(inst)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  default: ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  case call_op:    m = wdisp(word_aligned_ones, 0, 30);  v = wdisp(dest_pos, inst_pos, 30); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  case branch_op:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    switch (inv_op2(inst)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
      case bpr_op2:    m = wdisp16(word_aligned_ones, 0);      v = wdisp16(dest_pos, inst_pos);     break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
      case fbp_op2:    m = wdisp(  word_aligned_ones, 0, 19);  v = wdisp(  dest_pos, inst_pos, 19); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
      case bp_op2:     m = wdisp(  word_aligned_ones, 0, 19);  v = wdisp(  dest_pos, inst_pos, 19); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
      case fb_op2:     m = wdisp(  word_aligned_ones, 0, 22);  v = wdisp(  dest_pos, inst_pos, 22); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
      case br_op2:     m = wdisp(  word_aligned_ones, 0, 22);  v = wdisp(  dest_pos, inst_pos, 22); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
      case cb_op2:     m = wdisp(  word_aligned_ones, 0, 22);  v = wdisp(  dest_pos, inst_pos, 22); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
      default: ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  return  inst & ~m  |  v;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
// Return the offset of the branch destionation of instruction inst
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
// at offset pos.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
// Should have pcs, but since all is relative, it works out.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
int Assembler::branch_destination(int inst, int pos) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  int r;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  switch (inv_op(inst)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  default: ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  case call_op:        r = inv_wdisp(inst, pos, 30);  break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  case branch_op:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    switch (inv_op2(inst)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
      case bpr_op2:    r = inv_wdisp16(inst, pos);    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
      case fbp_op2:    r = inv_wdisp(  inst, pos, 19);  break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
      case bp_op2:     r = inv_wdisp(  inst, pos, 19);  break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
      case fb_op2:     r = inv_wdisp(  inst, pos, 22);  break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
      case br_op2:     r = inv_wdisp(  inst, pos, 22);  break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
      case cb_op2:     r = inv_wdisp(  inst, pos, 22);  break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
      default: ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  return r;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
int AbstractAssembler::code_fill_byte() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  return 0x00;                  // illegal instruction 0x00000000
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
   133
Assembler::Condition Assembler::reg_cond_to_cc_cond(Assembler::RCondition in) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
   134
  switch (in) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
   135
  case rc_z:   return equal;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
   136
  case rc_lez: return lessEqual;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
   137
  case rc_lz:  return less;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
   138
  case rc_nz:  return notEqual;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
   139
  case rc_gz:  return greater;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
   140
  case rc_gez: return greaterEqual;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
   141
  default:
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
   142
    ShouldNotReachHere();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
   143
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
   144
  return equal;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
   145
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
   146
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
// Generate a bunch 'o stuff (including v9's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
void Assembler::test_v9() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  add(    G0, G1, G2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  add(    G3,  0, G4 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  addcc(  G5, G6, G7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  addcc(  I0,  1, I1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  addc(   I2, I3, I4 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  addc(   I5, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  addccc( I7, L0, L1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  addccc( L2, (1 << 12) - 2, L3 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  Label lbl1, lbl2, lbl3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  bind(lbl1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  bpr( rc_z,    true, pn, L4, pc(),  relocInfo::oop_type );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  bpr( rc_lez, false, pt, L5, lbl1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  fb( f_never,     true, pc() + 4,  relocInfo::none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  fb( f_notEqual, false, lbl2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  fbp( f_notZero,        true, fcc0, pn, pc() - 4,  relocInfo::none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  fbp( f_lessOrGreater, false, fcc1, pt, lbl3 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  br( equal,  true, pc() + 1024, relocInfo::none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  br( lessEqual, false, lbl1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  br( never, false, lbl1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  bp( less,               true, icc, pn, pc(), relocInfo::none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  bp( lessEqualUnsigned, false, xcc, pt, lbl2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  call( pc(), relocInfo::none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  call( lbl3 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  casa(  L6, L7, O0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  casxa( O1, O2, O3, 0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  udiv(   O4, O5, O7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  udiv(   G0, (1 << 12) - 1, G1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  sdiv(   G1, G2, G3 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  sdiv(   G4, -((1 << 12) - 1), G5 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  udivcc( G6, G7, I0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  udivcc( I1, -((1 << 12) - 2), I2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  sdivcc( I3, I4, I5 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  sdivcc( I6, -((1 << 12) - 0), I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  done();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  retry();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  fadd( FloatRegisterImpl::S, F0,  F1, F2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  fsub( FloatRegisterImpl::D, F34, F0, F62 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  fcmp(  FloatRegisterImpl::Q, fcc0, F0, F60);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  fcmpe( FloatRegisterImpl::S, fcc1, F31, F30);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  ftox( FloatRegisterImpl::D, F2, F4 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  ftoi( FloatRegisterImpl::Q, F4, F8 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  ftof( FloatRegisterImpl::S, FloatRegisterImpl::Q, F3, F12 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  fxtof( FloatRegisterImpl::S, F4, F5 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  fitof( FloatRegisterImpl::D, F6, F8 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  fmov( FloatRegisterImpl::Q, F16, F20 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  fneg( FloatRegisterImpl::S, F6, F7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  fabs( FloatRegisterImpl::D, F10, F12 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  fmul( FloatRegisterImpl::Q,  F24, F28, F32 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  fmul( FloatRegisterImpl::S,  FloatRegisterImpl::D,  F8, F9, F14 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  fdiv( FloatRegisterImpl::S,  F10, F11, F12 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  fsqrt( FloatRegisterImpl::S, F13, F14 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  flush( L0, L1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  flush( L2, -1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  flushw();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  illtrap( (1 << 22) - 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  impdep1( 17, (1 << 19) - 1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  impdep2( 3,  0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  jmpl( L3, L4, L5 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  jmpl( L6, -1, L7, Relocation::spec_simple(relocInfo::none));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  ldf(    FloatRegisterImpl::S, O0, O1, F15 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  ldf(    FloatRegisterImpl::D, O2, -1, F14 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  ldfsr(  O3, O4 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  ldfsr(  O5, -1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  ldxfsr( O6, O7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  ldxfsr( I0, -1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  ldfa(  FloatRegisterImpl::D, I1, I2, 1, F16 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  ldfa(  FloatRegisterImpl::Q, I3, -1,    F36 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  ldsb(  I4, I5, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  ldsb(  I7, -1, G0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  ldsh(  G1, G3, G4 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  ldsh(  G5, -1, G6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  ldsw(  G7, L0, L1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  ldsw(  L2, -1, L3 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  ldub(  L4, L5, L6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  ldub(  L7, -1, O0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  lduh(  O1, O2, O3 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  lduh(  O4, -1, O5 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  lduw(  O6, O7, G0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  lduw(  G1, -1, G2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  ldx(   G3, G4, G5 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  ldx(   G6, -1, G7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  ldd(   I0, I1, I2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  ldd(   I3, -1, I4 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  ldsba(  I5, I6, 2, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  ldsba(  L0, -1, L1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  ldsha(  L2, L3, 3, L4 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  ldsha(  L5, -1, L6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  ldswa(  L7, O0, (1 << 8) - 1, O1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  ldswa(  O2, -1, O3 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  lduba(  O4, O5, 0, O6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  lduba(  O7, -1, I0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  lduha(  I1, I2, 1, I3 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  lduha(  I4, -1, I5 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  lduwa(  I6, I7, 2, L0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  lduwa(  L1, -1, L2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  ldxa(   L3, L4, 3, L5 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  ldxa(   L6, -1, L7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  ldda(   G0, G1, 4, G2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  ldda(   G3, -1, G4 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  ldstub(  G5, G6, G7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  ldstub(  O0, -1, O1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  ldstuba( O2, O3, 5, O4 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  ldstuba( O5, -1, O6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  and3(    I0, L0, O0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  and3(    G7, -1, O7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  andcc(   L2, I2, G2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  andcc(   L4, -1, G4 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  andn(    I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  andn(    I6, -1, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  andncc(  I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  andncc(  I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  or3(     I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  or3(     I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  orcc(    I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  orcc(    I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  orn(     I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  orn(     I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  orncc(   I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  orncc(   I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  xor3(    I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  xor3(    I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  xorcc(   I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  xorcc(   I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  xnor(    I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  xnor(    I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  xnorcc(  I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  xnorcc(  I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  membar( Membar_mask_bits(StoreStore | LoadStore | StoreLoad | LoadLoad | Sync | MemIssue | Lookaside ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  membar( StoreStore );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  membar( LoadStore );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  membar( StoreLoad );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  membar( LoadLoad );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  membar( Sync );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  membar( MemIssue );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  membar( Lookaside );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  fmov( FloatRegisterImpl::S, f_ordered,  true, fcc2, F16, F17 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  fmov( FloatRegisterImpl::D, rc_lz, L5, F18, F20 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  movcc( overflowClear,  false, icc, I6, L4 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  movcc( f_unorderedOrEqual, true, fcc2, (1 << 10) - 1, O0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  movr( rc_nz, I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  movr( rc_gz, L1, -1,  L2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  mulx(  I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  mulx(  I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  sdivx( I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  sdivx( I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  udivx( I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  udivx( I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  umul(   I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  umul(   I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  smul(   I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  smul(   I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  umulcc( I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  umulcc( I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  smulcc( I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  smulcc( I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  mulscc(   I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  mulscc(   I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  popc( G0,  G1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  popc( -1, G2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  prefetch(   L1, L2,    severalReads );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  prefetch(   L3, -1,    oneRead );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  prefetcha(  O3, O2, 6, severalWritesAndPossiblyReads );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  prefetcha(  G2, -1,    oneWrite );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  rett( I7, I7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  rett( G0, -1, relocInfo::none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  save(    I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  save(    I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  restore( I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  restore( I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  saved();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  restored();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  sethi( 0xaaaaaaaa, I3, Relocation::spec_simple(relocInfo::none));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  sll(  I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  sll(  I7, 31, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  srl(  I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  srl(  I7,  0, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  sra(  I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  sra(  I7, 30, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  sllx( I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  sllx( I7, 63, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  srlx( I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  srlx( I7,  0, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  srax( I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  srax( I7, 62, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  sir( -1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  stbar();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  stf(    FloatRegisterImpl::Q, F40, G0, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  stf(    FloatRegisterImpl::S, F18, I3, -1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  stfsr(  L1, L2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  stfsr(  I7, -1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  stxfsr( I6, I5 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  stxfsr( L4, -1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  stfa(  FloatRegisterImpl::D, F22, I6, I7, 7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  stfa(  FloatRegisterImpl::Q, F44, G0, -1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  stb(  L5, O2, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  stb(  I7, I6, -1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  sth(  L5, O2, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  sth(  I7, I6, -1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  stw(  L5, O2, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
  stw(  I7, I6, -1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  stx(  L5, O2, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
  stx(  I7, I6, -1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  std(  L5, O2, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  std(  I7, I6, -1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  stba(  L5, O2, I7, 8 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  stba(  I7, I6, -1    );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  stha(  L5, O2, I7, 9 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  stha(  I7, I6, -1    );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  stwa(  L5, O2, I7, 0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
  stwa(  I7, I6, -1    );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
  stxa(  L5, O2, I7, 11 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  stxa(  I7, I6, -1     );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  stda(  L5, O2, I7, 12 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  stda(  I7, I6, -1     );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  sub(    I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  sub(    I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  subcc(  I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  subcc(  I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  subc(   I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  subc(   I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
  subccc( I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
  subccc( I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  swap( I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  swap( I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
  swapa(   G0, G1, 13, G2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
  swapa(   I7, -1,     I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  taddcc(    I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
  taddcc(    I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  taddcctv(  I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
  taddcctv(  I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
  tsubcc(    I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
  tsubcc(    I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  tsubcctv(  I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
  tsubcctv(  I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
  trap( overflowClear, xcc, G0, G1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  trap( lessEqual,     icc, I7, 17 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
  bind(lbl2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
  bind(lbl3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
  code()->decode();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
// Generate a bunch 'o stuff unique to V8
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
void Assembler::test_v8_onlys() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
  Label lbl1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
  cb( cp_0or1or2, false, pc() - 4, relocInfo::none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
  cb( cp_never,    true, lbl1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  cpop1(1, 2, 3, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  cpop2(5, 6, 7, 8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  ldc( I0, I1, 31);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  ldc( I2, -1,  0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  lddc( I4, I4, 30);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
  lddc( I6,  0, 1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  ldcsr( L0, L1, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  ldcsr( L1, (1 << 12) - 1, 17 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  stc( 31, L4, L5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  stc( 30, L6, -(1 << 12) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  stdc( 0, L7, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
  stdc( 1, G1, 0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  stcsr( 16, G2, G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  stcsr( 17, G4, 1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  stdcq( 4, G5, G6);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
  stdcq( 5, G7, -1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
  bind(lbl1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  code()->decode();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
// Implementation of MacroAssembler
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
void MacroAssembler::null_check(Register reg, int offset) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  if (needs_explicit_null_check((intptr_t)offset)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
    // provoke OS NULL exception if reg = NULL by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
    // accessing M[reg] w/o changing any registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
    ld_ptr(reg, 0, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
    // nothing to do, (later) access of M[reg + offset]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
    // will provoke OS NULL exception if reg = NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
// Ring buffer jumps
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
void MacroAssembler::ret(  bool trace )   { if (trace) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
                                                    mov(I7, O7); // traceable register
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
                                                    JMP(O7, 2 * BytesPerInstWord);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
                                                  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
                                                    jmpl( I7, 2 * BytesPerInstWord, G0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
                                                  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
                                                }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
void MacroAssembler::retl( bool trace )  { if (trace) JMP(O7, 2 * BytesPerInstWord);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
                                                 else jmpl( O7, 2 * BytesPerInstWord, G0 ); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
#endif /* PRODUCT */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
void MacroAssembler::jmp2(Register r1, Register r2, const char* file, int line ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
  // This can only be traceable if r1 & r2 are visible after a window save
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
  if (TraceJumps) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
    save_frame(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
    verify_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
    ld(G2_thread, in_bytes(JavaThread::jmp_ring_index_offset()), O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
    add(G2_thread, in_bytes(JavaThread::jmp_ring_offset()), O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
    sll(O0, exact_log2(4*sizeof(intptr_t)), O2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
    add(O2, O1, O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
    add(r1->after_save(), r2->after_save(), O2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
    set((intptr_t)file, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
    set(line, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
    Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
    // get nearby pc, store jmp target
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
    call(L, relocInfo::none);  // No relocation for call to pc+0x8
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
    delayed()->st(O2, O1, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
    bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
    // store nearby pc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
    st(O7, O1, sizeof(intptr_t));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
    // store file
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
    st(O3, O1, 2*sizeof(intptr_t));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
    // store line
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
    st(O4, O1, 3*sizeof(intptr_t));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
    add(O0, 1, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
    and3(O0, JavaThread::jump_ring_buffer_size  - 1, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
    st(O0, G2_thread, in_bytes(JavaThread::jmp_ring_index_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
    restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
#endif /* PRODUCT */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
  jmpl(r1, r2, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
void MacroAssembler::jmp(Register r1, int offset, const char* file, int line ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
  // This can only be traceable if r1 is visible after a window save
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
  if (TraceJumps) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
    save_frame(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
    verify_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
    ld(G2_thread, in_bytes(JavaThread::jmp_ring_index_offset()), O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
    add(G2_thread, in_bytes(JavaThread::jmp_ring_offset()), O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
    sll(O0, exact_log2(4*sizeof(intptr_t)), O2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
    add(O2, O1, O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
    add(r1->after_save(), offset, O2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
    set((intptr_t)file, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
    set(line, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
    Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
    // get nearby pc, store jmp target
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
    call(L, relocInfo::none);  // No relocation for call to pc+0x8
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
    delayed()->st(O2, O1, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
    bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
    // store nearby pc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
    st(O7, O1, sizeof(intptr_t));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
    // store file
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
    st(O3, O1, 2*sizeof(intptr_t));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
    // store line
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
    st(O4, O1, 3*sizeof(intptr_t));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
    add(O0, 1, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
    and3(O0, JavaThread::jump_ring_buffer_size  - 1, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
    st(O0, G2_thread, in_bytes(JavaThread::jmp_ring_index_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
    restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
#endif /* PRODUCT */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
  jmp(r1, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
// This code sequence is relocatable to any address, even on LP64.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
void MacroAssembler::jumpl( Address& a, Register d, int offset, const char* file, int line ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
  // Force fixed length sethi because NativeJump and NativeFarCall don't handle
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
  // variable length instruction streams.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
  sethi(a, /*ForceRelocatable=*/ true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
  if (TraceJumps) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
    // Must do the add here so relocation can find the remainder of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
    // value to be relocated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
    add(a.base(), a.disp() + offset, a.base(), a.rspec(offset));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
    save_frame(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
    verify_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
    ld(G2_thread, in_bytes(JavaThread::jmp_ring_index_offset()), O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
    add(G2_thread, in_bytes(JavaThread::jmp_ring_offset()), O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
    sll(O0, exact_log2(4*sizeof(intptr_t)), O2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
    add(O2, O1, O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
    set((intptr_t)file, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
    set(line, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
    Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
    // get nearby pc, store jmp target
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
    call(L, relocInfo::none);  // No relocation for call to pc+0x8
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
    delayed()->st(a.base()->after_save(), O1, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
    bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
    // store nearby pc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
    st(O7, O1, sizeof(intptr_t));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
    // store file
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
    st(O3, O1, 2*sizeof(intptr_t));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
    // store line
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
    st(O4, O1, 3*sizeof(intptr_t));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
    add(O0, 1, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
    and3(O0, JavaThread::jump_ring_buffer_size  - 1, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
    st(O0, G2_thread, in_bytes(JavaThread::jmp_ring_index_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
    restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
    jmpl(a.base(), G0, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
    jmpl(a, d, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
#endif /* PRODUCT */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
    jmpl(a, d, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
void MacroAssembler::jump( Address& a, int offset, const char* file, int line ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
  jumpl( a, G0, offset, file, line );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
// Convert to C varargs format
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
void MacroAssembler::set_varargs( Argument inArg, Register d ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
  // spill register-resident args to their memory slots
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
  // (SPARC calling convention requires callers to have already preallocated these)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
  // Note that the inArg might in fact be an outgoing argument,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
  // if a leaf routine or stub does some tricky argument shuffling.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
  // This routine must work even though one of the saved arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
  // is in the d register (e.g., set_varargs(Argument(0, false), O0)).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
  for (Argument savePtr = inArg;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
       savePtr.is_register();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
       savePtr = savePtr.successor()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
    st_ptr(savePtr.as_register(), savePtr.address_in_frame());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
  // return the address of the first memory slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
  add(inArg.address_in_frame(), d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
// Conditional breakpoint (for assertion checks in assembly code)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
void MacroAssembler::breakpoint_trap(Condition c, CC cc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
  trap(c, cc, G0, ST_RESERVED_FOR_USER_0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
// We want to use ST_BREAKPOINT here, but the debugger is confused by it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
void MacroAssembler::breakpoint_trap() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
  trap(ST_RESERVED_FOR_USER_0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
// flush windows (except current) using flushw instruction if avail.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
void MacroAssembler::flush_windows() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
  if (VM_Version::v9_instructions_work())  flushw();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
  else                                     flush_windows_trap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
// Write serialization page so VM thread can do a pseudo remote membar
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
// We use the current thread pointer to calculate a thread specific
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
// offset to write to within the page. This minimizes bus traffic
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
// due to cache line collision.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
void MacroAssembler::serialize_memory(Register thread, Register tmp1, Register tmp2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
  Address mem_serialize_page(tmp1, os::get_memory_serialize_page());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
  srl(thread, os::get_serialize_page_shift_count(), tmp2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
  if (Assembler::is_simm13(os::vm_page_size())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
    and3(tmp2, (os::vm_page_size() - sizeof(int)), tmp2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
    set((os::vm_page_size() - sizeof(int)), tmp1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
    and3(tmp2, tmp1, tmp2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
  load_address(mem_serialize_page);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
  st(G0, tmp1, tmp2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
void MacroAssembler::enter() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
  Unimplemented();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
void MacroAssembler::leave() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
  Unimplemented();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
void MacroAssembler::mult(Register s1, Register s2, Register d) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
  if(VM_Version::v9_instructions_work()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
    mulx (s1, s2, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
    smul (s1, s2, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
void MacroAssembler::mult(Register s1, int simm13a, Register d) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
  if(VM_Version::v9_instructions_work()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
    mulx (s1, simm13a, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
    smul (s1, simm13a, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
}
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
void MacroAssembler::read_ccr_v8_assert(Register ccr_save) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
  const Register s1 = G3_scratch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
  const Register s2 = G4_scratch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
  Label get_psr_test;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
  // Get the condition codes the V8 way.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
  read_ccr_trap(s1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
  mov(ccr_save, s2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
  // This is a test of V8 which has icc but not xcc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
  // so mask off the xcc bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
  and3(s2, 0xf, s2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
  // Compare condition codes from the V8 and V9 ways.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
  subcc(s2, s1, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
  br(Assembler::notEqual, true, Assembler::pt, get_psr_test);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
  delayed()->breakpoint_trap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
  bind(get_psr_test);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
void MacroAssembler::write_ccr_v8_assert(Register ccr_save) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
  const Register s1 = G3_scratch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
  const Register s2 = G4_scratch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
  Label set_psr_test;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
  // Write out the saved condition codes the V8 way
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
  write_ccr_trap(ccr_save, s1, s2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
  // Read back the condition codes using the V9 instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
  rdccr(s1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
  mov(ccr_save, s2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
  // This is a test of V8 which has icc but not xcc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
  // so mask off the xcc bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
  and3(s2, 0xf, s2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
  and3(s1, 0xf, s1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
  // Compare the V8 way with the V9 way.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
  subcc(s2, s1, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
  br(Assembler::notEqual, true, Assembler::pt, set_psr_test);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
  delayed()->breakpoint_trap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
  bind(set_psr_test);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
#define read_ccr_v8_assert(x)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
#define write_ccr_v8_assert(x)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
void MacroAssembler::read_ccr(Register ccr_save) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
  if (VM_Version::v9_instructions_work()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
    rdccr(ccr_save);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
    // Test code sequence used on V8.  Do not move above rdccr.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
    read_ccr_v8_assert(ccr_save);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
    read_ccr_trap(ccr_save);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
void MacroAssembler::write_ccr(Register ccr_save) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
  if (VM_Version::v9_instructions_work()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
    // Test code sequence used on V8.  Do not move below wrccr.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
    write_ccr_v8_assert(ccr_save);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
    wrccr(ccr_save);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
    const Register temp_reg1 = G3_scratch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
    const Register temp_reg2 = G4_scratch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
    write_ccr_trap(ccr_save, temp_reg1, temp_reg2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
// Calls to C land
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
// a hook for debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
static Thread* reinitialize_thread() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
  return ThreadLocalStorage::thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
#define reinitialize_thread ThreadLocalStorage::thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
address last_get_thread = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
// call this when G2_thread is not known to be valid
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
void MacroAssembler::get_thread() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
  save_frame(0);                // to avoid clobbering O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
  mov(G1, L0);                  // avoid clobbering G1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
  mov(G5_method, L1);           // avoid clobbering G5
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
  mov(G3, L2);                  // avoid clobbering G3 also
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
  mov(G4, L5);                  // avoid clobbering G4
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
  Address last_get_thread_addr(L3, (address)&last_get_thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
  sethi(last_get_thread_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
  inc(L4, get_pc(L4) + 2 * BytesPerInstWord); // skip getpc() code + inc + st_ptr to point L4 at call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
  st_ptr(L4, last_get_thread_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
  call(CAST_FROM_FN_PTR(address, reinitialize_thread), relocInfo::runtime_call_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
  mov(L0, G1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
  mov(L1, G5_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
  mov(L2, G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
  mov(L5, G4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
  restore(O0, 0, G2_thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
static Thread* verify_thread_subroutine(Thread* gthread_value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
  Thread* correct_value = ThreadLocalStorage::thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
  guarantee(gthread_value == correct_value, "G2_thread value must be the thread");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
  return correct_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
void MacroAssembler::verify_thread() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
  if (VerifyThread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
    // NOTE: this chops off the heads of the 64-bit O registers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
#ifdef CC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
    save_frame(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
    // make sure G2_thread contains the right value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
    save_frame_and_mov(0, Lmethod, Lmethod);   // to avoid clobbering O0 (and propagate Lmethod for -Xprof)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
    mov(G1, L1);                // avoid clobbering G1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
    // G2 saved below
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
    mov(G3, L3);                // avoid clobbering G3
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
    mov(G4, L4);                // avoid clobbering G4
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
    mov(G5_method, L5);         // avoid clobbering G5_method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
#endif /* CC_INTERP */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
#if defined(COMPILER2) && !defined(_LP64)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
    // Save & restore possible 64-bit Long arguments in G-regs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
    srlx(G1,32,L0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
    srlx(G4,32,L6);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
    call(CAST_FROM_FN_PTR(address,verify_thread_subroutine), relocInfo::runtime_call_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
    delayed()->mov(G2_thread, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
    mov(L1, G1);                // Restore G1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
    // G2 restored below
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
    mov(L3, G3);                // restore G3
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
    mov(L4, G4);                // restore G4
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
    mov(L5, G5_method);         // restore G5_method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
#if defined(COMPILER2) && !defined(_LP64)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
    // Save & restore possible 64-bit Long arguments in G-regs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
    sllx(L0,32,G2);             // Move old high G1 bits high in G2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
    sllx(G1, 0,G1);             // Clear current high G1 bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
    or3 (G1,G2,G1);             // Recover 64-bit G1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
    sllx(L6,32,G2);             // Move old high G4 bits high in G2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
    sllx(G4, 0,G4);             // Clear current high G4 bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
    or3 (G4,G2,G4);             // Recover 64-bit G4
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
    restore(O0, 0, G2_thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
void MacroAssembler::save_thread(const Register thread_cache) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
  verify_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
  if (thread_cache->is_valid()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
    assert(thread_cache->is_local() || thread_cache->is_in(), "bad volatile");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
    mov(G2_thread, thread_cache);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
  if (VerifyThread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
    // smash G2_thread, as if the VM were about to anyway
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
    set(0x67676767, G2_thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
void MacroAssembler::restore_thread(const Register thread_cache) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
  if (thread_cache->is_valid()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
    assert(thread_cache->is_local() || thread_cache->is_in(), "bad volatile");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
    mov(thread_cache, G2_thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
    verify_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
    // do it the slow way
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
    get_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
// %%% maybe get rid of [re]set_last_Java_frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
void MacroAssembler::set_last_Java_frame(Register last_java_sp, Register last_Java_pc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
  Address flags(G2_thread,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
                0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
                in_bytes(JavaThread::frame_anchor_offset()) +
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
                         in_bytes(JavaFrameAnchor::flags_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
  Address pc_addr(G2_thread,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
                  0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
                  in_bytes(JavaThread::last_Java_pc_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
  // Always set last_Java_pc and flags first because once last_Java_sp is visible
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
  // has_last_Java_frame is true and users will look at the rest of the fields.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
  // (Note: flags should always be zero before we get here so doesn't need to be set.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
  // Verify that flags was zeroed on return to Java
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
  Label PcOk;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
  save_frame(0);                // to avoid clobbering O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
  ld_ptr(pc_addr, L0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
  tst(L0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
  brx(Assembler::zero, false, Assembler::pt, PcOk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
  br(Assembler::zero, false, Assembler::pt, PcOk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
#endif // _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
  delayed() -> nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
  stop("last_Java_pc not zeroed before leaving Java");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
  bind(PcOk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
  // Verify that flags was zeroed on return to Java
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
  Label FlagsOk;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
  ld(flags, L0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
  tst(L0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
  br(Assembler::zero, false, Assembler::pt, FlagsOk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
  delayed() -> restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
  stop("flags not zeroed before leaving Java");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
  bind(FlagsOk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
#endif /* ASSERT */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
  // When returning from calling out from Java mode the frame anchor's last_Java_pc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
  // will always be set to NULL. It is set here so that if we are doing a call to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
  // native (not VM) that we capture the known pc and don't have to rely on the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
  // native call having a standard frame linkage where we can find the pc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
  if (last_Java_pc->is_valid()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
    st_ptr(last_Java_pc, pc_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
  // Make sure that we have an odd stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
  Label StackOk;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
  andcc(last_java_sp, 0x01, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
  br(Assembler::notZero, false, Assembler::pt, StackOk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
  delayed() -> nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
  stop("Stack Not Biased in set_last_Java_frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
  bind(StackOk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
  assert( last_java_sp != G4_scratch, "bad register usage in set_last_Java_frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
  add( last_java_sp, STACK_BIAS, G4_scratch );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
  st_ptr(G4_scratch,    Address(G2_thread, 0, in_bytes(JavaThread::last_Java_sp_offset())));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
  st_ptr(last_java_sp,    Address(G2_thread, 0, in_bytes(JavaThread::last_Java_sp_offset())));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
#endif // _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
void MacroAssembler::reset_last_Java_frame(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
  Address sp_addr(G2_thread, 0, in_bytes(JavaThread::last_Java_sp_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
  Address pc_addr(G2_thread,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
                  0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
                  in_bytes(JavaThread::frame_anchor_offset()) + in_bytes(JavaFrameAnchor::last_Java_pc_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
  Address flags(G2_thread,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
                0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
                in_bytes(JavaThread::frame_anchor_offset()) + in_bytes(JavaFrameAnchor::flags_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
  // check that it WAS previously set
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
#ifdef CC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
    save_frame(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
    save_frame_and_mov(0, Lmethod, Lmethod);     // Propagate Lmethod to helper frame for -Xprof
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
#endif /* CC_INTERP */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
    ld_ptr(sp_addr, L0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
    tst(L0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
    breakpoint_trap(Assembler::zero, Assembler::ptr_cc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
    restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
  st_ptr(G0, sp_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
  // Always return last_Java_pc to zero
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
  st_ptr(G0, pc_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
  // Always null flags after return to Java
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
  st(G0, flags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
void MacroAssembler::call_VM_base(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
  Register        oop_result,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
  Register        thread_cache,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
  Register        last_java_sp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
  address         entry_point,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
  int             number_of_arguments,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
  bool            check_exceptions)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
  // determine last_java_sp register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
  if (!last_java_sp->is_valid()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
    last_java_sp = SP;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
  // debugging support
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
  assert(number_of_arguments >= 0   , "cannot have negative number of arguments");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
  // 64-bit last_java_sp is biased!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
  set_last_Java_frame(last_java_sp, noreg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
  if (VerifyThread)  mov(G2_thread, O0); // about to be smashed; pass early
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
  save_thread(thread_cache);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
  // do the call
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
  call(entry_point, relocInfo::runtime_call_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
  if (!VerifyThread)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
    delayed()->mov(G2_thread, O0);  // pass thread as first argument
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
  else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
    delayed()->nop();             // (thread already passed)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
  restore_thread(thread_cache);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
  reset_last_Java_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
  // check for pending exceptions. use Gtemp as scratch register.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
  if (check_exceptions) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
    check_and_forward_exception(Gtemp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
  // get oop result if there is one and reset the value in the thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
  if (oop_result->is_valid()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
    get_vm_result(oop_result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
void MacroAssembler::check_and_forward_exception(Register scratch_reg)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
  Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
  check_and_handle_popframe(scratch_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
  check_and_handle_earlyret(scratch_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
  Address exception_addr(G2_thread, 0, in_bytes(Thread::pending_exception_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
  ld_ptr(exception_addr, scratch_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
  br_null(scratch_reg,false,pt,L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
  // we use O7 linkage so that forward_exception_entry has the issuing PC
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
  call(StubRoutines::forward_exception_entry(), relocInfo::runtime_call_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
  bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
void MacroAssembler::check_and_handle_popframe(Register scratch_reg) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
void MacroAssembler::check_and_handle_earlyret(Register scratch_reg) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
void MacroAssembler::call_VM(Register oop_result, address entry_point, int number_of_arguments, bool check_exceptions) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
  call_VM_base(oop_result, noreg, noreg, entry_point, number_of_arguments, check_exceptions);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
void MacroAssembler::call_VM(Register oop_result, address entry_point, Register arg_1, bool check_exceptions) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
  // O0 is reserved for the thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
  mov(arg_1, O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
  call_VM(oop_result, entry_point, 1, check_exceptions);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
void MacroAssembler::call_VM(Register oop_result, address entry_point, Register arg_1, Register arg_2, bool check_exceptions) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
  // O0 is reserved for the thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
  mov(arg_1, O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
  mov(arg_2, O2); assert(arg_2 != O1, "smashed argument");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
  call_VM(oop_result, entry_point, 2, check_exceptions);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
void MacroAssembler::call_VM(Register oop_result, address entry_point, Register arg_1, Register arg_2, Register arg_3, bool check_exceptions) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
  // O0 is reserved for the thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
  mov(arg_1, O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
  mov(arg_2, O2); assert(arg_2 != O1,                "smashed argument");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
  mov(arg_3, O3); assert(arg_3 != O1 && arg_3 != O2, "smashed argument");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1110
  call_VM(oop_result, entry_point, 3, check_exceptions);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1111
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1114
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1115
// Note: The following call_VM overloadings are useful when a "save"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1116
// has already been performed by a stub, and the last Java frame is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1117
// the previous one.  In that case, last_java_sp must be passed as FP
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
// instead of SP.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1119
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
void MacroAssembler::call_VM(Register oop_result, Register last_java_sp, address entry_point, int number_of_arguments, bool check_exceptions) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
  call_VM_base(oop_result, noreg, last_java_sp, entry_point, number_of_arguments, check_exceptions);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1124
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
void MacroAssembler::call_VM(Register oop_result, Register last_java_sp, address entry_point, Register arg_1, bool check_exceptions) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1127
  // O0 is reserved for the thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1128
  mov(arg_1, O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1129
  call_VM(oop_result, last_java_sp, entry_point, 1, check_exceptions);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1131
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1132
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
void MacroAssembler::call_VM(Register oop_result, Register last_java_sp, address entry_point, Register arg_1, Register arg_2, bool check_exceptions) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1134
  // O0 is reserved for the thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1135
  mov(arg_1, O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1136
  mov(arg_2, O2); assert(arg_2 != O1, "smashed argument");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
  call_VM(oop_result, last_java_sp, entry_point, 2, check_exceptions);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1139
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
void MacroAssembler::call_VM(Register oop_result, Register last_java_sp, address entry_point, Register arg_1, Register arg_2, Register arg_3, bool check_exceptions) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1142
  // O0 is reserved for the thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
  mov(arg_1, O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
  mov(arg_2, O2); assert(arg_2 != O1,                "smashed argument");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
  mov(arg_3, O3); assert(arg_3 != O1 && arg_3 != O2, "smashed argument");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
  call_VM(oop_result, last_java_sp, entry_point, 3, check_exceptions);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1148
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1149
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1150
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
void MacroAssembler::call_VM_leaf_base(Register thread_cache, address entry_point, int number_of_arguments) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1153
  save_thread(thread_cache);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1154
  // do the call
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1155
  call(entry_point, relocInfo::runtime_call_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1156
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1157
  restore_thread(thread_cache);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1158
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1159
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1160
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1161
void MacroAssembler::call_VM_leaf(Register thread_cache, address entry_point, int number_of_arguments) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
  call_VM_leaf_base(thread_cache, entry_point, number_of_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1163
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1164
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1165
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1166
void MacroAssembler::call_VM_leaf(Register thread_cache, address entry_point, Register arg_1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1167
  mov(arg_1, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1168
  call_VM_leaf(thread_cache, entry_point, 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1169
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1170
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1171
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1172
void MacroAssembler::call_VM_leaf(Register thread_cache, address entry_point, Register arg_1, Register arg_2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
  mov(arg_1, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
  mov(arg_2, O1); assert(arg_2 != O0, "smashed argument");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1175
  call_VM_leaf(thread_cache, entry_point, 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1177
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1178
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1179
void MacroAssembler::call_VM_leaf(Register thread_cache, address entry_point, Register arg_1, Register arg_2, Register arg_3) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
  mov(arg_1, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1181
  mov(arg_2, O1); assert(arg_2 != O0,                "smashed argument");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1182
  mov(arg_3, O2); assert(arg_3 != O0 && arg_3 != O1, "smashed argument");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1183
  call_VM_leaf(thread_cache, entry_point, 3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1185
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1186
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1187
void MacroAssembler::get_vm_result(Register oop_result) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1188
  verify_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
  Address vm_result_addr(G2_thread, 0, in_bytes(JavaThread::vm_result_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
  ld_ptr(    vm_result_addr, oop_result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1191
  st_ptr(G0, vm_result_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1192
  verify_oop(oop_result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1194
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1195
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1196
void MacroAssembler::get_vm_result_2(Register oop_result) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1197
  verify_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1198
  Address vm_result_addr_2(G2_thread, 0, in_bytes(JavaThread::vm_result_2_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1199
  ld_ptr(vm_result_addr_2, oop_result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1200
  st_ptr(G0, vm_result_addr_2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1201
  verify_oop(oop_result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1202
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1203
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1204
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1205
// We require that C code which does not return a value in vm_result will
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1206
// leave it undisturbed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1207
void MacroAssembler::set_vm_result(Register oop_result) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1208
  verify_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1209
  Address vm_result_addr(G2_thread, 0, in_bytes(JavaThread::vm_result_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1210
  verify_oop(oop_result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1211
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1212
# ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1213
    // Check that we are not overwriting any other oop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1214
#ifdef CC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1215
    save_frame(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1216
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1217
    save_frame_and_mov(0, Lmethod, Lmethod);     // Propagate Lmethod for -Xprof
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1218
#endif /* CC_INTERP */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1219
    ld_ptr(vm_result_addr, L0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1220
    tst(L0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1221
    restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1222
    breakpoint_trap(notZero, Assembler::ptr_cc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1223
    // }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1224
# endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1225
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1226
  st_ptr(oop_result, vm_result_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1229
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1230
void MacroAssembler::card_table_write(jbyte* byte_map_base,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1231
                                      Register tmp, Register obj) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1232
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1233
  srlx(obj, CardTableModRefBS::card_shift, obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1234
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1235
  srl(obj, CardTableModRefBS::card_shift, obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1236
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1237
  assert( tmp != obj, "need separate temp reg");
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1238
  Address rs(tmp, (address)byte_map_base);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1239
  load_address(rs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1240
  stb(G0, rs.base(), obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1241
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1242
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1243
// %%% Note:  The following six instructions have been moved,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1244
//            unchanged, from assembler_sparc.inline.hpp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1245
//            They will be refactored at a later date.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1246
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1247
void MacroAssembler::sethi(intptr_t imm22a,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1248
                            Register d,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1249
                            bool ForceRelocatable,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1250
                            RelocationHolder const& rspec) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1251
  Address adr( d, (address)imm22a, rspec );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1252
  MacroAssembler::sethi( adr, ForceRelocatable );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1253
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1254
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1255
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1256
void MacroAssembler::sethi(Address& a, bool ForceRelocatable) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1257
  address save_pc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1258
  int shiftcnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1259
  // if addr of local, do not need to load it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1260
  assert(a.base() != FP  &&  a.base() != SP, "just use ld or st for locals");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1261
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1262
# ifdef CHECK_DELAY
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1263
  assert_not_delayed( (char *)"cannot put two instructions in delay slot" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1264
# endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1265
  v9_dep();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1266
//  ForceRelocatable = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1267
  save_pc = pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1268
  if (a.hi32() == 0 && a.low32() >= 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1269
    Assembler::sethi(a.low32(), a.base(), a.rspec());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1270
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1271
  else if (a.hi32() == -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1272
    Assembler::sethi(~a.low32(), a.base(), a.rspec());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1273
    xor3(a.base(), ~low10(~0), a.base());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1274
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1275
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1276
    Assembler::sethi(a.hi32(), a.base(), a.rspec() );   // 22
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1277
    if ( a.hi32() & 0x3ff )                     // Any bits?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1278
      or3( a.base(), a.hi32() & 0x3ff ,a.base() ); // High 32 bits are now in low 32
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1279
    if ( a.low32() & 0xFFFFFC00 ) {             // done?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1280
      if( (a.low32() >> 20) & 0xfff ) {         // Any bits set?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1281
        sllx(a.base(), 12, a.base());           // Make room for next 12 bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1282
        or3( a.base(), (a.low32() >> 20) & 0xfff,a.base() ); // Or in next 12
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1283
        shiftcnt = 0;                           // We already shifted
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1284
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1285
      else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1286
        shiftcnt = 12;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1287
      if( (a.low32() >> 10) & 0x3ff ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1288
        sllx(a.base(), shiftcnt+10, a.base());// Make room for last 10 bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1289
        or3( a.base(), (a.low32() >> 10) & 0x3ff,a.base() ); // Or in next 10
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1290
        shiftcnt = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1291
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1292
      else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1293
        shiftcnt = 10;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1294
      sllx(a.base(), shiftcnt+10 , a.base());           // Shift leaving disp field 0'd
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1295
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1296
    else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1297
      sllx( a.base(), 32, a.base() );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1298
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1299
  // Pad out the instruction sequence so it can be
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1300
  // patched later.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1301
  if ( ForceRelocatable || (a.rtype() != relocInfo::none &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1302
                            a.rtype() != relocInfo::runtime_call_type) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1303
    while ( pc() < (save_pc + (7 * BytesPerInstWord )) )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1304
      nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1305
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1306
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1307
  Assembler::sethi(a.hi(), a.base(), a.rspec());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1308
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1309
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1310
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1311
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1312
int MacroAssembler::size_of_sethi(address a, bool worst_case) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1313
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1314
  if (worst_case) return 7;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1315
  intptr_t iaddr = (intptr_t)a;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1316
  int hi32 = (int)(iaddr >> 32);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1317
  int lo32 = (int)(iaddr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1318
  int inst_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1319
  if (hi32 == 0 && lo32 >= 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1320
    inst_count = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1321
  else if (hi32 == -1)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1322
    inst_count = 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1323
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1324
    inst_count = 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1325
    if ( hi32 & 0x3ff )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1326
      inst_count++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1327
    if ( lo32 & 0xFFFFFC00 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1328
      if( (lo32 >> 20) & 0xfff ) inst_count += 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1329
      if( (lo32 >> 10) & 0x3ff ) inst_count += 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1330
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1331
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1332
  return BytesPerInstWord * inst_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1333
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1334
  return BytesPerInstWord;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1335
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1336
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1337
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1338
int MacroAssembler::worst_case_size_of_set() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1339
  return size_of_sethi(NULL, true) + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1340
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1341
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1342
void MacroAssembler::set(intptr_t value, Register d,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1343
                         RelocationHolder const& rspec) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1344
  Address val( d, (address)value, rspec);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1345
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1346
  if ( rspec.type() == relocInfo::none ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1347
    // can optimize
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1348
    if (-4096 <= value  &&  value <= 4095) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1349
      or3(G0, value, d); // setsw (this leaves upper 32 bits sign-extended)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1350
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1351
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1352
    if (inv_hi22(hi22(value)) == value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1353
      sethi(val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1354
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1355
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1356
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1357
  assert_not_delayed( (char *)"cannot put two instructions in delay slot" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1358
  sethi( val );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1359
  if (rspec.type() != relocInfo::none || (value & 0x3ff) != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1360
    add( d, value &  0x3ff, d, rspec);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1361
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1362
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1363
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1364
void MacroAssembler::setsw(int value, Register d,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1365
                           RelocationHolder const& rspec) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1366
  Address val( d, (address)value, rspec);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1367
  if ( rspec.type() == relocInfo::none ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1368
    // can optimize
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1369
    if (-4096 <= value  &&  value <= 4095) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1370
      or3(G0, value, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1371
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1372
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1373
    if (inv_hi22(hi22(value)) == value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1374
      sethi( val );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1375
#ifndef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1376
      if ( value < 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1377
        assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1378
        sra (d, G0, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1379
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1380
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1381
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1382
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1383
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1384
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1385
  sethi( val );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1386
  add( d, value &  0x3ff, d, rspec);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1387
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1388
  // (A negative value could be loaded in 2 insns with sethi/xor,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1389
  // but it would take a more complex relocation.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1390
#ifndef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1391
  if ( value < 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1392
    sra(d, G0, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1393
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1394
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1395
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1396
// %%% End of moved six set instructions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1397
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1398
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1399
void MacroAssembler::set64(jlong value, Register d, Register tmp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1400
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1401
  v9_dep();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1402
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1403
  int hi = (int)(value >> 32);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1404
  int lo = (int)(value & ~0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1405
  // (Matcher::isSimpleConstant64 knows about the following optimizations.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1406
  if (Assembler::is_simm13(lo) && value == lo) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1407
    or3(G0, lo, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1408
  } else if (hi == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1409
    Assembler::sethi(lo, d);   // hardware version zero-extends to upper 32
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1410
    if (low10(lo) != 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1411
      or3(d, low10(lo), d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1412
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1413
  else if (hi == -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1414
    Assembler::sethi(~lo, d);  // hardware version zero-extends to upper 32
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1415
    xor3(d, low10(lo) ^ ~low10(~0), d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1416
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1417
  else if (lo == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1418
    if (Assembler::is_simm13(hi)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1419
      or3(G0, hi, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1420
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1421
      Assembler::sethi(hi, d);   // hardware version zero-extends to upper 32
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1422
      if (low10(hi) != 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1423
        or3(d, low10(hi), d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1424
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1425
    sllx(d, 32, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1426
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1427
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1428
    Assembler::sethi(hi, tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1429
    Assembler::sethi(lo,   d); // macro assembler version sign-extends
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1430
    if (low10(hi) != 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1431
      or3 (tmp, low10(hi), tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1432
    if (low10(lo) != 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1433
      or3 (  d, low10(lo),   d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1434
    sllx(tmp, 32, tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1435
    or3 (d, tmp, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1436
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1437
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1438
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1439
// compute size in bytes of sparc frame, given
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1440
// number of extraWords
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1441
int MacroAssembler::total_frame_size_in_bytes(int extraWords) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1442
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1443
  int nWords = frame::memory_parameter_word_sp_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1444
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1445
  nWords += extraWords;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1446
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1447
  if (nWords & 1) ++nWords; // round up to double-word
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1448
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1449
  return nWords * BytesPerWord;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1450
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1451
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1452
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1453
// save_frame: given number of "extra" words in frame,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1454
// issue approp. save instruction (p 200, v8 manual)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1455
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1456
void MacroAssembler::save_frame(int extraWords = 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1457
  int delta = -total_frame_size_in_bytes(extraWords);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1458
  if (is_simm13(delta)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1459
    save(SP, delta, SP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1460
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1461
    set(delta, G3_scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1462
    save(SP, G3_scratch, SP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1463
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1464
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1465
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1466
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1467
void MacroAssembler::save_frame_c1(int size_in_bytes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1468
  if (is_simm13(-size_in_bytes)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1469
    save(SP, -size_in_bytes, SP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1470
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1471
    set(-size_in_bytes, G3_scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1472
    save(SP, G3_scratch, SP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1473
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1474
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1475
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1476
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1477
void MacroAssembler::save_frame_and_mov(int extraWords,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1478
                                        Register s1, Register d1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1479
                                        Register s2, Register d2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1480
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1481
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1482
  // The trick here is to use precisely the same memory word
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1483
  // that trap handlers also use to save the register.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1484
  // This word cannot be used for any other purpose, but
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1485
  // it works fine to save the register's value, whether or not
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1486
  // an interrupt flushes register windows at any given moment!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1487
  Address s1_addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1488
  if (s1->is_valid() && (s1->is_in() || s1->is_local())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1489
    s1_addr = s1->address_in_saved_window();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1490
    st_ptr(s1, s1_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1491
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1492
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1493
  Address s2_addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1494
  if (s2->is_valid() && (s2->is_in() || s2->is_local())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1495
    s2_addr = s2->address_in_saved_window();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1496
    st_ptr(s2, s2_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1497
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1498
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1499
  save_frame(extraWords);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1500
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1501
  if (s1_addr.base() == SP) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1502
    ld_ptr(s1_addr.after_save(), d1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1503
  } else if (s1->is_valid()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1504
    mov(s1->after_save(), d1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1505
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1506
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1507
  if (s2_addr.base() == SP) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1508
    ld_ptr(s2_addr.after_save(), d2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1509
  } else if (s2->is_valid()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1510
    mov(s2->after_save(), d2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1511
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1512
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1513
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1514
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1515
Address MacroAssembler::allocate_oop_address(jobject obj, Register d) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1516
  assert(oop_recorder() != NULL, "this assembler needs an OopRecorder");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1517
  int oop_index = oop_recorder()->allocate_index(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1518
  return Address(d, address(obj), oop_Relocation::spec(oop_index));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1519
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1520
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1521
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1522
Address MacroAssembler::constant_oop_address(jobject obj, Register d) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1523
  assert(oop_recorder() != NULL, "this assembler needs an OopRecorder");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1524
  int oop_index = oop_recorder()->find_index(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1525
  return Address(d, address(obj), oop_Relocation::spec(oop_index));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1526
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1527
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  1528
void  MacroAssembler::set_narrow_oop(jobject obj, Register d) {
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  1529
  assert(oop_recorder() != NULL, "this assembler needs an OopRecorder");
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  1530
  int oop_index = oop_recorder()->find_index(obj);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  1531
  RelocationHolder rspec = oop_Relocation::spec(oop_index);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  1532
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  1533
  assert_not_delayed();
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  1534
  // Relocation with special format (see relocInfo_sparc.hpp).
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  1535
  relocate(rspec, 1);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  1536
  // Assembler::sethi(0x3fffff, d);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  1537
  emit_long( op(branch_op) | rd(d) | op2(sethi_op2) | hi22(0x3fffff) );
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  1538
  // Don't add relocation for 'add'. Do patching during 'sethi' processing.
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  1539
  add(d, 0x3ff, d);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  1540
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  1541
}
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  1542
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1543
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1544
void MacroAssembler::align(int modulus) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1545
  while (offset() % modulus != 0) nop();
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
void MacroAssembler::safepoint() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1550
  relocate(breakpoint_Relocation::spec(breakpoint_Relocation::safepoint));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1551
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1552
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1553
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1554
void RegistersForDebugging::print(outputStream* s) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1555
  int j;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1556
  for ( j = 0;  j < 8;  ++j )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1557
    if ( j != 6 ) s->print_cr("i%d = 0x%.16lx", j, i[j]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1558
    else          s->print_cr( "fp = 0x%.16lx",    i[j]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1559
  s->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1560
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1561
  for ( j = 0;  j < 8;  ++j )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1562
    s->print_cr("l%d = 0x%.16lx", j, l[j]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1563
  s->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1564
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1565
  for ( j = 0;  j < 8;  ++j )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1566
    if ( j != 6 ) s->print_cr("o%d = 0x%.16lx", j, o[j]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1567
    else          s->print_cr( "sp = 0x%.16lx",    o[j]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1568
  s->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1569
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1570
  for ( j = 0;  j < 8;  ++j )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1571
    s->print_cr("g%d = 0x%.16lx", j, g[j]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1572
  s->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1573
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1574
  // print out floats with compression
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1575
  for (j = 0; j < 32; ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1576
    jfloat val = f[j];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1577
    int last = j;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1578
    for ( ;  last+1 < 32;  ++last ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1579
      char b1[1024], b2[1024];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1580
      sprintf(b1, "%f", val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1581
      sprintf(b2, "%f", f[last+1]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1582
      if (strcmp(b1, b2))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1583
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1584
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1585
    s->print("f%d", j);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1586
    if ( j != last )  s->print(" - f%d", last);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1587
    s->print(" = %f", val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1588
    s->fill_to(25);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1589
    s->print_cr(" (0x%x)", val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1590
    j = last + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1591
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1592
  s->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1593
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1594
  // and doubles (evens only)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1595
  for (j = 0; j < 32; ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1596
    jdouble val = d[j];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1597
    int last = j;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1598
    for ( ;  last+1 < 32;  ++last ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1599
      char b1[1024], b2[1024];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1600
      sprintf(b1, "%f", val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1601
      sprintf(b2, "%f", d[last+1]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1602
      if (strcmp(b1, b2))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1603
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1604
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1605
    s->print("d%d", 2 * j);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1606
    if ( j != last )  s->print(" - d%d", last);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1607
    s->print(" = %f", val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1608
    s->fill_to(30);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1609
    s->print("(0x%x)", *(int*)&val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1610
    s->fill_to(42);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1611
    s->print_cr("(0x%x)", *(1 + (int*)&val));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1612
    j = last + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1613
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1614
  s->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1615
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1616
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1617
void RegistersForDebugging::save_registers(MacroAssembler* a) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1618
  a->sub(FP, round_to(sizeof(RegistersForDebugging), sizeof(jdouble)) - STACK_BIAS, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1619
  a->flush_windows();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1620
  int i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1621
  for (i = 0; i < 8; ++i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1622
    a->ld_ptr(as_iRegister(i)->address_in_saved_window().after_save(), L1);  a->st_ptr( L1, O0, i_offset(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1623
    a->ld_ptr(as_lRegister(i)->address_in_saved_window().after_save(), L1);  a->st_ptr( L1, O0, l_offset(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1624
    a->st_ptr(as_oRegister(i)->after_save(), O0, o_offset(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1625
    a->st_ptr(as_gRegister(i)->after_save(), O0, g_offset(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1626
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1627
  for (i = 0;  i < 32; ++i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1628
    a->stf(FloatRegisterImpl::S, as_FloatRegister(i), O0, f_offset(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1629
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1630
  for (i = 0; i < (VM_Version::v9_instructions_work() ? 64 : 32); i += 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1631
    a->stf(FloatRegisterImpl::D, as_FloatRegister(i), O0, d_offset(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1632
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1633
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1634
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1635
void RegistersForDebugging::restore_registers(MacroAssembler* a, Register r) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1636
  for (int i = 1; i < 8;  ++i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1637
    a->ld_ptr(r, g_offset(i), as_gRegister(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1638
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1639
  for (int j = 0; j < 32; ++j) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1640
    a->ldf(FloatRegisterImpl::S, O0, f_offset(j), as_FloatRegister(j));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1641
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1642
  for (int k = 0; k < (VM_Version::v9_instructions_work() ? 64 : 32); k += 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1643
    a->ldf(FloatRegisterImpl::D, O0, d_offset(k), as_FloatRegister(k));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1644
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1645
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1646
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1647
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1648
// pushes double TOS element of FPU stack on CPU stack; pops from FPU stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1649
void MacroAssembler::push_fTOS() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1650
  // %%%%%% need to implement this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1651
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1652
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1653
// pops double TOS element from CPU stack and pushes on FPU stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1654
void MacroAssembler::pop_fTOS() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1655
  // %%%%%% need to implement this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1656
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1657
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1658
void MacroAssembler::empty_FPU_stack() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1659
  // %%%%%% need to implement this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1660
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1661
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1662
void MacroAssembler::_verify_oop(Register reg, const char* msg, const char * file, int line) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1663
  // plausibility check for oops
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1664
  if (!VerifyOops) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1665
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1666
  if (reg == G0)  return;       // always NULL, which is always an oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1667
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1668
  char buffer[64];
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1669
#ifdef COMPILER1
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1670
  if (CommentedAssembly) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1671
    snprintf(buffer, sizeof(buffer), "verify_oop at %d", offset());
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1672
    block_comment(buffer);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1673
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1674
#endif
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1675
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1676
  int len = strlen(file) + strlen(msg) + 1 + 4;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1677
  sprintf(buffer, "%d", line);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1678
  len += strlen(buffer);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1679
  sprintf(buffer, " at offset %d ", offset());
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1680
  len += strlen(buffer);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1681
  char * real_msg = new char[len];
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1682
  sprintf(real_msg, "%s%s(%s:%d)", msg, buffer, file, line);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1683
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1684
  // Call indirectly to solve generation ordering problem
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1685
  Address a(O7, (address)StubRoutines::verify_oop_subroutine_entry_address());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1686
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1687
  // Make some space on stack above the current register window.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1688
  // Enough to hold 8 64-bit registers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1689
  add(SP,-8*8,SP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1690
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1691
  // Save some 64-bit registers; a normal 'save' chops the heads off
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1692
  // of 64-bit longs in the 32-bit build.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1693
  stx(O0,SP,frame::register_save_words*wordSize+STACK_BIAS+0*8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1694
  stx(O1,SP,frame::register_save_words*wordSize+STACK_BIAS+1*8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1695
  mov(reg,O0); // Move arg into O0; arg might be in O7 which is about to be crushed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1696
  stx(O7,SP,frame::register_save_words*wordSize+STACK_BIAS+7*8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1697
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1698
  set((intptr_t)real_msg, O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1699
  // Load address to call to into O7
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1700
  load_ptr_contents(a, O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1701
  // Register call to verify_oop_subroutine
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1702
  callr(O7, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1703
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1704
  // recover frame size
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1705
  add(SP, 8*8,SP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1706
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1707
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1708
void MacroAssembler::_verify_oop_addr(Address addr, const char* msg, const char * file, int line) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1709
  // plausibility check for oops
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1710
  if (!VerifyOops) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1711
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1712
  char buffer[64];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1713
  sprintf(buffer, "%d", line);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1714
  int len = strlen(file) + strlen(msg) + 1 + 4 + strlen(buffer);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1715
  sprintf(buffer, " at SP+%d ", addr.disp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1716
  len += strlen(buffer);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1717
  char * real_msg = new char[len];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1718
  sprintf(real_msg, "%s at SP+%d (%s:%d)", msg, addr.disp(), file, line);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1719
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1720
  // Call indirectly to solve generation ordering problem
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1721
  Address a(O7, (address)StubRoutines::verify_oop_subroutine_entry_address());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1722
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1723
  // Make some space on stack above the current register window.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1724
  // Enough to hold 8 64-bit registers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1725
  add(SP,-8*8,SP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1726
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1727
  // Save some 64-bit registers; a normal 'save' chops the heads off
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1728
  // of 64-bit longs in the 32-bit build.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1729
  stx(O0,SP,frame::register_save_words*wordSize+STACK_BIAS+0*8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1730
  stx(O1,SP,frame::register_save_words*wordSize+STACK_BIAS+1*8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1731
  ld_ptr(addr.base(), addr.disp() + 8*8, O0); // Load arg into O0; arg might be in O7 which is about to be crushed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1732
  stx(O7,SP,frame::register_save_words*wordSize+STACK_BIAS+7*8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1733
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1734
  set((intptr_t)real_msg, O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1735
  // Load address to call to into O7
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1736
  load_ptr_contents(a, O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1737
  // Register call to verify_oop_subroutine
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1738
  callr(O7, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1739
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1740
  // recover frame size
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1741
  add(SP, 8*8,SP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1742
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1743
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1744
// side-door communication with signalHandler in os_solaris.cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1745
address MacroAssembler::_verify_oop_implicit_branch[3] = { NULL };
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1746
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1747
// This macro is expanded just once; it creates shared code.  Contract:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1748
// receives an oop in O0.  Must restore O0 & O7 from TLS.  Must not smash ANY
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1749
// registers, including flags.  May not use a register 'save', as this blows
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1750
// the high bits of the O-regs if they contain Long values.  Acts as a 'leaf'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1751
// call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1752
void MacroAssembler::verify_oop_subroutine() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1753
  assert( VM_Version::v9_instructions_work(), "VerifyOops not supported for V8" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1754
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1755
  // Leaf call; no frame.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1756
  Label succeed, fail, null_or_fail;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1757
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1758
  // O0 and O7 were saved already (O0 in O0's TLS home, O7 in O5's TLS home).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1759
  // O0 is now the oop to be checked.  O7 is the return address.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1760
  Register O0_obj = O0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1761
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1762
  // Save some more registers for temps.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1763
  stx(O2,SP,frame::register_save_words*wordSize+STACK_BIAS+2*8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1764
  stx(O3,SP,frame::register_save_words*wordSize+STACK_BIAS+3*8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1765
  stx(O4,SP,frame::register_save_words*wordSize+STACK_BIAS+4*8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1766
  stx(O5,SP,frame::register_save_words*wordSize+STACK_BIAS+5*8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1767
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1768
  // Save flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1769
  Register O5_save_flags = O5;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1770
  rdccr( O5_save_flags );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1771
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1772
  { // count number of verifies
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1773
    Register O2_adr   = O2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1774
    Register O3_accum = O3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1775
    Address count_addr( O2_adr, (address) StubRoutines::verify_oop_count_addr() );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1776
    sethi(count_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1777
    ld(count_addr, O3_accum);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1778
    inc(O3_accum);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1779
    st(O3_accum, count_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1780
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1781
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1782
  Register O2_mask = O2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1783
  Register O3_bits = O3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1784
  Register O4_temp = O4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1785
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1786
  // mark lower end of faulting range
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1787
  assert(_verify_oop_implicit_branch[0] == NULL, "set once");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1788
  _verify_oop_implicit_branch[0] = pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1789
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1790
  // We can't check the mark oop because it could be in the process of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1791
  // locking or unlocking while this is running.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1792
  set(Universe::verify_oop_mask (), O2_mask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1793
  set(Universe::verify_oop_bits (), O3_bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1794
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1795
  // assert((obj & oop_mask) == oop_bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1796
  and3(O0_obj, O2_mask, O4_temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1797
  cmp(O4_temp, O3_bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1798
  brx(notEqual, false, pn, null_or_fail);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1799
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1800
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1801
  if ((NULL_WORD & Universe::verify_oop_mask()) == Universe::verify_oop_bits()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1802
    // the null_or_fail case is useless; must test for null separately
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1803
    br_null(O0_obj, false, pn, succeed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1804
    delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1805
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1806
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1807
  // Check the klassOop of this object for being in the right area of memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1808
  // Cannot do the load in the delay above slot in case O0 is null
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1809
  load_klass(O0_obj, O0_obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1810
  // assert((klass & klass_mask) == klass_bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1811
  if( Universe::verify_klass_mask() != Universe::verify_oop_mask() )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1812
    set(Universe::verify_klass_mask(), O2_mask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1813
  if( Universe::verify_klass_bits() != Universe::verify_oop_bits() )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1814
    set(Universe::verify_klass_bits(), O3_bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1815
  and3(O0_obj, O2_mask, O4_temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1816
  cmp(O4_temp, O3_bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1817
  brx(notEqual, false, pn, fail);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1818
  delayed()->nop();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1819
  // Check the klass's klass
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1820
  load_klass(O0_obj, O0_obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1821
  and3(O0_obj, O2_mask, O4_temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1822
  cmp(O4_temp, O3_bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1823
  brx(notEqual, false, pn, fail);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1824
  delayed()->wrccr( O5_save_flags ); // Restore CCR's
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1825
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1826
  // mark upper end of faulting range
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1827
  _verify_oop_implicit_branch[1] = pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1828
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1829
  //-----------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1830
  // all tests pass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1831
  bind(succeed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1832
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1833
  // Restore prior 64-bit registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1834
  ldx(SP,frame::register_save_words*wordSize+STACK_BIAS+0*8,O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1835
  ldx(SP,frame::register_save_words*wordSize+STACK_BIAS+1*8,O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1836
  ldx(SP,frame::register_save_words*wordSize+STACK_BIAS+2*8,O2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1837
  ldx(SP,frame::register_save_words*wordSize+STACK_BIAS+3*8,O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1838
  ldx(SP,frame::register_save_words*wordSize+STACK_BIAS+4*8,O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1839
  ldx(SP,frame::register_save_words*wordSize+STACK_BIAS+5*8,O5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1840
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1841
  retl();                       // Leaf return; restore prior O7 in delay slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1842
  delayed()->ldx(SP,frame::register_save_words*wordSize+STACK_BIAS+7*8,O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1843
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1844
  //-----------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1845
  bind(null_or_fail);           // nulls are less common but OK
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1846
  br_null(O0_obj, false, pt, succeed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1847
  delayed()->wrccr( O5_save_flags ); // Restore CCR's
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1848
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1849
  //-----------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1850
  // report failure:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1851
  bind(fail);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1852
  _verify_oop_implicit_branch[2] = pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1853
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1854
  wrccr( O5_save_flags ); // Restore CCR's
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1855
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1856
  save_frame(::round_to(sizeof(RegistersForDebugging) / BytesPerWord, 2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1857
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1858
  // stop_subroutine expects message pointer in I1.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1859
  mov(I1, O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1860
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1861
  // Restore prior 64-bit registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1862
  ldx(FP,frame::register_save_words*wordSize+STACK_BIAS+0*8,I0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1863
  ldx(FP,frame::register_save_words*wordSize+STACK_BIAS+1*8,I1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1864
  ldx(FP,frame::register_save_words*wordSize+STACK_BIAS+2*8,I2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1865
  ldx(FP,frame::register_save_words*wordSize+STACK_BIAS+3*8,I3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1866
  ldx(FP,frame::register_save_words*wordSize+STACK_BIAS+4*8,I4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1867
  ldx(FP,frame::register_save_words*wordSize+STACK_BIAS+5*8,I5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1868
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1869
  // factor long stop-sequence into subroutine to save space
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1870
  assert(StubRoutines::Sparc::stop_subroutine_entry_address(), "hasn't been generated yet");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1871
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1872
  // call indirectly to solve generation ordering problem
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1873
  Address a(O5, (address)StubRoutines::Sparc::stop_subroutine_entry_address());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1874
  load_ptr_contents(a, O5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1875
  jmpl(O5, 0, O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1876
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1877
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1878
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1879
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1880
void MacroAssembler::stop(const char* msg) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1881
  // save frame first to get O7 for return address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1882
  // add one word to size in case struct is odd number of words long
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1883
  // It must be doubleword-aligned for storing doubles into it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1884
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1885
    save_frame(::round_to(sizeof(RegistersForDebugging) / BytesPerWord, 2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1886
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1887
    // stop_subroutine expects message pointer in I1.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1888
    set((intptr_t)msg, O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1889
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1890
    // factor long stop-sequence into subroutine to save space
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1891
    assert(StubRoutines::Sparc::stop_subroutine_entry_address(), "hasn't been generated yet");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1892
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1893
    // call indirectly to solve generation ordering problem
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1894
    Address a(O5, (address)StubRoutines::Sparc::stop_subroutine_entry_address());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1895
    load_ptr_contents(a, O5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1896
    jmpl(O5, 0, O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1897
    delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1898
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1899
    breakpoint_trap();   // make stop actually stop rather than writing
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1900
                         // unnoticeable results in the output files.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1901
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1902
    // restore(); done in callee to save space!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1903
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1904
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1905
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1906
void MacroAssembler::warn(const char* msg) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1907
  save_frame(::round_to(sizeof(RegistersForDebugging) / BytesPerWord, 2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1908
  RegistersForDebugging::save_registers(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1909
  mov(O0, L0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1910
  set((intptr_t)msg, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1911
  call( CAST_FROM_FN_PTR(address, warning) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1912
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1913
//  ret();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1914
//  delayed()->restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1915
  RegistersForDebugging::restore_registers(this, L0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1916
  restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1917
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1918
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1919
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1920
void MacroAssembler::untested(const char* what) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1921
  // We must be able to turn interactive prompting off
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1922
  // in order to run automated test scripts on the VM
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1923
  // Use the flag ShowMessageBoxOnError
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1924
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1925
  char* b = new char[1024];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1926
  sprintf(b, "untested: %s", what);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1927
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1928
  if ( ShowMessageBoxOnError )   stop(b);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1929
  else                           warn(b);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1930
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1931
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1932
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1933
void MacroAssembler::stop_subroutine() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1934
  RegistersForDebugging::save_registers(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1935
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1936
  // for the sake of the debugger, stick a PC on the current frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1937
  // (this assumes that the caller has performed an extra "save")
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1938
  mov(I7, L7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1939
  add(O7, -7 * BytesPerInt, I7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1940
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1941
  save_frame(); // one more save to free up another O7 register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1942
  mov(I0, O1); // addr of reg save area
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1943
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1944
  // We expect pointer to message in I1. Caller must set it up in O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1945
  mov(I1, O0); // get msg
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1946
  call (CAST_FROM_FN_PTR(address, MacroAssembler::debug), relocInfo::runtime_call_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1947
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1948
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1949
  restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1950
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1951
  RegistersForDebugging::restore_registers(this, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1952
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1953
  save_frame(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1954
  call(CAST_FROM_FN_PTR(address,breakpoint));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1955
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1956
  restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1957
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1958
  mov(L7, I7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1959
  retl();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1960
  delayed()->restore(); // see stop above
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1961
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1962
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1963
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1964
void MacroAssembler::debug(char* msg, RegistersForDebugging* regs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1965
  if ( ShowMessageBoxOnError ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1966
      JavaThreadState saved_state = JavaThread::current()->thread_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1967
      JavaThread::current()->set_thread_state(_thread_in_vm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1968
      {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1969
        // In order to get locks work, we need to fake a in_VM state
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1970
        ttyLocker ttyl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1971
        ::tty->print_cr("EXECUTION STOPPED: %s\n", msg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1972
        if (CountBytecodes || TraceBytecodes || StopInterpreterAt) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1973
          ::tty->print_cr("Interpreter::bytecode_counter = %d", BytecodeCounter::counter_value());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1974
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1975
        if (os::message_box(msg, "Execution stopped, print registers?"))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1976
          regs->print(::tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1977
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1978
      ThreadStateTransition::transition(JavaThread::current(), _thread_in_vm, saved_state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1979
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1980
  else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1981
     ::tty->print_cr("=============== DEBUG MESSAGE: %s ================\n", msg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1982
  assert(false, "error");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1983
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1984
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1985
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1986
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1987
void MacroAssembler::test() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1988
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1989
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1990
  CodeBuffer cb("test", 10000, 10000);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1991
  MacroAssembler* a = new MacroAssembler(&cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1992
  VM_Version::allow_all();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1993
  a->test_v9();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1994
  a->test_v8_onlys();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1995
  VM_Version::revert();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1996
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1997
  StubRoutines::Sparc::test_stop_entry()();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1998
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1999
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2000
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2001
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2002
void MacroAssembler::calc_mem_param_words(Register Rparam_words, Register Rresult) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2003
  subcc( Rparam_words, Argument::n_register_parameters, Rresult); // how many mem words?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2004
  Label no_extras;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2005
  br( negative, true, pt, no_extras ); // if neg, clear reg
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2006
  delayed()->set( 0, Rresult);         // annuled, so only if taken
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2007
  bind( no_extras );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2008
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2009
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2010
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2011
void MacroAssembler::calc_frame_size(Register Rextra_words, Register Rresult) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2012
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2013
  add(Rextra_words, frame::memory_parameter_word_sp_offset, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2014
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2015
  add(Rextra_words, frame::memory_parameter_word_sp_offset + 1, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2016
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2017
  bclr(1, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2018
  sll(Rresult, LogBytesPerWord, Rresult);  // Rresult has total frame bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2019
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2020
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2021
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2022
void MacroAssembler::calc_frame_size_and_save(Register Rextra_words, Register Rresult) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2023
  calc_frame_size(Rextra_words, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2024
  neg(Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2025
  save(SP, Rresult, SP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2026
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2027
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2028
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2029
// ---------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2030
Assembler::RCondition cond2rcond(Assembler::Condition c) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2031
  switch (c) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2032
    /*case zero: */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2033
    case Assembler::equal:        return Assembler::rc_z;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2034
    case Assembler::lessEqual:    return Assembler::rc_lez;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2035
    case Assembler::less:         return Assembler::rc_lz;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2036
    /*case notZero:*/
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2037
    case Assembler::notEqual:     return Assembler::rc_nz;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2038
    case Assembler::greater:      return Assembler::rc_gz;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2039
    case Assembler::greaterEqual: return Assembler::rc_gez;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2040
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2041
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2042
  return Assembler::rc_z;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2043
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2044
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2045
// compares register with zero and branches.  NOT FOR USE WITH 64-bit POINTERS
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2046
void MacroAssembler::br_zero( Condition c, bool a, Predict p, Register s1, Label& L) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2047
  tst(s1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2048
  br (c, a, p, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2049
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2050
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2051
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2052
// Compares a pointer register with zero and branches on null.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2053
// Does a test & branch on 32-bit systems and a register-branch on 64-bit.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2054
void MacroAssembler::br_null( Register s1, bool a, Predict p, Label& L ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2055
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2056
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2057
  bpr( rc_z, a, p, s1, L );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2058
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2059
  tst(s1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2060
  br ( zero, a, p, L );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2061
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2062
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2063
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2064
void MacroAssembler::br_notnull( Register s1, bool a, Predict p, Label& L ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2065
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2066
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2067
  bpr( rc_nz, a, p, s1, L );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2068
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2069
  tst(s1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2070
  br ( notZero, a, p, L );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2071
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2072
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2073
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  2074
void MacroAssembler::br_on_reg_cond( RCondition rc, bool a, Predict p,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  2075
                                     Register s1, address d,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  2076
                                     relocInfo::relocType rt ) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  2077
  if (VM_Version::v9_instructions_work()) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  2078
    bpr(rc, a, p, s1, d, rt);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  2079
  } else {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  2080
    tst(s1);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  2081
    br(reg_cond_to_cc_cond(rc), a, p, d, rt);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  2082
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  2083
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  2084
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  2085
void MacroAssembler::br_on_reg_cond( RCondition rc, bool a, Predict p,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  2086
                                     Register s1, Label& L ) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  2087
  if (VM_Version::v9_instructions_work()) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  2088
    bpr(rc, a, p, s1, L);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  2089
  } else {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  2090
    tst(s1);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  2091
    br(reg_cond_to_cc_cond(rc), a, p, L);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  2092
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  2093
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  2094
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2095
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2096
// instruction sequences factored across compiler & interpreter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2097
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2098
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2099
void MacroAssembler::lcmp( Register Ra_hi, Register Ra_low,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2100
                           Register Rb_hi, Register Rb_low,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2101
                           Register Rresult) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2102
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2103
  Label check_low_parts, done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2104
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2105
  cmp(Ra_hi, Rb_hi );  // compare hi parts
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2106
  br(equal, true, pt, check_low_parts);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2107
  delayed()->cmp(Ra_low, Rb_low); // test low parts
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2108
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2109
  // And, with an unsigned comparison, it does not matter if the numbers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2110
  // are negative or not.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2111
  // E.g., -2 cmp -1: the low parts are 0xfffffffe and 0xffffffff.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2112
  // The second one is bigger (unsignedly).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2113
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2114
  // Other notes:  The first move in each triplet can be unconditional
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2115
  // (and therefore probably prefetchable).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2116
  // And the equals case for the high part does not need testing,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2117
  // since that triplet is reached only after finding the high halves differ.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2118
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2119
  if (VM_Version::v9_instructions_work()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2120
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2121
                                    mov  (                     -1, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2122
    ba( false, done );  delayed()-> movcc(greater, false, icc,  1, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2123
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2124
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2125
    br(less,    true, pt, done); delayed()-> set(-1, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2126
    br(greater, true, pt, done); delayed()-> set( 1, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2127
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2128
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2129
  bind( check_low_parts );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2130
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2131
  if (VM_Version::v9_instructions_work()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2132
    mov(                               -1, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2133
    movcc(equal,           false, icc,  0, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2134
    movcc(greaterUnsigned, false, icc,  1, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2135
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2136
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2137
                                                    set(-1, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2138
    br(equal,           true, pt, done); delayed()->set( 0, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2139
    br(greaterUnsigned, true, pt, done); delayed()->set( 1, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2140
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2141
  bind( done );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2142
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2143
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2144
void MacroAssembler::lneg( Register Rhi, Register Rlow ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2145
  subcc(  G0, Rlow, Rlow );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2146
  subc(   G0, Rhi,  Rhi  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2147
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2148
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2149
void MacroAssembler::lshl( Register Rin_high,  Register Rin_low,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2150
                           Register Rcount,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2151
                           Register Rout_high, Register Rout_low,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2152
                           Register Rtemp ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2153
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2154
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2155
  Register Ralt_count = Rtemp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2156
  Register Rxfer_bits = Rtemp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2157
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2158
  assert( Ralt_count != Rin_high
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2159
      &&  Ralt_count != Rin_low
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2160
      &&  Ralt_count != Rcount
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2161
      &&  Rxfer_bits != Rin_low
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2162
      &&  Rxfer_bits != Rin_high
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2163
      &&  Rxfer_bits != Rcount
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2164
      &&  Rxfer_bits != Rout_low
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2165
      &&  Rout_low   != Rin_high,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2166
        "register alias checks");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2167
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2168
  Label big_shift, done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2169
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2170
  // This code can be optimized to use the 64 bit shifts in V9.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2171
  // Here we use the 32 bit shifts.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2172
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2173
  and3( Rcount,         0x3f,           Rcount);     // take least significant 6 bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2174
  subcc(Rcount,         31,             Ralt_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2175
  br(greater, true, pn, big_shift);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2176
  delayed()->
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2177
  dec(Ralt_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2178
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2179
  // shift < 32 bits, Ralt_count = Rcount-31
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2180
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2181
  // We get the transfer bits by shifting right by 32-count the low
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2182
  // register. This is done by shifting right by 31-count and then by one
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2183
  // more to take care of the special (rare) case where count is zero
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2184
  // (shifting by 32 would not work).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2185
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2186
  neg(  Ralt_count                                 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2187
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2188
  // The order of the next two instructions is critical in the case where
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2189
  // Rin and Rout are the same and should not be reversed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2190
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2191
  srl(  Rin_low,        Ralt_count,     Rxfer_bits ); // shift right by 31-count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2192
  if (Rcount != Rout_low) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2193
    sll(        Rin_low,        Rcount,         Rout_low   ); // low half
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2194
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2195
  sll(  Rin_high,       Rcount,         Rout_high  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2196
  if (Rcount == Rout_low) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2197
    sll(        Rin_low,        Rcount,         Rout_low   ); // low half
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2198
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2199
  srl(  Rxfer_bits,     1,              Rxfer_bits ); // shift right by one more
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2200
  ba (false, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2201
  delayed()->
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2202
  or3(  Rout_high,      Rxfer_bits,     Rout_high);   // new hi value: or in shifted old hi part and xfer from low
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2203
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2204
  // shift >= 32 bits, Ralt_count = Rcount-32
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2205
  bind(big_shift);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2206
  sll(  Rin_low,        Ralt_count,     Rout_high  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2207
  clr(  Rout_low                                   );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2208
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2209
  bind(done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2210
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2211
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2212
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2213
void MacroAssembler::lshr( Register Rin_high,  Register Rin_low,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2214
                           Register Rcount,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2215
                           Register Rout_high, Register Rout_low,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2216
                           Register Rtemp ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2217
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2218
  Register Ralt_count = Rtemp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2219
  Register Rxfer_bits = Rtemp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2220
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2221
  assert( Ralt_count != Rin_high
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2222
      &&  Ralt_count != Rin_low
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2223
      &&  Ralt_count != Rcount
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2224
      &&  Rxfer_bits != Rin_low
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2225
      &&  Rxfer_bits != Rin_high
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2226
      &&  Rxfer_bits != Rcount
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2227
      &&  Rxfer_bits != Rout_high
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2228
      &&  Rout_high  != Rin_low,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2229
        "register alias checks");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2230
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2231
  Label big_shift, done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2232
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2233
  // This code can be optimized to use the 64 bit shifts in V9.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2234
  // Here we use the 32 bit shifts.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2235
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2236
  and3( Rcount,         0x3f,           Rcount);     // take least significant 6 bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2237
  subcc(Rcount,         31,             Ralt_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2238
  br(greater, true, pn, big_shift);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2239
  delayed()->dec(Ralt_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2240
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2241
  // shift < 32 bits, Ralt_count = Rcount-31
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2242
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2243
  // We get the transfer bits by shifting left by 32-count the high
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2244
  // register. This is done by shifting left by 31-count and then by one
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2245
  // more to take care of the special (rare) case where count is zero
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2246
  // (shifting by 32 would not work).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2247
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2248
  neg(  Ralt_count                                  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2249
  if (Rcount != Rout_low) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2250
    srl(        Rin_low,        Rcount,         Rout_low    );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2251
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2252
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2253
  // The order of the next two instructions is critical in the case where
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2254
  // Rin and Rout are the same and should not be reversed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2255
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2256
  sll(  Rin_high,       Ralt_count,     Rxfer_bits  ); // shift left by 31-count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2257
  sra(  Rin_high,       Rcount,         Rout_high   ); // high half
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2258
  sll(  Rxfer_bits,     1,              Rxfer_bits  ); // shift left by one more
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2259
  if (Rcount == Rout_low) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2260
    srl(        Rin_low,        Rcount,         Rout_low    );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2261
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2262
  ba (false, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2263
  delayed()->
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2264
  or3(  Rout_low,       Rxfer_bits,     Rout_low    ); // new low value: or shifted old low part and xfer from high
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2265
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2266
  // shift >= 32 bits, Ralt_count = Rcount-32
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2267
  bind(big_shift);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2268
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2269
  sra(  Rin_high,       Ralt_count,     Rout_low    );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2270
  sra(  Rin_high,       31,             Rout_high   ); // sign into hi
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2271
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2272
  bind( done );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2273
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2274
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2275
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2276
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2277
void MacroAssembler::lushr( Register Rin_high,  Register Rin_low,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2278
                            Register Rcount,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2279
                            Register Rout_high, Register Rout_low,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2280
                            Register Rtemp ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2281
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2282
  Register Ralt_count = Rtemp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2283
  Register Rxfer_bits = Rtemp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2284
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2285
  assert( Ralt_count != Rin_high
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2286
      &&  Ralt_count != Rin_low
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2287
      &&  Ralt_count != Rcount
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2288
      &&  Rxfer_bits != Rin_low
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2289
      &&  Rxfer_bits != Rin_high
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2290
      &&  Rxfer_bits != Rcount
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2291
      &&  Rxfer_bits != Rout_high
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2292
      &&  Rout_high  != Rin_low,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2293
        "register alias checks");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2294
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2295
  Label big_shift, done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2296
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2297
  // This code can be optimized to use the 64 bit shifts in V9.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2298
  // Here we use the 32 bit shifts.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2299
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2300
  and3( Rcount,         0x3f,           Rcount);     // take least significant 6 bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2301
  subcc(Rcount,         31,             Ralt_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2302
  br(greater, true, pn, big_shift);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2303
  delayed()->dec(Ralt_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2304
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2305
  // shift < 32 bits, Ralt_count = Rcount-31
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2306
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2307
  // We get the transfer bits by shifting left by 32-count the high
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2308
  // register. This is done by shifting left by 31-count and then by one
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2309
  // more to take care of the special (rare) case where count is zero
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2310
  // (shifting by 32 would not work).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2311
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2312
  neg(  Ralt_count                                  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2313
  if (Rcount != Rout_low) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2314
    srl(        Rin_low,        Rcount,         Rout_low    );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2315
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2316
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2317
  // The order of the next two instructions is critical in the case where
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2318
  // Rin and Rout are the same and should not be reversed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2319
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2320
  sll(  Rin_high,       Ralt_count,     Rxfer_bits  ); // shift left by 31-count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2321
  srl(  Rin_high,       Rcount,         Rout_high   ); // high half
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2322
  sll(  Rxfer_bits,     1,              Rxfer_bits  ); // shift left by one more
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2323
  if (Rcount == Rout_low) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2324
    srl(        Rin_low,        Rcount,         Rout_low    );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2325
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2326
  ba (false, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2327
  delayed()->
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2328
  or3(  Rout_low,       Rxfer_bits,     Rout_low    ); // new low value: or shifted old low part and xfer from high
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2329
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2330
  // shift >= 32 bits, Ralt_count = Rcount-32
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2331
  bind(big_shift);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2332
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2333
  srl(  Rin_high,       Ralt_count,     Rout_low    );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2334
  clr(  Rout_high                                   );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2335
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2336
  bind( done );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2337
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2338
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2339
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2340
void MacroAssembler::lcmp( Register Ra, Register Rb, Register Rresult) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2341
  cmp(Ra, Rb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2342
  mov(                       -1, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2343
  movcc(equal,   false, xcc,  0, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2344
  movcc(greater, false, xcc,  1, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2345
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2346
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2347
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2348
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2349
void MacroAssembler::float_cmp( bool is_float, int unordered_result,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2350
                                FloatRegister Fa, FloatRegister Fb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2351
                                Register Rresult) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2352
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2353
  fcmp(is_float ? FloatRegisterImpl::S : FloatRegisterImpl::D, fcc0, Fa, Fb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2354
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2355
  Condition lt = unordered_result == -1 ? f_unorderedOrLess    : f_less;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2356
  Condition eq =                          f_equal;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2357
  Condition gt = unordered_result ==  1 ? f_unorderedOrGreater : f_greater;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2358
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2359
  if (VM_Version::v9_instructions_work()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2360
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2361
    mov(                   -1, Rresult );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2362
    movcc( eq, true, fcc0,  0, Rresult );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2363
    movcc( gt, true, fcc0,  1, Rresult );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2364
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2365
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2366
    Label done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2367
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2368
                                         set( -1, Rresult );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2369
    //fb(lt, true, pn, done); delayed()->set( -1, Rresult );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2370
    fb( eq, true, pn, done);  delayed()->set(  0, Rresult );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2371
    fb( gt, true, pn, done);  delayed()->set(  1, Rresult );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2372
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2373
    bind (done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2374
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2375
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2376
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2377
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2378
void MacroAssembler::fneg( FloatRegisterImpl::Width w, FloatRegister s, FloatRegister d)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2379
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2380
  if (VM_Version::v9_instructions_work()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2381
    Assembler::fneg(w, s, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2382
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2383
    if (w == FloatRegisterImpl::S) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2384
      Assembler::fneg(w, s, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2385
    } else if (w == FloatRegisterImpl::D) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2386
      // number() does a sanity check on the alignment.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2387
      assert(((s->encoding(FloatRegisterImpl::D) & 1) == 0) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2388
        ((d->encoding(FloatRegisterImpl::D) & 1) == 0), "float register alignment check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2389
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2390
      Assembler::fneg(FloatRegisterImpl::S, s, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2391
      Assembler::fmov(FloatRegisterImpl::S, s->successor(), d->successor());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2392
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2393
      assert(w == FloatRegisterImpl::Q, "Invalid float register width");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2394
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2395
      // number() does a sanity check on the alignment.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2396
      assert(((s->encoding(FloatRegisterImpl::D) & 3) == 0) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2397
        ((d->encoding(FloatRegisterImpl::D) & 3) == 0), "float register alignment check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2398
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2399
      Assembler::fneg(FloatRegisterImpl::S, s, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2400
      Assembler::fmov(FloatRegisterImpl::S, s->successor(), d->successor());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2401
      Assembler::fmov(FloatRegisterImpl::S, s->successor()->successor(), d->successor()->successor());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2402
      Assembler::fmov(FloatRegisterImpl::S, s->successor()->successor()->successor(), d->successor()->successor()->successor());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2403
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2404
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2405
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2406
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2407
void MacroAssembler::fmov( FloatRegisterImpl::Width w, FloatRegister s, FloatRegister d)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2408
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2409
  if (VM_Version::v9_instructions_work()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2410
    Assembler::fmov(w, s, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2411
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2412
    if (w == FloatRegisterImpl::S) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2413
      Assembler::fmov(w, s, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2414
    } else if (w == FloatRegisterImpl::D) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2415
      // number() does a sanity check on the alignment.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2416
      assert(((s->encoding(FloatRegisterImpl::D) & 1) == 0) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2417
        ((d->encoding(FloatRegisterImpl::D) & 1) == 0), "float register alignment check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2418
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2419
      Assembler::fmov(FloatRegisterImpl::S, s, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2420
      Assembler::fmov(FloatRegisterImpl::S, s->successor(), d->successor());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2421
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2422
      assert(w == FloatRegisterImpl::Q, "Invalid float register width");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2423
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2424
      // number() does a sanity check on the alignment.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2425
      assert(((s->encoding(FloatRegisterImpl::D) & 3) == 0) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2426
        ((d->encoding(FloatRegisterImpl::D) & 3) == 0), "float register alignment check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2427
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2428
      Assembler::fmov(FloatRegisterImpl::S, s, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2429
      Assembler::fmov(FloatRegisterImpl::S, s->successor(), d->successor());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2430
      Assembler::fmov(FloatRegisterImpl::S, s->successor()->successor(), d->successor()->successor());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2431
      Assembler::fmov(FloatRegisterImpl::S, s->successor()->successor()->successor(), d->successor()->successor()->successor());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2432
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2433
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2434
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2435
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2436
void MacroAssembler::fabs( FloatRegisterImpl::Width w, FloatRegister s, FloatRegister d)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2437
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2438
  if (VM_Version::v9_instructions_work()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2439
    Assembler::fabs(w, s, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2440
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2441
    if (w == FloatRegisterImpl::S) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2442
      Assembler::fabs(w, s, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2443
    } else if (w == FloatRegisterImpl::D) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2444
      // number() does a sanity check on the alignment.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2445
      assert(((s->encoding(FloatRegisterImpl::D) & 1) == 0) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2446
        ((d->encoding(FloatRegisterImpl::D) & 1) == 0), "float register alignment check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2447
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2448
      Assembler::fabs(FloatRegisterImpl::S, s, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2449
      Assembler::fmov(FloatRegisterImpl::S, s->successor(), d->successor());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2450
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2451
      assert(w == FloatRegisterImpl::Q, "Invalid float register width");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2452
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2453
      // number() does a sanity check on the alignment.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2454
      assert(((s->encoding(FloatRegisterImpl::D) & 3) == 0) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2455
       ((d->encoding(FloatRegisterImpl::D) & 3) == 0), "float register alignment check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2456
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2457
      Assembler::fabs(FloatRegisterImpl::S, s, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2458
      Assembler::fmov(FloatRegisterImpl::S, s->successor(), d->successor());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2459
      Assembler::fmov(FloatRegisterImpl::S, s->successor()->successor(), d->successor()->successor());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2460
      Assembler::fmov(FloatRegisterImpl::S, s->successor()->successor()->successor(), d->successor()->successor()->successor());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2461
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2462
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2463
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2464
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2465
void MacroAssembler::save_all_globals_into_locals() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2466
  mov(G1,L1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2467
  mov(G2,L2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2468
  mov(G3,L3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2469
  mov(G4,L4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2470
  mov(G5,L5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2471
  mov(G6,L6);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2472
  mov(G7,L7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2473
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2474
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2475
void MacroAssembler::restore_globals_from_locals() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2476
  mov(L1,G1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2477
  mov(L2,G2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2478
  mov(L3,G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2479
  mov(L4,G4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2480
  mov(L5,G5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2481
  mov(L6,G6);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2482
  mov(L7,G7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2483
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2484
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2485
// Use for 64 bit operation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2486
void MacroAssembler::casx_under_lock(Register top_ptr_reg, Register top_reg, Register ptr_reg, address lock_addr, bool use_call_vm)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2487
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2488
  // store ptr_reg as the new top value
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2489
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2490
  casx(top_ptr_reg, top_reg, ptr_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2491
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2492
  cas_under_lock(top_ptr_reg, top_reg, ptr_reg, lock_addr, use_call_vm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2493
#endif // _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2494
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2495
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2496
// [RGV] This routine does not handle 64 bit operations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2497
//       use casx_under_lock() or casx directly!!!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2498
void MacroAssembler::cas_under_lock(Register top_ptr_reg, Register top_reg, Register ptr_reg, address lock_addr, bool use_call_vm)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2499
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2500
  // store ptr_reg as the new top value
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2501
  if (VM_Version::v9_instructions_work()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2502
    cas(top_ptr_reg, top_reg, ptr_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2503
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2504
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2505
    // If the register is not an out nor global, it is not visible
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2506
    // after the save.  Allocate a register for it, save its
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2507
    // value in the register save area (the save may not flush
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2508
    // registers to the save area).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2509
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2510
    Register top_ptr_reg_after_save;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2511
    Register top_reg_after_save;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2512
    Register ptr_reg_after_save;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2513
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2514
    if (top_ptr_reg->is_out() || top_ptr_reg->is_global()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2515
      top_ptr_reg_after_save = top_ptr_reg->after_save();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2516
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2517
      Address reg_save_addr = top_ptr_reg->address_in_saved_window();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2518
      top_ptr_reg_after_save = L0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2519
      st(top_ptr_reg, reg_save_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2520
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2521
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2522
    if (top_reg->is_out() || top_reg->is_global()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2523
      top_reg_after_save = top_reg->after_save();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2524
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2525
      Address reg_save_addr = top_reg->address_in_saved_window();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2526
      top_reg_after_save = L1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2527
      st(top_reg, reg_save_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2528
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2529
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2530
    if (ptr_reg->is_out() || ptr_reg->is_global()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2531
      ptr_reg_after_save = ptr_reg->after_save();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2532
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2533
      Address reg_save_addr = ptr_reg->address_in_saved_window();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2534
      ptr_reg_after_save = L2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2535
      st(ptr_reg, reg_save_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2536
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2537
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2538
    const Register& lock_reg = L3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2539
    const Register& lock_ptr_reg = L4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2540
    const Register& value_reg = L5;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2541
    const Register& yield_reg = L6;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2542
    const Register& yieldall_reg = L7;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2543
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2544
    save_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2545
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2546
    if (top_ptr_reg_after_save == L0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2547
      ld(top_ptr_reg->address_in_saved_window().after_save(), top_ptr_reg_after_save);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2548
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2549
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2550
    if (top_reg_after_save == L1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2551
      ld(top_reg->address_in_saved_window().after_save(), top_reg_after_save);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2552
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2553
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2554
    if (ptr_reg_after_save == L2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2555
      ld(ptr_reg->address_in_saved_window().after_save(), ptr_reg_after_save);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2556
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2557
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2558
    Label(retry_get_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2559
    Label(not_same);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2560
    Label(dont_yield);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2561
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2562
    assert(lock_addr, "lock_address should be non null for v8");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2563
    set((intptr_t)lock_addr, lock_ptr_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2564
    // Initialize yield counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2565
    mov(G0,yield_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2566
    mov(G0, yieldall_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2567
    set(StubRoutines::Sparc::locked, lock_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2568
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2569
    bind(retry_get_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2570
    cmp(yield_reg, V8AtomicOperationUnderLockSpinCount);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2571
    br(Assembler::less, false, Assembler::pt, dont_yield);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2572
    delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2573
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2574
    if(use_call_vm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2575
      Untested("Need to verify global reg consistancy");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2576
      call_VM(noreg, CAST_FROM_FN_PTR(address, SharedRuntime::yield_all), yieldall_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2577
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2578
      // Save the regs and make space for a C call
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2579
      save(SP, -96, SP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2580
      save_all_globals_into_locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2581
      call(CAST_FROM_FN_PTR(address,os::yield_all));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2582
      delayed()->mov(yieldall_reg, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2583
      restore_globals_from_locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2584
      restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2585
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2586
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2587
    // reset the counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2588
    mov(G0,yield_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2589
    add(yieldall_reg, 1, yieldall_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2590
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2591
    bind(dont_yield);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2592
    // try to get lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2593
    swap(lock_ptr_reg, 0, lock_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2594
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2595
    // did we get the lock?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2596
    cmp(lock_reg, StubRoutines::Sparc::unlocked);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2597
    br(Assembler::notEqual, true, Assembler::pn, retry_get_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2598
    delayed()->add(yield_reg,1,yield_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2599
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2600
    // yes, got lock.  do we have the same top?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2601
    ld(top_ptr_reg_after_save, 0, value_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2602
    cmp(value_reg, top_reg_after_save);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2603
    br(Assembler::notEqual, false, Assembler::pn, not_same);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2604
    delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2605
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2606
    // yes, same top.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2607
    st(ptr_reg_after_save, top_ptr_reg_after_save, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2608
    membar(Assembler::StoreStore);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2609
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2610
    bind(not_same);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2611
    mov(value_reg, ptr_reg_after_save);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2612
    st(lock_reg, lock_ptr_reg, 0); // unlock
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2613
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2614
    restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2615
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2616
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2617
2148
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2618
RegisterConstant MacroAssembler::delayed_value(intptr_t* delayed_value_addr,
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2619
                                               Register tmp,
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2620
                                               int offset) {
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2621
  intptr_t value = *delayed_value_addr;
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2622
  if (value != 0)
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2623
    return RegisterConstant(value + offset);
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2624
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2625
  // load indirectly to solve generation ordering problem
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2626
  Address a(tmp, (address) delayed_value_addr);
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2627
  load_ptr_contents(a, tmp);
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2628
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2629
#ifdef ASSERT
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2630
  tst(tmp);
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2631
  breakpoint_trap(zero, xcc);
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2632
#endif
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2633
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2634
  if (offset != 0)
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2635
    add(tmp, offset, tmp);
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2636
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2637
  return RegisterConstant(tmp);
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2638
}
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2639
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2640
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2641
void MacroAssembler::regcon_inc_ptr( RegisterConstant& dest, RegisterConstant src, Register temp ) {
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2642
  assert(dest.register_or_noreg() != G0, "lost side effect");
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2643
  if ((src.is_constant() && src.as_constant() == 0) ||
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2644
      (src.is_register() && src.as_register() == G0)) {
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2645
    // do nothing
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2646
  } else if (dest.is_register()) {
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2647
    add(dest.as_register(), ensure_rs2(src, temp), dest.as_register());
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2648
  } else if (src.is_constant()) {
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2649
    intptr_t res = dest.as_constant() + src.as_constant();
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2650
    dest = RegisterConstant(res); // side effect seen by caller
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2651
  } else {
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2652
    assert(temp != noreg, "cannot handle constant += register");
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2653
    add(src.as_register(), ensure_rs2(dest, temp), temp);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2654
    dest = RegisterConstant(temp); // side effect seen by caller
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2655
  }
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2656
}
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2657
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2658
void MacroAssembler::regcon_sll_ptr( RegisterConstant& dest, RegisterConstant src, Register temp ) {
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2659
  assert(dest.register_or_noreg() != G0, "lost side effect");
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2660
  if (!is_simm13(src.constant_or_zero()))
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2661
    src = (src.as_constant() & 0xFF);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2662
  if ((src.is_constant() && src.as_constant() == 0) ||
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2663
      (src.is_register() && src.as_register() == G0)) {
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2664
    // do nothing
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2665
  } else if (dest.is_register()) {
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2666
    sll_ptr(dest.as_register(), src, dest.as_register());
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2667
  } else if (src.is_constant()) {
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2668
    intptr_t res = dest.as_constant() << src.as_constant();
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2669
    dest = RegisterConstant(res); // side effect seen by caller
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2670
  } else {
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2671
    assert(temp != noreg, "cannot handle constant <<= register");
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2672
    set(dest.as_constant(), temp);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2673
    sll_ptr(temp, src, temp);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2674
    dest = RegisterConstant(temp); // side effect seen by caller
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2675
  }
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2676
}
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2677
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2678
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2679
// Look up the method for a megamorphic invokeinterface call.
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2680
// The target method is determined by <intf_klass, itable_index>.
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2681
// The receiver klass is in recv_klass.
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2682
// On success, the result will be in method_result, and execution falls through.
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2683
// On failure, execution transfers to the given label.
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2684
void MacroAssembler::lookup_interface_method(Register recv_klass,
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2685
                                             Register intf_klass,
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2686
                                             RegisterConstant itable_index,
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2687
                                             Register method_result,
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2688
                                             Register scan_temp,
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2689
                                             Register sethi_temp,
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2690
                                             Label& L_no_such_interface) {
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2691
  assert_different_registers(recv_klass, intf_klass, method_result, scan_temp);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2692
  assert(itable_index.is_constant() || itable_index.as_register() == method_result,
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2693
         "caller must use same register for non-constant itable index as for method");
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2694
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2695
  // Compute start of first itableOffsetEntry (which is at the end of the vtable)
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2696
  int vtable_base = instanceKlass::vtable_start_offset() * wordSize;
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2697
  int scan_step   = itableOffsetEntry::size() * wordSize;
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2698
  int vte_size    = vtableEntry::size() * wordSize;
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2699
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2700
  lduw(recv_klass, instanceKlass::vtable_length_offset() * wordSize, scan_temp);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2701
  // %%% We should store the aligned, prescaled offset in the klassoop.
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2702
  // Then the next several instructions would fold away.
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2703
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2704
  int round_to_unit = ((HeapWordsPerLong > 1) ? BytesPerLong : 0);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2705
  int itb_offset = vtable_base;
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2706
  if (round_to_unit != 0) {
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2707
    // hoist first instruction of round_to(scan_temp, BytesPerLong):
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2708
    itb_offset += round_to_unit - wordSize;
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2709
  }
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2710
  int itb_scale = exact_log2(vtableEntry::size() * wordSize);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2711
  sll(scan_temp, itb_scale,  scan_temp);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2712
  add(scan_temp, itb_offset, scan_temp);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2713
  if (round_to_unit != 0) {
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2714
    // Round up to align_object_offset boundary
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2715
    // see code for instanceKlass::start_of_itable!
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2716
    // Was: round_to(scan_temp, BytesPerLong);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2717
    // Hoisted: add(scan_temp, BytesPerLong-1, scan_temp);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2718
    and3(scan_temp, -round_to_unit, scan_temp);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2719
  }
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2720
  add(recv_klass, scan_temp, scan_temp);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2721
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2722
  // Adjust recv_klass by scaled itable_index, so we can free itable_index.
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2723
  RegisterConstant itable_offset = itable_index;
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2724
  regcon_sll_ptr(itable_offset, exact_log2(itableMethodEntry::size() * wordSize));
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2725
  regcon_inc_ptr(itable_offset, itableMethodEntry::method_offset_in_bytes());
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2726
  add(recv_klass, ensure_rs2(itable_offset, sethi_temp), recv_klass);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2727
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2728
  // for (scan = klass->itable(); scan->interface() != NULL; scan += scan_step) {
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2729
  //   if (scan->interface() == intf) {
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2730
  //     result = (klass + scan->offset() + itable_index);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2731
  //   }
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2732
  // }
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2733
  Label search, found_method;
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2734
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2735
  for (int peel = 1; peel >= 0; peel--) {
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2736
    // %%%% Could load both offset and interface in one ldx, if they were
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2737
    // in the opposite order.  This would save a load.
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2738
    ld_ptr(scan_temp, itableOffsetEntry::interface_offset_in_bytes(), method_result);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2739
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2740
    // Check that this entry is non-null.  A null entry means that
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2741
    // the receiver class doesn't implement the interface, and wasn't the
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2742
    // same as when the caller was compiled.
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2743
    bpr(Assembler::rc_z, false, Assembler::pn, method_result, L_no_such_interface);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2744
    delayed()->cmp(method_result, intf_klass);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2745
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2746
    if (peel) {
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2747
      brx(Assembler::equal,    false, Assembler::pt, found_method);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2748
    } else {
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2749
      brx(Assembler::notEqual, false, Assembler::pn, search);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2750
      // (invert the test to fall through to found_method...)
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2751
    }
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2752
    delayed()->add(scan_temp, scan_step, scan_temp);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2753
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2754
    if (!peel)  break;
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2755
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2756
    bind(search);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2757
  }
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2758
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2759
  bind(found_method);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2760
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2761
  // Got a hit.
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2762
  int ito_offset = itableOffsetEntry::offset_offset_in_bytes();
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2763
  // scan_temp[-scan_step] points to the vtable offset we need
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2764
  ito_offset -= scan_step;
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2765
  lduw(scan_temp, ito_offset, scan_temp);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2766
  ld_ptr(recv_klass, scan_temp, method_result);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2767
}
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2768
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2769
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2770
void MacroAssembler::check_klass_subtype(Register sub_klass,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2771
                                         Register super_klass,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2772
                                         Register temp_reg,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2773
                                         Register temp2_reg,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2774
                                         Label& L_success) {
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2775
  Label L_failure, L_pop_to_failure;
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2776
  check_klass_subtype_fast_path(sub_klass, super_klass,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2777
                                temp_reg, temp2_reg,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2778
                                &L_success, &L_failure, NULL);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2779
  Register sub_2 = sub_klass;
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2780
  Register sup_2 = super_klass;
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2781
  if (!sub_2->is_global())  sub_2 = L0;
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2782
  if (!sup_2->is_global())  sup_2 = L1;
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2783
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2784
  save_frame_and_mov(0, sub_klass, sub_2, super_klass, sup_2);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2785
  check_klass_subtype_slow_path(sub_2, sup_2,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2786
                                L2, L3, L4, L5,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2787
                                NULL, &L_pop_to_failure);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2788
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2789
  // on success:
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2790
  restore();
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2791
  ba(false, L_success);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2792
  delayed()->nop();
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2793
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2794
  // on failure:
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2795
  bind(L_pop_to_failure);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2796
  restore();
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2797
  bind(L_failure);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2798
}
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2799
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2800
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2801
void MacroAssembler::check_klass_subtype_fast_path(Register sub_klass,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2802
                                                   Register super_klass,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2803
                                                   Register temp_reg,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2804
                                                   Register temp2_reg,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2805
                                                   Label* L_success,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2806
                                                   Label* L_failure,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2807
                                                   Label* L_slow_path,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2808
                                        RegisterConstant super_check_offset,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2809
                                        Register instanceof_hack) {
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2810
  int sc_offset = (klassOopDesc::header_size() * HeapWordSize +
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2811
                   Klass::secondary_super_cache_offset_in_bytes());
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2812
  int sco_offset = (klassOopDesc::header_size() * HeapWordSize +
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2813
                    Klass::super_check_offset_offset_in_bytes());
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2814
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2815
  bool must_load_sco  = (super_check_offset.constant_or_zero() == -1);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2816
  bool need_slow_path = (must_load_sco ||
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2817
                         super_check_offset.constant_or_zero() == sco_offset);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2818
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2819
  assert_different_registers(sub_klass, super_klass, temp_reg);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2820
  if (super_check_offset.is_register()) {
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2821
    assert_different_registers(sub_klass, super_klass,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2822
                               super_check_offset.as_register());
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2823
  } else if (must_load_sco) {
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2824
    assert(temp2_reg != noreg, "supply either a temp or a register offset");
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2825
  }
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2826
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2827
  Label L_fallthrough;
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2828
  int label_nulls = 0;
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2829
  if (L_success == NULL)   { L_success   = &L_fallthrough; label_nulls++; }
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2830
  if (L_failure == NULL)   { L_failure   = &L_fallthrough; label_nulls++; }
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2831
  if (L_slow_path == NULL) { L_slow_path = &L_fallthrough; label_nulls++; }
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2832
  assert(label_nulls <= 1 || instanceof_hack != noreg ||
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2833
         (L_slow_path == &L_fallthrough && label_nulls <= 2 && !need_slow_path),
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2834
         "at most one NULL in the batch, usually");
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2835
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2836
  // Support for the instanceof hack, which uses delay slots to
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2837
  // set a destination register to zero or one.
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2838
  bool do_bool_sets = (instanceof_hack != noreg);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2839
#define BOOL_SET(bool_value)                            \
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2840
  if (do_bool_sets && bool_value >= 0)                  \
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2841
    set(bool_value, instanceof_hack)
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2842
#define DELAYED_BOOL_SET(bool_value)                    \
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2843
  if (do_bool_sets && bool_value >= 0)                  \
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2844
    delayed()->set(bool_value, instanceof_hack);        \
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2845
  else delayed()->nop()
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2846
  // Hacked ba(), which may only be used just before L_fallthrough.
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2847
#define FINAL_JUMP(label, bool_value)                   \
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2848
  if (&(label) == &L_fallthrough) {                     \
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2849
    BOOL_SET(bool_value);                               \
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2850
  } else {                                              \
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2851
    ba((do_bool_sets && bool_value >= 0), label);       \
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2852
    DELAYED_BOOL_SET(bool_value);                       \
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2853
  }
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2854
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2855
  // If the pointers are equal, we are done (e.g., String[] elements).
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2856
  // This self-check enables sharing of secondary supertype arrays among
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2857
  // non-primary types such as array-of-interface.  Otherwise, each such
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2858
  // type would need its own customized SSA.
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2859
  // We move this check to the front of the fast path because many
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2860
  // type checks are in fact trivially successful in this manner,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2861
  // so we get a nicely predicted branch right at the start of the check.
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2862
  cmp(super_klass, sub_klass);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2863
  brx(Assembler::equal, do_bool_sets, Assembler::pn, *L_success);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2864
  DELAYED_BOOL_SET(1);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2865
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2866
  // Check the supertype display:
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2867
  if (must_load_sco) {
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2868
    // The super check offset is always positive...
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2869
    lduw(super_klass, sco_offset, temp2_reg);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2870
    super_check_offset = RegisterConstant(temp2_reg);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2871
  }
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2872
  ld_ptr(sub_klass, super_check_offset, temp_reg);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2873
  cmp(super_klass, temp_reg);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2874
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2875
  // This check has worked decisively for primary supers.
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2876
  // Secondary supers are sought in the super_cache ('super_cache_addr').
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2877
  // (Secondary supers are interfaces and very deeply nested subtypes.)
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2878
  // This works in the same check above because of a tricky aliasing
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2879
  // between the super_cache and the primary super display elements.
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2880
  // (The 'super_check_addr' can address either, as the case requires.)
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2881
  // Note that the cache is updated below if it does not help us find
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2882
  // what we need immediately.
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2883
  // So if it was a primary super, we can just fail immediately.
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2884
  // Otherwise, it's the slow path for us (no success at this point).
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2885
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2886
  if (super_check_offset.is_register()) {
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2887
    brx(Assembler::equal, do_bool_sets, Assembler::pn, *L_success);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2888
    delayed(); if (do_bool_sets)  BOOL_SET(1);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2889
    // if !do_bool_sets, sneak the next cmp into the delay slot:
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2890
    cmp(super_check_offset.as_register(), sc_offset);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2891
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2892
    if (L_failure == &L_fallthrough) {
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2893
      brx(Assembler::equal, do_bool_sets, Assembler::pt, *L_slow_path);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2894
      delayed()->nop();
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2895
      BOOL_SET(0);  // fallthrough on failure
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2896
    } else {
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2897
      brx(Assembler::notEqual, do_bool_sets, Assembler::pn, *L_failure);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2898
      DELAYED_BOOL_SET(0);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2899
      FINAL_JUMP(*L_slow_path, -1);  // -1 => vanilla delay slot
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2900
    }
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2901
  } else if (super_check_offset.as_constant() == sc_offset) {
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2902
    // Need a slow path; fast failure is impossible.
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2903
    if (L_slow_path == &L_fallthrough) {
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2904
      brx(Assembler::equal, do_bool_sets, Assembler::pt, *L_success);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2905
      DELAYED_BOOL_SET(1);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2906
    } else {
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2907
      brx(Assembler::notEqual, false, Assembler::pn, *L_slow_path);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2908
      delayed()->nop();
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2909
      FINAL_JUMP(*L_success, 1);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2910
    }
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2911
  } else {
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2912
    // No slow path; it's a fast decision.
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2913
    if (L_failure == &L_fallthrough) {
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2914
      brx(Assembler::equal, do_bool_sets, Assembler::pt, *L_success);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2915
      DELAYED_BOOL_SET(1);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2916
      BOOL_SET(0);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2917
    } else {
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2918
      brx(Assembler::notEqual, do_bool_sets, Assembler::pn, *L_failure);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2919
      DELAYED_BOOL_SET(0);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2920
      FINAL_JUMP(*L_success, 1);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2921
    }
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2922
  }
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2923
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2924
  bind(L_fallthrough);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2925
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2926
#undef final_jump
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2927
#undef bool_set
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2928
#undef DELAYED_BOOL_SET
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2929
#undef final_jump
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2930
}
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2931
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2932
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2933
void MacroAssembler::check_klass_subtype_slow_path(Register sub_klass,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2934
                                                   Register super_klass,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2935
                                                   Register count_temp,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2936
                                                   Register scan_temp,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2937
                                                   Register scratch_reg,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2938
                                                   Register coop_reg,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2939
                                                   Label* L_success,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2940
                                                   Label* L_failure) {
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2941
  assert_different_registers(sub_klass, super_klass,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2942
                             count_temp, scan_temp, scratch_reg, coop_reg);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2943
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2944
  Label L_fallthrough, L_loop;
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2945
  int label_nulls = 0;
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2946
  if (L_success == NULL)   { L_success   = &L_fallthrough; label_nulls++; }
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2947
  if (L_failure == NULL)   { L_failure   = &L_fallthrough; label_nulls++; }
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2948
  assert(label_nulls <= 1, "at most one NULL in the batch");
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2949
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2950
  // a couple of useful fields in sub_klass:
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2951
  int ss_offset = (klassOopDesc::header_size() * HeapWordSize +
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2952
                   Klass::secondary_supers_offset_in_bytes());
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2953
  int sc_offset = (klassOopDesc::header_size() * HeapWordSize +
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2954
                   Klass::secondary_super_cache_offset_in_bytes());
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2955
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2956
  // Do a linear scan of the secondary super-klass chain.
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2957
  // This code is rarely used, so simplicity is a virtue here.
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2958
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2959
#ifndef PRODUCT
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2960
  int* pst_counter = &SharedRuntime::_partial_subtype_ctr;
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2961
  inc_counter((address) pst_counter, count_temp, scan_temp);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2962
#endif
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2963
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2964
  // We will consult the secondary-super array.
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2965
  ld_ptr(sub_klass, ss_offset, scan_temp);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2966
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2967
  // Compress superclass if necessary.
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2968
  Register search_key = super_klass;
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2969
  bool decode_super_klass = false;
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2970
  if (UseCompressedOops) {
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2971
    if (coop_reg != noreg) {
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2972
      encode_heap_oop_not_null(super_klass, coop_reg);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2973
      search_key = coop_reg;
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2974
    } else {
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2975
      encode_heap_oop_not_null(super_klass);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2976
      decode_super_klass = true; // scarce temps!
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2977
    }
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2978
    // The superclass is never null; it would be a basic system error if a null
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2979
    // pointer were to sneak in here.  Note that we have already loaded the
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2980
    // Klass::super_check_offset from the super_klass in the fast path,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2981
    // so if there is a null in that register, we are already in the afterlife.
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2982
  }
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2983
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2984
  // Load the array length.  (Positive movl does right thing on LP64.)
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2985
  lduw(scan_temp, arrayOopDesc::length_offset_in_bytes(), count_temp);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2986
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2987
  // Check for empty secondary super list
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2988
  tst(count_temp);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2989
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2990
  // Top of search loop
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2991
  bind(L_loop);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2992
  br(Assembler::equal, false, Assembler::pn, *L_failure);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2993
  delayed()->add(scan_temp, heapOopSize, scan_temp);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2994
  assert(heapOopSize != 0, "heapOopSize should be initialized");
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2995
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2996
  // Skip the array header in all array accesses.
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2997
  int elem_offset = arrayOopDesc::base_offset_in_bytes(T_OBJECT);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2998
  elem_offset -= heapOopSize;   // the scan pointer was pre-incremented also
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  2999
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3000
  // Load next super to check
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3001
  if (UseCompressedOops) {
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3002
    // Don't use load_heap_oop; we don't want to decode the element.
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3003
    lduw(   scan_temp, elem_offset, scratch_reg );
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3004
  } else {
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3005
    ld_ptr( scan_temp, elem_offset, scratch_reg );
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3006
  }
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3007
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3008
  // Look for Rsuper_klass on Rsub_klass's secondary super-class-overflow list
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3009
  cmp(scratch_reg, search_key);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3010
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3011
  // A miss means we are NOT a subtype and need to keep looping
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3012
  brx(Assembler::notEqual, false, Assembler::pn, L_loop);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3013
  delayed()->deccc(count_temp); // decrement trip counter in delay slot
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3014
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3015
  // Falling out the bottom means we found a hit; we ARE a subtype
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3016
  if (decode_super_klass) decode_heap_oop(super_klass);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3017
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3018
  // Success.  Cache the super we found and proceed in triumph.
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3019
  st_ptr(super_klass, sub_klass, sc_offset);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3020
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3021
  if (L_success != &L_fallthrough) {
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3022
    ba(false, *L_success);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3023
    delayed()->nop();
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3024
  }
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3025
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3026
  bind(L_fallthrough);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3027
}
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3028
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3029
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3030
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3031
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1388
diff changeset
  3032
void MacroAssembler::biased_locking_enter(Register obj_reg, Register mark_reg,
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1388
diff changeset
  3033
                                          Register temp_reg,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3034
                                          Label& done, Label* slow_case,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3035
                                          BiasedLockingCounters* counters) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3036
  assert(UseBiasedLocking, "why call this otherwise?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3037
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3038
  if (PrintBiasedLockingStatistics) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3039
    assert_different_registers(obj_reg, mark_reg, temp_reg, O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3040
    if (counters == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3041
      counters = BiasedLocking::counters();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3042
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3043
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3044
  Label cas_label;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3045
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3046
  // Biased locking
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3047
  // See whether the lock is currently biased toward our thread and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3048
  // whether the epoch is still valid
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3049
  // Note that the runtime guarantees sufficient alignment of JavaThread
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3050
  // pointers to allow age to be placed into low bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3051
  assert(markOopDesc::age_shift == markOopDesc::lock_bits + markOopDesc::biased_lock_bits, "biased locking makes assumptions about bit layout");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3052
  and3(mark_reg, markOopDesc::biased_lock_mask_in_place, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3053
  cmp(temp_reg, markOopDesc::biased_lock_pattern);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3054
  brx(Assembler::notEqual, false, Assembler::pn, cas_label);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  3055
  delayed()->nop();
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  3056
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  3057
  load_klass(obj_reg, temp_reg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3058
  ld_ptr(Address(temp_reg, 0, Klass::prototype_header_offset_in_bytes() + klassOopDesc::klass_part_offset_in_bytes()), temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3059
  or3(G2_thread, temp_reg, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3060
  xor3(mark_reg, temp_reg, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3061
  andcc(temp_reg, ~((int) markOopDesc::age_mask_in_place), temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3062
  if (counters != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3063
    cond_inc(Assembler::equal, (address) counters->biased_lock_entry_count_addr(), mark_reg, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3064
    // Reload mark_reg as we may need it later
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3065
    ld_ptr(Address(obj_reg, 0, oopDesc::mark_offset_in_bytes()), mark_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3066
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3067
  brx(Assembler::equal, true, Assembler::pt, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3068
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3069
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3070
  Label try_revoke_bias;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3071
  Label try_rebias;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3072
  Address mark_addr = Address(obj_reg, 0, oopDesc::mark_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3073
  assert(mark_addr.disp() == 0, "cas must take a zero displacement");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3074
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3075
  // At this point we know that the header has the bias pattern and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3076
  // that we are not the bias owner in the current epoch. We need to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3077
  // figure out more details about the state of the header in order to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3078
  // know what operations can be legally performed on the object's
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3079
  // header.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3080
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3081
  // If the low three bits in the xor result aren't clear, that means
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3082
  // the prototype header is no longer biased and we have to revoke
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3083
  // the bias on this object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3084
  btst(markOopDesc::biased_lock_mask_in_place, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3085
  brx(Assembler::notZero, false, Assembler::pn, try_revoke_bias);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3086
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3087
  // Biasing is still enabled for this data type. See whether the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3088
  // epoch of the current bias is still valid, meaning that the epoch
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3089
  // bits of the mark word are equal to the epoch bits of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3090
  // prototype header. (Note that the prototype header's epoch bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3091
  // only change at a safepoint.) If not, attempt to rebias the object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3092
  // toward the current thread. Note that we must be absolutely sure
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3093
  // that the current epoch is invalid in order to do this because
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3094
  // otherwise the manipulations it performs on the mark word are
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3095
  // illegal.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3096
  delayed()->btst(markOopDesc::epoch_mask_in_place, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3097
  brx(Assembler::notZero, false, Assembler::pn, try_rebias);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3098
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3099
  // The epoch of the current bias is still valid but we know nothing
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3100
  // about the owner; it might be set or it might be clear. Try to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3101
  // acquire the bias of the object using an atomic operation. If this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3102
  // fails we will go in to the runtime to revoke the object's bias.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3103
  // Note that we first construct the presumed unbiased header so we
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3104
  // don't accidentally blow away another thread's valid bias.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3105
  delayed()->and3(mark_reg,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3106
                  markOopDesc::biased_lock_mask_in_place | markOopDesc::age_mask_in_place | markOopDesc::epoch_mask_in_place,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3107
                  mark_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3108
  or3(G2_thread, mark_reg, temp_reg);
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1388
diff changeset
  3109
  casn(mark_addr.base(), mark_reg, temp_reg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3110
  // If the biasing toward our thread failed, this means that
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3111
  // another thread succeeded in biasing it toward itself and we
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3112
  // need to revoke that bias. The revocation will occur in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3113
  // interpreter runtime in the slow case.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3114
  cmp(mark_reg, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3115
  if (counters != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3116
    cond_inc(Assembler::zero, (address) counters->anonymously_biased_lock_entry_count_addr(), mark_reg, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3117
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3118
  if (slow_case != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3119
    brx(Assembler::notEqual, true, Assembler::pn, *slow_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3120
    delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3121
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3122
  br(Assembler::always, false, Assembler::pt, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3123
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3124
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3125
  bind(try_rebias);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3126
  // At this point we know the epoch has expired, meaning that the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3127
  // current "bias owner", if any, is actually invalid. Under these
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3128
  // circumstances _only_, we are allowed to use the current header's
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3129
  // value as the comparison value when doing the cas to acquire the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3130
  // bias in the current epoch. In other words, we allow transfer of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3131
  // the bias from one thread to another directly in this situation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3132
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3133
  // FIXME: due to a lack of registers we currently blow away the age
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3134
  // bits in this situation. Should attempt to preserve them.
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  3135
  load_klass(obj_reg, temp_reg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3136
  ld_ptr(Address(temp_reg, 0, Klass::prototype_header_offset_in_bytes() + klassOopDesc::klass_part_offset_in_bytes()), temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3137
  or3(G2_thread, temp_reg, temp_reg);
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1388
diff changeset
  3138
  casn(mark_addr.base(), mark_reg, temp_reg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3139
  // If the biasing toward our thread failed, this means that
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3140
  // another thread succeeded in biasing it toward itself and we
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3141
  // need to revoke that bias. The revocation will occur in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3142
  // interpreter runtime in the slow case.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3143
  cmp(mark_reg, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3144
  if (counters != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3145
    cond_inc(Assembler::zero, (address) counters->rebiased_lock_entry_count_addr(), mark_reg, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3146
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3147
  if (slow_case != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3148
    brx(Assembler::notEqual, true, Assembler::pn, *slow_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3149
    delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3150
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3151
  br(Assembler::always, false, Assembler::pt, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3152
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3153
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3154
  bind(try_revoke_bias);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3155
  // The prototype mark in the klass doesn't have the bias bit set any
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3156
  // more, indicating that objects of this data type are not supposed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3157
  // to be biased any more. We are going to try to reset the mark of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3158
  // this object to the prototype value and fall through to the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3159
  // CAS-based locking scheme. Note that if our CAS fails, it means
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3160
  // that another thread raced us for the privilege of revoking the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3161
  // bias of this particular object, so it's okay to continue in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3162
  // normal locking code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3163
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3164
  // FIXME: due to a lack of registers we currently blow away the age
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3165
  // bits in this situation. Should attempt to preserve them.
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  3166
  load_klass(obj_reg, temp_reg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3167
  ld_ptr(Address(temp_reg, 0, Klass::prototype_header_offset_in_bytes() + klassOopDesc::klass_part_offset_in_bytes()), temp_reg);
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1388
diff changeset
  3168
  casn(mark_addr.base(), mark_reg, temp_reg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3169
  // Fall through to the normal CAS-based lock, because no matter what
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3170
  // the result of the above CAS, some thread must have succeeded in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3171
  // removing the bias bit from the object's header.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3172
  if (counters != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3173
    cmp(mark_reg, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3174
    cond_inc(Assembler::zero, (address) counters->revoked_lock_entry_count_addr(), mark_reg, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3175
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3176
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3177
  bind(cas_label);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3178
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3179
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3180
void MacroAssembler::biased_locking_exit (Address mark_addr, Register temp_reg, Label& done,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3181
                                          bool allow_delay_slot_filling) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3182
  // Check for biased locking unlock case, which is a no-op
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3183
  // Note: we do not have to check the thread ID for two reasons.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3184
  // First, the interpreter checks for IllegalMonitorStateException at
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3185
  // a higher level. Second, if the bias was revoked while we held the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3186
  // lock, the object could not be rebiased toward another thread, so
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3187
  // the bias bit would be clear.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3188
  ld_ptr(mark_addr, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3189
  and3(temp_reg, markOopDesc::biased_lock_mask_in_place, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3190
  cmp(temp_reg, markOopDesc::biased_lock_pattern);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3191
  brx(Assembler::equal, allow_delay_slot_filling, Assembler::pt, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3192
  delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3193
  if (!allow_delay_slot_filling) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3194
    nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3195
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3196
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3197
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3198
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3199
// CASN -- 32-64 bit switch hitter similar to the synthetic CASN provided by
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3200
// Solaris/SPARC's "as".  Another apt name would be cas_ptr()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3201
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3202
void MacroAssembler::casn (Register addr_reg, Register cmp_reg, Register set_reg ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3203
  casx_under_lock (addr_reg, cmp_reg, set_reg, (address)StubRoutines::Sparc::atomic_memory_operation_lock_addr()) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3204
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3205
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3206
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3207
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3208
// compiler_lock_object() and compiler_unlock_object() are direct transliterations
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3209
// of i486.ad fast_lock() and fast_unlock().  See those methods for detailed comments.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3210
// The code could be tightened up considerably.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3211
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3212
// box->dhw disposition - post-conditions at DONE_LABEL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3213
// -   Successful inflated lock:  box->dhw != 0.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3214
//     Any non-zero value suffices.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3215
//     Consider G2_thread, rsp, boxReg, or unused_mark()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3216
// -   Successful Stack-lock: box->dhw == mark.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3217
//     box->dhw must contain the displaced mark word value
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3218
// -   Failure -- icc.ZFlag == 0 and box->dhw is undefined.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3219
//     The slow-path fast_enter() and slow_enter() operators
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3220
//     are responsible for setting box->dhw = NonZero (typically ::unused_mark).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3221
// -   Biased: box->dhw is undefined
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3222
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3223
// SPARC refworkload performance - specifically jetstream and scimark - are
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3224
// extremely sensitive to the size of the code emitted by compiler_lock_object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3225
// and compiler_unlock_object.  Critically, the key factor is code size, not path
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3226
// length.  (Simply experiments to pad CLO with unexecuted NOPs demonstrte the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3227
// effect).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3228
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3229
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1388
diff changeset
  3230
void MacroAssembler::compiler_lock_object(Register Roop, Register Rmark,
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1388
diff changeset
  3231
                                          Register Rbox, Register Rscratch,
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1388
diff changeset
  3232
                                          BiasedLockingCounters* counters,
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1388
diff changeset
  3233
                                          bool try_bias) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3234
   Address mark_addr(Roop, 0, oopDesc::mark_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3235
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3236
   verify_oop(Roop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3237
   Label done ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3238
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3239
   if (counters != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3240
     inc_counter((address) counters->total_entry_count_addr(), Rmark, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3241
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3242
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3243
   if (EmitSync & 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3244
     mov    (3, Rscratch) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3245
     st_ptr (Rscratch, Rbox, BasicLock::displaced_header_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3246
     cmp    (SP, G0) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3247
     return ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3248
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3249
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3250
   if (EmitSync & 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3251
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3252
     // Fetch object's markword
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3253
     ld_ptr(mark_addr, Rmark);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3254
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1388
diff changeset
  3255
     if (try_bias) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3256
        biased_locking_enter(Roop, Rmark, Rscratch, done, NULL, counters);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3257
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3258
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3259
     // Save Rbox in Rscratch to be used for the cas operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3260
     mov(Rbox, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3261
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3262
     // set Rmark to markOop | markOopDesc::unlocked_value
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3263
     or3(Rmark, markOopDesc::unlocked_value, Rmark);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3264
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3265
     // Initialize the box.  (Must happen before we update the object mark!)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3266
     st_ptr(Rmark, Rbox, BasicLock::displaced_header_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3267
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3268
     // compare object markOop with Rmark and if equal exchange Rscratch with object markOop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3269
     assert(mark_addr.disp() == 0, "cas must take a zero displacement");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3270
     casx_under_lock(mark_addr.base(), Rmark, Rscratch,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3271
        (address)StubRoutines::Sparc::atomic_memory_operation_lock_addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3272
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3273
     // if compare/exchange succeeded we found an unlocked object and we now have locked it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3274
     // hence we are done
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3275
     cmp(Rmark, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3276
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3277
     sub(Rscratch, STACK_BIAS, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3278
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3279
     brx(Assembler::equal, false, Assembler::pt, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3280
     delayed()->sub(Rscratch, SP, Rscratch);  //pull next instruction into delay slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3281
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3282
     // we did not find an unlocked object so see if this is a recursive case
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3283
     // sub(Rscratch, SP, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3284
     assert(os::vm_page_size() > 0xfff, "page size too small - change the constant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3285
     andcc(Rscratch, 0xfffff003, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3286
     st_ptr(Rscratch, Rbox, BasicLock::displaced_header_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3287
     bind (done) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3288
     return ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3289
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3290
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3291
   Label Egress ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3292
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3293
   if (EmitSync & 256) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3294
      Label IsInflated ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3295
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3296
      ld_ptr (mark_addr, Rmark);           // fetch obj->mark
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3297
      // Triage: biased, stack-locked, neutral, inflated
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1388
diff changeset
  3298
      if (try_bias) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3299
        biased_locking_enter(Roop, Rmark, Rscratch, done, NULL, counters);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3300
        // Invariant: if control reaches this point in the emitted stream
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3301
        // then Rmark has not been modified.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3302
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3303
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3304
      // Store mark into displaced mark field in the on-stack basic-lock "box"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3305
      // Critically, this must happen before the CAS
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3306
      // Maximize the ST-CAS distance to minimize the ST-before-CAS penalty.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3307
      st_ptr (Rmark, Rbox, BasicLock::displaced_header_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3308
      andcc  (Rmark, 2, G0) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3309
      brx    (Assembler::notZero, false, Assembler::pn, IsInflated) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3310
      delayed() ->
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3311
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3312
      // Try stack-lock acquisition.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3313
      // Beware: the 1st instruction is in a delay slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3314
      mov    (Rbox,  Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3315
      or3    (Rmark, markOopDesc::unlocked_value, Rmark);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3316
      assert (mark_addr.disp() == 0, "cas must take a zero displacement");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3317
      casn   (mark_addr.base(), Rmark, Rscratch) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3318
      cmp    (Rmark, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3319
      brx    (Assembler::equal, false, Assembler::pt, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3320
      delayed()->sub(Rscratch, SP, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3321
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3322
      // Stack-lock attempt failed - check for recursive stack-lock.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3323
      // See the comments below about how we might remove this case.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3324
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3325
      sub    (Rscratch, STACK_BIAS, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3326
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3327
      assert(os::vm_page_size() > 0xfff, "page size too small - change the constant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3328
      andcc  (Rscratch, 0xfffff003, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3329
      br     (Assembler::always, false, Assembler::pt, done) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3330
      delayed()-> st_ptr (Rscratch, Rbox, BasicLock::displaced_header_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3331
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3332
      bind   (IsInflated) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3333
      if (EmitSync & 64) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3334
         // If m->owner != null goto IsLocked
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3335
         // Pessimistic form: Test-and-CAS vs CAS
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3336
         // The optimistic form avoids RTS->RTO cache line upgrades.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3337
         ld_ptr (Address (Rmark, 0, ObjectMonitor::owner_offset_in_bytes()-2), Rscratch) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3338
         andcc  (Rscratch, Rscratch, G0) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3339
         brx    (Assembler::notZero, false, Assembler::pn, done) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3340
         delayed()->nop() ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3341
         // m->owner == null : it's unlocked.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3342
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3343
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3344
      // Try to CAS m->owner from null to Self
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3345
      // Invariant: if we acquire the lock then _recursions should be 0.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3346
      add    (Rmark, ObjectMonitor::owner_offset_in_bytes()-2, Rmark) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3347
      mov    (G2_thread, Rscratch) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3348
      casn   (Rmark, G0, Rscratch) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3349
      cmp    (Rscratch, G0) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3350
      // Intentional fall-through into done
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3351
   } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3352
      // Aggressively avoid the Store-before-CAS penalty
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3353
      // Defer the store into box->dhw until after the CAS
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3354
      Label IsInflated, Recursive ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3355
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3356
// Anticipate CAS -- Avoid RTS->RTO upgrade
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3357
// prefetch (mark_addr, Assembler::severalWritesAndPossiblyReads) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3358
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3359
      ld_ptr (mark_addr, Rmark);           // fetch obj->mark
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3360
      // Triage: biased, stack-locked, neutral, inflated
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3361
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1388
diff changeset
  3362
      if (try_bias) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3363
        biased_locking_enter(Roop, Rmark, Rscratch, done, NULL, counters);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3364
        // Invariant: if control reaches this point in the emitted stream
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3365
        // then Rmark has not been modified.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3366
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3367
      andcc  (Rmark, 2, G0) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3368
      brx    (Assembler::notZero, false, Assembler::pn, IsInflated) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3369
      delayed()->                         // Beware - dangling delay-slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3370
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3371
      // Try stack-lock acquisition.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3372
      // Transiently install BUSY (0) encoding in the mark word.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3373
      // if the CAS of 0 into the mark was successful then we execute:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3374
      //   ST box->dhw  = mark   -- save fetched mark in on-stack basiclock box
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3375
      //   ST obj->mark = box    -- overwrite transient 0 value
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3376
      // This presumes TSO, of course.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3377
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3378
      mov    (0, Rscratch) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3379
      or3    (Rmark, markOopDesc::unlocked_value, Rmark);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3380
      assert (mark_addr.disp() == 0, "cas must take a zero displacement");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3381
      casn   (mark_addr.base(), Rmark, Rscratch) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3382
// prefetch (mark_addr, Assembler::severalWritesAndPossiblyReads) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3383
      cmp    (Rscratch, Rmark) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3384
      brx    (Assembler::notZero, false, Assembler::pn, Recursive) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3385
      delayed() ->
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3386
        st_ptr (Rmark, Rbox, BasicLock::displaced_header_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3387
      if (counters != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3388
        cond_inc(Assembler::equal, (address) counters->fast_path_entry_count_addr(), Rmark, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3389
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3390
      br     (Assembler::always, false, Assembler::pt, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3391
      delayed() ->
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3392
        st_ptr (Rbox, mark_addr) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3393
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3394
      bind   (Recursive) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3395
      // Stack-lock attempt failed - check for recursive stack-lock.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3396
      // Tests show that we can remove the recursive case with no impact
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3397
      // on refworkload 0.83.  If we need to reduce the size of the code
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3398
      // emitted by compiler_lock_object() the recursive case is perfect
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3399
      // candidate.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3400
      //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3401
      // A more extreme idea is to always inflate on stack-lock recursion.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3402
      // This lets us eliminate the recursive checks in compiler_lock_object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3403
      // and compiler_unlock_object and the (box->dhw == 0) encoding.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3404
      // A brief experiment - requiring changes to synchronizer.cpp, interpreter,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3405
      // and showed a performance *increase*.  In the same experiment I eliminated
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3406
      // the fast-path stack-lock code from the interpreter and always passed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3407
      // control to the "slow" operators in synchronizer.cpp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3408
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3409
      // RScratch contains the fetched obj->mark value from the failed CASN.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3410
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3411
      sub    (Rscratch, STACK_BIAS, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3412
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3413
      sub(Rscratch, SP, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3414
      assert(os::vm_page_size() > 0xfff, "page size too small - change the constant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3415
      andcc  (Rscratch, 0xfffff003, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3416
      if (counters != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3417
        // Accounting needs the Rscratch register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3418
        st_ptr (Rscratch, Rbox, BasicLock::displaced_header_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3419
        cond_inc(Assembler::equal, (address) counters->fast_path_entry_count_addr(), Rmark, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3420
        br     (Assembler::always, false, Assembler::pt, done) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3421
        delayed()->nop() ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3422
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3423
        br     (Assembler::always, false, Assembler::pt, done) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3424
        delayed()-> st_ptr (Rscratch, Rbox, BasicLock::displaced_header_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3425
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3426
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3427
      bind   (IsInflated) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3428
      if (EmitSync & 64) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3429
         // If m->owner != null goto IsLocked
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3430
         // Test-and-CAS vs CAS
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3431
         // Pessimistic form avoids futile (doomed) CAS attempts
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3432
         // The optimistic form avoids RTS->RTO cache line upgrades.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3433
         ld_ptr (Address (Rmark, 0, ObjectMonitor::owner_offset_in_bytes()-2), Rscratch) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3434
         andcc  (Rscratch, Rscratch, G0) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3435
         brx    (Assembler::notZero, false, Assembler::pn, done) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3436
         delayed()->nop() ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3437
         // m->owner == null : it's unlocked.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3438
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3439
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3440
      // Try to CAS m->owner from null to Self
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3441
      // Invariant: if we acquire the lock then _recursions should be 0.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3442
      add    (Rmark, ObjectMonitor::owner_offset_in_bytes()-2, Rmark) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3443
      mov    (G2_thread, Rscratch) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3444
      casn   (Rmark, G0, Rscratch) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3445
      cmp    (Rscratch, G0) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3446
      // ST box->displaced_header = NonZero.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3447
      // Any non-zero value suffices:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3448
      //    unused_mark(), G2_thread, RBox, RScratch, rsp, etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3449
      st_ptr (Rbox, Rbox, BasicLock::displaced_header_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3450
      // Intentional fall-through into done
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3451
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3452
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3453
   bind   (done) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3454
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3455
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1388
diff changeset
  3456
void MacroAssembler::compiler_unlock_object(Register Roop, Register Rmark,
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1388
diff changeset
  3457
                                            Register Rbox, Register Rscratch,
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1388
diff changeset
  3458
                                            bool try_bias) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3459
   Address mark_addr(Roop, 0, oopDesc::mark_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3460
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3461
   Label done ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3462
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3463
   if (EmitSync & 4) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3464
     cmp  (SP, G0) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3465
     return ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3466
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3467
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3468
   if (EmitSync & 8) {
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1388
diff changeset
  3469
     if (try_bias) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3470
        biased_locking_exit(mark_addr, Rscratch, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3471
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3472
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3473
     // Test first if it is a fast recursive unlock
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3474
     ld_ptr(Rbox, BasicLock::displaced_header_offset_in_bytes(), Rmark);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3475
     cmp(Rmark, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3476
     brx(Assembler::equal, false, Assembler::pt, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3477
     delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3478
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3479
     // Check if it is still a light weight lock, this is is true if we see
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3480
     // the stack address of the basicLock in the markOop of the object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3481
     assert(mark_addr.disp() == 0, "cas must take a zero displacement");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3482
     casx_under_lock(mark_addr.base(), Rbox, Rmark,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3483
       (address)StubRoutines::Sparc::atomic_memory_operation_lock_addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3484
     br (Assembler::always, false, Assembler::pt, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3485
     delayed()->cmp(Rbox, Rmark);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3486
     bind (done) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3487
     return ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3488
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3489
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3490
   // Beware ... If the aggregate size of the code emitted by CLO and CUO is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3491
   // is too large performance rolls abruptly off a cliff.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3492
   // This could be related to inlining policies, code cache management, or
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3493
   // I$ effects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3494
   Label LStacked ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3495
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1388
diff changeset
  3496
   if (try_bias) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3497
      // TODO: eliminate redundant LDs of obj->mark
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3498
      biased_locking_exit(mark_addr, Rscratch, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3499
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3500
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3501
   ld_ptr (Roop, oopDesc::mark_offset_in_bytes(), Rmark) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3502
   ld_ptr (Rbox, BasicLock::displaced_header_offset_in_bytes(), Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3503
   andcc  (Rscratch, Rscratch, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3504
   brx    (Assembler::zero, false, Assembler::pn, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3505
   delayed()-> nop() ;      // consider: relocate fetch of mark, above, into this DS
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3506
   andcc  (Rmark, 2, G0) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3507
   brx    (Assembler::zero, false, Assembler::pt, LStacked) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3508
   delayed()-> nop() ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3509
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3510
   // It's inflated
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3511
   // Conceptually we need a #loadstore|#storestore "release" MEMBAR before
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3512
   // the ST of 0 into _owner which releases the lock.  This prevents loads
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3513
   // and stores within the critical section from reordering (floating)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3514
   // past the store that releases the lock.  But TSO is a strong memory model
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3515
   // and that particular flavor of barrier is a noop, so we can safely elide it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3516
   // Note that we use 1-0 locking by default for the inflated case.  We
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3517
   // close the resultant (and rare) race by having contented threads in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3518
   // monitorenter periodically poll _owner.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3519
   ld_ptr (Address(Rmark, 0, ObjectMonitor::owner_offset_in_bytes()-2), Rscratch) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3520
   ld_ptr (Address(Rmark, 0, ObjectMonitor::recursions_offset_in_bytes()-2), Rbox) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3521
   xor3   (Rscratch, G2_thread, Rscratch) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3522
   orcc   (Rbox, Rscratch, Rbox) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3523
   brx    (Assembler::notZero, false, Assembler::pn, done) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3524
   delayed()->
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3525
   ld_ptr (Address (Rmark, 0, ObjectMonitor::EntryList_offset_in_bytes()-2), Rscratch) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3526
   ld_ptr (Address (Rmark, 0, ObjectMonitor::cxq_offset_in_bytes()-2), Rbox) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3527
   orcc   (Rbox, Rscratch, G0) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3528
   if (EmitSync & 65536) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3529
      Label LSucc ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3530
      brx    (Assembler::notZero, false, Assembler::pn, LSucc) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3531
      delayed()->nop() ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3532
      br     (Assembler::always, false, Assembler::pt, done) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3533
      delayed()->
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3534
      st_ptr (G0, Address (Rmark, 0, ObjectMonitor::owner_offset_in_bytes()-2)) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3535
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3536
      bind   (LSucc) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3537
      st_ptr (G0, Address (Rmark, 0, ObjectMonitor::owner_offset_in_bytes()-2)) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3538
      if (os::is_MP()) { membar (StoreLoad) ; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3539
      ld_ptr (Address (Rmark, 0, ObjectMonitor::succ_offset_in_bytes()-2), Rscratch) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3540
      andcc  (Rscratch, Rscratch, G0) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3541
      brx    (Assembler::notZero, false, Assembler::pt, done) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3542
      delayed()-> andcc (G0, G0, G0) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3543
      add    (Rmark, ObjectMonitor::owner_offset_in_bytes()-2, Rmark) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3544
      mov    (G2_thread, Rscratch) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3545
      casn   (Rmark, G0, Rscratch) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3546
      cmp    (Rscratch, G0) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3547
      // invert icc.zf and goto done
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3548
      brx    (Assembler::notZero, false, Assembler::pt, done) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3549
      delayed() -> cmp (G0, G0) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3550
      br     (Assembler::always, false, Assembler::pt, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3551
      delayed() -> cmp (G0, 1) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3552
   } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3553
      brx    (Assembler::notZero, false, Assembler::pn, done) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3554
      delayed()->nop() ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3555
      br     (Assembler::always, false, Assembler::pt, done) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3556
      delayed()->
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3557
      st_ptr (G0, Address (Rmark, 0, ObjectMonitor::owner_offset_in_bytes()-2)) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3558
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3559
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3560
   bind   (LStacked) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3561
   // Consider: we could replace the expensive CAS in the exit
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3562
   // path with a simple ST of the displaced mark value fetched from
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3563
   // the on-stack basiclock box.  That admits a race where a thread T2
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3564
   // in the slow lock path -- inflating with monitor M -- could race a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3565
   // thread T1 in the fast unlock path, resulting in a missed wakeup for T2.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3566
   // More precisely T1 in the stack-lock unlock path could "stomp" the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3567
   // inflated mark value M installed by T2, resulting in an orphan
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3568
   // object monitor M and T2 becoming stranded.  We can remedy that situation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3569
   // by having T2 periodically poll the object's mark word using timed wait
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3570
   // operations.  If T2 discovers that a stomp has occurred it vacates
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3571
   // the monitor M and wakes any other threads stranded on the now-orphan M.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3572
   // In addition the monitor scavenger, which performs deflation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3573
   // would also need to check for orpan monitors and stranded threads.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3574
   //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3575
   // Finally, inflation is also used when T2 needs to assign a hashCode
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3576
   // to O and O is stack-locked by T1.  The "stomp" race could cause
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3577
   // an assigned hashCode value to be lost.  We can avoid that condition
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3578
   // and provide the necessary hashCode stability invariants by ensuring
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3579
   // that hashCode generation is idempotent between copying GCs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3580
   // For example we could compute the hashCode of an object O as
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3581
   // O's heap address XOR some high quality RNG value that is refreshed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3582
   // at GC-time.  The monitor scavenger would install the hashCode
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3583
   // found in any orphan monitors.  Again, the mechanism admits a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3584
   // lost-update "stomp" WAW race but detects and recovers as needed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3585
   //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3586
   // A prototype implementation showed excellent results, although
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3587
   // the scavenger and timeout code was rather involved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3588
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3589
   casn   (mark_addr.base(), Rbox, Rscratch) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3590
   cmp    (Rbox, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3591
   // Intentional fall through into done ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3592
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3593
   bind   (done) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3594
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3595
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3596
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3597
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3598
void MacroAssembler::print_CPU_state() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3599
  // %%%%% need to implement this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3600
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3601
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3602
void MacroAssembler::verify_FPU(int stack_depth, const char* s) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3603
  // %%%%% need to implement this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3604
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3605
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3606
void MacroAssembler::push_IU_state() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3607
  // %%%%% need to implement this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3608
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3609
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3610
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3611
void MacroAssembler::pop_IU_state() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3612
  // %%%%% need to implement this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3613
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3614
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3615
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3616
void MacroAssembler::push_FPU_state() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3617
  // %%%%% need to implement this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3618
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3619
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3620
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3621
void MacroAssembler::pop_FPU_state() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3622
  // %%%%% need to implement this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3623
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3624
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3625
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3626
void MacroAssembler::push_CPU_state() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3627
  // %%%%% need to implement this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3628
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3629
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3630
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3631
void MacroAssembler::pop_CPU_state() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3632
  // %%%%% need to implement this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3633
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3634
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3635
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3636
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3637
void MacroAssembler::verify_tlab() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3638
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3639
  if (UseTLAB && VerifyOops) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3640
    Label next, next2, ok;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3641
    Register t1 = L0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3642
    Register t2 = L1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3643
    Register t3 = L2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3644
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3645
    save_frame(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3646
    ld_ptr(G2_thread, in_bytes(JavaThread::tlab_top_offset()), t1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3647
    ld_ptr(G2_thread, in_bytes(JavaThread::tlab_start_offset()), t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3648
    or3(t1, t2, t3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3649
    cmp(t1, t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3650
    br(Assembler::greaterEqual, false, Assembler::pn, next);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3651
    delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3652
    stop("assert(top >= start)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3653
    should_not_reach_here();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3654
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3655
    bind(next);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3656
    ld_ptr(G2_thread, in_bytes(JavaThread::tlab_top_offset()), t1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3657
    ld_ptr(G2_thread, in_bytes(JavaThread::tlab_end_offset()), t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3658
    or3(t3, t2, t3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3659
    cmp(t1, t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3660
    br(Assembler::lessEqual, false, Assembler::pn, next2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3661
    delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3662
    stop("assert(top <= end)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3663
    should_not_reach_here();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3664
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3665
    bind(next2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3666
    and3(t3, MinObjAlignmentInBytesMask, t3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3667
    cmp(t3, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3668
    br(Assembler::lessEqual, false, Assembler::pn, ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3669
    delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3670
    stop("assert(aligned)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3671
    should_not_reach_here();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3672
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3673
    bind(ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3674
    restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3675
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3676
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3677
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3678
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3679
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3680
void MacroAssembler::eden_allocate(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3681
  Register obj,                        // result: pointer to object after successful allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3682
  Register var_size_in_bytes,          // object size in bytes if unknown at compile time; invalid otherwise
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3683
  int      con_size_in_bytes,          // object size in bytes if   known at compile time
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3684
  Register t1,                         // temp register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3685
  Register t2,                         // temp register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3686
  Label&   slow_case                   // continuation point if fast allocation fails
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3687
){
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3688
  // make sure arguments make sense
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3689
  assert_different_registers(obj, var_size_in_bytes, t1, t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3690
  assert(0 <= con_size_in_bytes && Assembler::is_simm13(con_size_in_bytes), "illegal object size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3691
  assert((con_size_in_bytes & MinObjAlignmentInBytesMask) == 0, "object size is not multiple of alignment");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3692
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3693
  if (CMSIncrementalMode || !Universe::heap()->supports_inline_contig_alloc()) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3694
    // No allocation in the shared eden.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3695
    br(Assembler::always, false, Assembler::pt, slow_case);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3696
    delayed()->nop();
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3697
  } else {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3698
    // get eden boundaries
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3699
    // note: we need both top & top_addr!
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3700
    const Register top_addr = t1;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3701
    const Register end      = t2;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3702
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3703
    CollectedHeap* ch = Universe::heap();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3704
    set((intx)ch->top_addr(), top_addr);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3705
    intx delta = (intx)ch->end_addr() - (intx)ch->top_addr();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3706
    ld_ptr(top_addr, delta, end);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3707
    ld_ptr(top_addr, 0, obj);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3708
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3709
    // try to allocate
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3710
    Label retry;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3711
    bind(retry);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3712
#ifdef ASSERT
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3713
    // make sure eden top is properly aligned
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3714
    {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3715
      Label L;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3716
      btst(MinObjAlignmentInBytesMask, obj);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3717
      br(Assembler::zero, false, Assembler::pt, L);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3718
      delayed()->nop();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3719
      stop("eden top is not properly aligned");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3720
      bind(L);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3721
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3722
#endif // ASSERT
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3723
    const Register free = end;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3724
    sub(end, obj, free);                                   // compute amount of free space
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3725
    if (var_size_in_bytes->is_valid()) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3726
      // size is unknown at compile time
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3727
      cmp(free, var_size_in_bytes);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3728
      br(Assembler::lessUnsigned, false, Assembler::pn, slow_case); // if there is not enough space go the slow case
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3729
      delayed()->add(obj, var_size_in_bytes, end);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3730
    } else {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3731
      // size is known at compile time
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3732
      cmp(free, con_size_in_bytes);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3733
      br(Assembler::lessUnsigned, false, Assembler::pn, slow_case); // if there is not enough space go the slow case
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3734
      delayed()->add(obj, con_size_in_bytes, end);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3735
    }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3736
    // Compare obj with the value at top_addr; if still equal, swap the value of
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3737
    // end with the value at top_addr. If not equal, read the value at top_addr
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3738
    // into end.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3739
    casx_under_lock(top_addr, obj, end, (address)StubRoutines::Sparc::atomic_memory_operation_lock_addr());
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3740
    // if someone beat us on the allocation, try again, otherwise continue
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3741
    cmp(obj, end);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3742
    brx(Assembler::notEqual, false, Assembler::pn, retry);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3743
    delayed()->mov(end, obj);                              // nop if successfull since obj == end
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3744
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3745
#ifdef ASSERT
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3746
    // make sure eden top is properly aligned
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3747
    {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3748
      Label L;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3749
      const Register top_addr = t1;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3750
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3751
      set((intx)ch->top_addr(), top_addr);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3752
      ld_ptr(top_addr, 0, top_addr);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3753
      btst(MinObjAlignmentInBytesMask, top_addr);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3754
      br(Assembler::zero, false, Assembler::pt, L);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3755
      delayed()->nop();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3756
      stop("eden top is not properly aligned");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3757
      bind(L);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3758
    }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3759
#endif // ASSERT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3760
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3761
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3762
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3763
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3764
void MacroAssembler::tlab_allocate(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3765
  Register obj,                        // result: pointer to object after successful allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3766
  Register var_size_in_bytes,          // object size in bytes if unknown at compile time; invalid otherwise
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3767
  int      con_size_in_bytes,          // object size in bytes if   known at compile time
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3768
  Register t1,                         // temp register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3769
  Label&   slow_case                   // continuation point if fast allocation fails
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3770
){
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3771
  // make sure arguments make sense
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3772
  assert_different_registers(obj, var_size_in_bytes, t1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3773
  assert(0 <= con_size_in_bytes && is_simm13(con_size_in_bytes), "illegal object size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3774
  assert((con_size_in_bytes & MinObjAlignmentInBytesMask) == 0, "object size is not multiple of alignment");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3775
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3776
  const Register free  = t1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3777
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3778
  verify_tlab();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3779
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3780
  ld_ptr(G2_thread, in_bytes(JavaThread::tlab_top_offset()), obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3781
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3782
  // calculate amount of free space
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3783
  ld_ptr(G2_thread, in_bytes(JavaThread::tlab_end_offset()), free);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3784
  sub(free, obj, free);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3785
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3786
  Label done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3787
  if (var_size_in_bytes == noreg) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3788
    cmp(free, con_size_in_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3789
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3790
    cmp(free, var_size_in_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3791
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3792
  br(Assembler::less, false, Assembler::pn, slow_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3793
  // calculate the new top pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3794
  if (var_size_in_bytes == noreg) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3795
    delayed()->add(obj, con_size_in_bytes, free);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3796
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3797
    delayed()->add(obj, var_size_in_bytes, free);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3798
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3799
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3800
  bind(done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3801
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3802
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3803
  // make sure new free pointer is properly aligned
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3804
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3805
    Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3806
    btst(MinObjAlignmentInBytesMask, free);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3807
    br(Assembler::zero, false, Assembler::pt, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3808
    delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3809
    stop("updated TLAB free is not properly aligned");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3810
    bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3811
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3812
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3813
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3814
  // update the tlab top pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3815
  st_ptr(free, G2_thread, in_bytes(JavaThread::tlab_top_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3816
  verify_tlab();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3817
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3818
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3819
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3820
void MacroAssembler::tlab_refill(Label& retry, Label& try_eden, Label& slow_case) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3821
  Register top = O0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3822
  Register t1 = G1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3823
  Register t2 = G3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3824
  Register t3 = O1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3825
  assert_different_registers(top, t1, t2, t3, G4, G5 /* preserve G4 and G5 */);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3826
  Label do_refill, discard_tlab;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3827
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3828
  if (CMSIncrementalMode || !Universe::heap()->supports_inline_contig_alloc()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3829
    // No allocation in the shared eden.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3830
    br(Assembler::always, false, Assembler::pt, slow_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3831
    delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3832
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3833
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3834
  ld_ptr(G2_thread, in_bytes(JavaThread::tlab_top_offset()), top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3835
  ld_ptr(G2_thread, in_bytes(JavaThread::tlab_end_offset()), t1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3836
  ld_ptr(G2_thread, in_bytes(JavaThread::tlab_refill_waste_limit_offset()), t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3837
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3838
  // calculate amount of free space
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3839
  sub(t1, top, t1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3840
  srl_ptr(t1, LogHeapWordSize, t1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3841
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3842
  // Retain tlab and allocate object in shared space if
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3843
  // the amount free in the tlab is too large to discard.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3844
  cmp(t1, t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3845
  brx(Assembler::lessEqual, false, Assembler::pt, discard_tlab);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3846
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3847
  // increment waste limit to prevent getting stuck on this slow path
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3848
  delayed()->add(t2, ThreadLocalAllocBuffer::refill_waste_limit_increment(), t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3849
  st_ptr(t2, G2_thread, in_bytes(JavaThread::tlab_refill_waste_limit_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3850
  if (TLABStats) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3851
    // increment number of slow_allocations
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3852
    ld(G2_thread, in_bytes(JavaThread::tlab_slow_allocations_offset()), t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3853
    add(t2, 1, t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3854
    stw(t2, G2_thread, in_bytes(JavaThread::tlab_slow_allocations_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3855
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3856
  br(Assembler::always, false, Assembler::pt, try_eden);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3857
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3858
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3859
  bind(discard_tlab);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3860
  if (TLABStats) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3861
    // increment number of refills
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3862
    ld(G2_thread, in_bytes(JavaThread::tlab_number_of_refills_offset()), t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3863
    add(t2, 1, t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3864
    stw(t2, G2_thread, in_bytes(JavaThread::tlab_number_of_refills_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3865
    // accumulate wastage
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3866
    ld(G2_thread, in_bytes(JavaThread::tlab_fast_refill_waste_offset()), t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3867
    add(t2, t1, t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3868
    stw(t2, G2_thread, in_bytes(JavaThread::tlab_fast_refill_waste_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3869
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3870
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3871
  // if tlab is currently allocated (top or end != null) then
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3872
  // fill [top, end + alignment_reserve) with array object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3873
  br_null(top, false, Assembler::pn, do_refill);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3874
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3875
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3876
  set((intptr_t)markOopDesc::prototype()->copy_set_hash(0x2), t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3877
  st_ptr(t2, top, oopDesc::mark_offset_in_bytes()); // set up the mark word
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3878
  // set klass to intArrayKlass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3879
  sub(t1, typeArrayOopDesc::header_size(T_INT), t1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3880
  add(t1, ThreadLocalAllocBuffer::alignment_reserve(), t1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3881
  sll_ptr(t1, log2_intptr(HeapWordSize/sizeof(jint)), t1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3882
  st(t1, top, arrayOopDesc::length_offset_in_bytes());
593
803947e176bd 6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents: 590
diff changeset
  3883
  set((intptr_t)Universe::intArrayKlassObj_addr(), t2);
803947e176bd 6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents: 590
diff changeset
  3884
  ld_ptr(t2, 0, t2);
803947e176bd 6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents: 590
diff changeset
  3885
  // store klass last.  concurrent gcs assumes klass length is valid if
803947e176bd 6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents: 590
diff changeset
  3886
  // klass field is not null.
803947e176bd 6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents: 590
diff changeset
  3887
  store_klass(t2, top);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3888
  verify_oop(top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3889
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3890
  // refill the tlab with an eden allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3891
  bind(do_refill);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3892
  ld_ptr(G2_thread, in_bytes(JavaThread::tlab_size_offset()), t1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3893
  sll_ptr(t1, LogHeapWordSize, t1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3894
  // add object_size ??
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3895
  eden_allocate(top, t1, 0, t2, t3, slow_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3896
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3897
  st_ptr(top, G2_thread, in_bytes(JavaThread::tlab_start_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3898
  st_ptr(top, G2_thread, in_bytes(JavaThread::tlab_top_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3899
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3900
  // check that tlab_size (t1) is still valid
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3901
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3902
    Label ok;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3903
    ld_ptr(G2_thread, in_bytes(JavaThread::tlab_size_offset()), t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3904
    sll_ptr(t2, LogHeapWordSize, t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3905
    cmp(t1, t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3906
    br(Assembler::equal, false, Assembler::pt, ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3907
    delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3908
    stop("assert(t1 == tlab_size)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3909
    should_not_reach_here();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3910
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3911
    bind(ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3912
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3913
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3914
  add(top, t1, top); // t1 is tlab_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3915
  sub(top, ThreadLocalAllocBuffer::alignment_reserve_in_bytes(), top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3916
  st_ptr(top, G2_thread, in_bytes(JavaThread::tlab_end_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3917
  verify_tlab();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3918
  br(Assembler::always, false, Assembler::pt, retry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3919
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3920
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3921
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3922
Assembler::Condition MacroAssembler::negate_condition(Assembler::Condition cond) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3923
  switch (cond) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3924
    // Note some conditions are synonyms for others
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3925
    case Assembler::never:                return Assembler::always;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3926
    case Assembler::zero:                 return Assembler::notZero;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3927
    case Assembler::lessEqual:            return Assembler::greater;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3928
    case Assembler::less:                 return Assembler::greaterEqual;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3929
    case Assembler::lessEqualUnsigned:    return Assembler::greaterUnsigned;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3930
    case Assembler::lessUnsigned:         return Assembler::greaterEqualUnsigned;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3931
    case Assembler::negative:             return Assembler::positive;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3932
    case Assembler::overflowSet:          return Assembler::overflowClear;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3933
    case Assembler::always:               return Assembler::never;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3934
    case Assembler::notZero:              return Assembler::zero;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3935
    case Assembler::greater:              return Assembler::lessEqual;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3936
    case Assembler::greaterEqual:         return Assembler::less;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3937
    case Assembler::greaterUnsigned:      return Assembler::lessEqualUnsigned;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3938
    case Assembler::greaterEqualUnsigned: return Assembler::lessUnsigned;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3939
    case Assembler::positive:             return Assembler::negative;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3940
    case Assembler::overflowClear:        return Assembler::overflowSet;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3941
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3942
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3943
  ShouldNotReachHere(); return Assembler::overflowClear;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3944
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3945
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3946
void MacroAssembler::cond_inc(Assembler::Condition cond, address counter_ptr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3947
                              Register Rtmp1, Register Rtmp2 /*, Register Rtmp3, Register Rtmp4 */) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3948
  Condition negated_cond = negate_condition(cond);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3949
  Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3950
  brx(negated_cond, false, Assembler::pt, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3951
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3952
  inc_counter(counter_ptr, Rtmp1, Rtmp2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3953
  bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3954
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3955
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3956
void MacroAssembler::inc_counter(address counter_ptr, Register Rtmp1, Register Rtmp2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3957
  Address counter_addr(Rtmp1, counter_ptr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3958
  load_contents(counter_addr, Rtmp2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3959
  inc(Rtmp2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3960
  store_contents(Rtmp2, counter_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3961
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3962
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3963
SkipIfEqual::SkipIfEqual(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3964
    MacroAssembler* masm, Register temp, const bool* flag_addr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3965
    Assembler::Condition condition) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3966
  _masm = masm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3967
  Address flag(temp, (address)flag_addr, relocInfo::none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3968
  _masm->sethi(flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3969
  _masm->ldub(flag, temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3970
  _masm->tst(temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3971
  _masm->br(condition, false, Assembler::pt, _label);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3972
  _masm->delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3973
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3974
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3975
SkipIfEqual::~SkipIfEqual() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3976
  _masm->bind(_label);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3977
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3978
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3979
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3980
// Writes to stack successive pages until offset reached to check for
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3981
// stack overflow + shadow pages.  This clobbers tsp and scratch.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3982
void MacroAssembler::bang_stack_size(Register Rsize, Register Rtsp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3983
                                     Register Rscratch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3984
  // Use stack pointer in temp stack pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3985
  mov(SP, Rtsp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3986
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3987
  // Bang stack for total size given plus stack shadow page size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3988
  // Bang one page at a time because a large size can overflow yellow and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3989
  // red zones (the bang will fail but stack overflow handling can't tell that
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3990
  // it was a stack overflow bang vs a regular segv).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3991
  int offset = os::vm_page_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3992
  Register Roffset = Rscratch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3993
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3994
  Label loop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3995
  bind(loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3996
  set((-offset)+STACK_BIAS, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3997
  st(G0, Rtsp, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3998
  set(offset, Roffset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3999
  sub(Rsize, Roffset, Rsize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4000
  cmp(Rsize, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4001
  br(Assembler::greater, false, Assembler::pn, loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4002
  delayed()->sub(Rtsp, Roffset, Rtsp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4003
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4004
  // Bang down shadow pages too.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4005
  // The -1 because we already subtracted 1 page.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4006
  for (int i = 0; i< StackShadowPages-1; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4007
    set((-i*offset)+STACK_BIAS, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4008
    st(G0, Rtsp, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4009
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4010
}
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4011
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4012
///////////////////////////////////////////////////////////////////////////////////
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4013
#ifndef SERIALGC
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4014
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4015
static uint num_stores = 0;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4016
static uint num_null_pre_stores = 0;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4017
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4018
static void count_null_pre_vals(void* pre_val) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4019
  num_stores++;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4020
  if (pre_val == NULL) num_null_pre_stores++;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4021
  if ((num_stores % 1000000) == 0) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4022
    tty->print_cr(UINT32_FORMAT " stores, " UINT32_FORMAT " (%5.2f%%) with null pre-vals.",
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4023
                  num_stores, num_null_pre_stores,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4024
                  100.0*(float)num_null_pre_stores/(float)num_stores);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4025
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4026
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4027
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4028
static address satb_log_enqueue_with_frame = 0;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4029
static u_char* satb_log_enqueue_with_frame_end = 0;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4030
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4031
static address satb_log_enqueue_frameless = 0;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4032
static u_char* satb_log_enqueue_frameless_end = 0;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4033
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4034
static int EnqueueCodeSize = 128 DEBUG_ONLY( + 256); // Instructions?
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4035
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4036
// The calls to this don't work.  We'd need to do a fair amount of work to
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4037
// make it work.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4038
static void check_index(int ind) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4039
  assert(0 <= ind && ind <= 64*K && ((ind % oopSize) == 0),
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4040
         "Invariants.")
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4041
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4042
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4043
static void generate_satb_log_enqueue(bool with_frame) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4044
  BufferBlob* bb = BufferBlob::create("enqueue_with_frame", EnqueueCodeSize);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4045
  CodeBuffer buf(bb->instructions_begin(), bb->instructions_size());
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4046
  MacroAssembler masm(&buf);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4047
  address start = masm.pc();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4048
  Register pre_val;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4049
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4050
  Label refill, restart;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4051
  if (with_frame) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4052
    masm.save_frame(0);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4053
    pre_val = I0;  // Was O0 before the save.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4054
  } else {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4055
    pre_val = O0;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4056
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4057
  int satb_q_index_byte_offset =
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4058
    in_bytes(JavaThread::satb_mark_queue_offset() +
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4059
             PtrQueue::byte_offset_of_index());
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4060
  int satb_q_buf_byte_offset =
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4061
    in_bytes(JavaThread::satb_mark_queue_offset() +
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4062
             PtrQueue::byte_offset_of_buf());
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4063
  assert(in_bytes(PtrQueue::byte_width_of_index()) == sizeof(intptr_t) &&
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4064
         in_bytes(PtrQueue::byte_width_of_buf()) == sizeof(intptr_t),
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4065
         "check sizes in assembly below");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4066
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4067
  masm.bind(restart);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4068
  masm.ld_ptr(G2_thread, satb_q_index_byte_offset, L0);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4069
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4070
  masm.br_on_reg_cond(Assembler::rc_z, /*annul*/false, Assembler::pn, L0, refill);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4071
  // If the branch is taken, no harm in executing this in the delay slot.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4072
  masm.delayed()->ld_ptr(G2_thread, satb_q_buf_byte_offset, L1);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4073
  masm.sub(L0, oopSize, L0);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4074
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4075
  masm.st_ptr(pre_val, L1, L0);  // [_buf + index] := I0
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4076
  if (!with_frame) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4077
    // Use return-from-leaf
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4078
    masm.retl();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4079
    masm.delayed()->st_ptr(L0, G2_thread, satb_q_index_byte_offset);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4080
  } else {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4081
    // Not delayed.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4082
    masm.st_ptr(L0, G2_thread, satb_q_index_byte_offset);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4083
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4084
  if (with_frame) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4085
    masm.ret();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4086
    masm.delayed()->restore();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4087
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4088
  masm.bind(refill);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4089
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4090
  address handle_zero =
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4091
    CAST_FROM_FN_PTR(address,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4092
                     &SATBMarkQueueSet::handle_zero_index_for_thread);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4093
  // This should be rare enough that we can afford to save all the
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4094
  // scratch registers that the calling context might be using.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4095
  masm.mov(G1_scratch, L0);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4096
  masm.mov(G3_scratch, L1);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4097
  masm.mov(G4, L2);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4098
  // We need the value of O0 above (for the write into the buffer), so we
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4099
  // save and restore it.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4100
  masm.mov(O0, L3);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4101
  // Since the call will overwrite O7, we save and restore that, as well.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4102
  masm.mov(O7, L4);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4103
  masm.call_VM_leaf(L5, handle_zero, G2_thread);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4104
  masm.mov(L0, G1_scratch);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4105
  masm.mov(L1, G3_scratch);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4106
  masm.mov(L2, G4);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4107
  masm.mov(L3, O0);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4108
  masm.br(Assembler::always, /*annul*/false, Assembler::pt, restart);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4109
  masm.delayed()->mov(L4, O7);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4110
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4111
  if (with_frame) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4112
    satb_log_enqueue_with_frame = start;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4113
    satb_log_enqueue_with_frame_end = masm.pc();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4114
  } else {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4115
    satb_log_enqueue_frameless = start;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4116
    satb_log_enqueue_frameless_end = masm.pc();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4117
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4118
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4119
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4120
static inline void generate_satb_log_enqueue_if_necessary(bool with_frame) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4121
  if (with_frame) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4122
    if (satb_log_enqueue_with_frame == 0) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4123
      generate_satb_log_enqueue(with_frame);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4124
      assert(satb_log_enqueue_with_frame != 0, "postcondition.");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4125
      if (G1SATBPrintStubs) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4126
        tty->print_cr("Generated with-frame satb enqueue:");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4127
        Disassembler::decode((u_char*)satb_log_enqueue_with_frame,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4128
                             satb_log_enqueue_with_frame_end,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4129
                             tty);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4130
      }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4131
    }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4132
  } else {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4133
    if (satb_log_enqueue_frameless == 0) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4134
      generate_satb_log_enqueue(with_frame);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4135
      assert(satb_log_enqueue_frameless != 0, "postcondition.");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4136
      if (G1SATBPrintStubs) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4137
        tty->print_cr("Generated frameless satb enqueue:");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4138
        Disassembler::decode((u_char*)satb_log_enqueue_frameless,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4139
                             satb_log_enqueue_frameless_end,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4140
                             tty);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4141
      }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4142
    }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4143
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4144
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4145
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4146
void MacroAssembler::g1_write_barrier_pre(Register obj, Register index, int offset, Register tmp, bool preserve_o_regs) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4147
  assert(offset == 0 || index == noreg, "choose one");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4148
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4149
  if (G1DisablePreBarrier) return;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4150
  // satb_log_barrier(tmp, obj, offset, preserve_o_regs);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4151
  Label filtered;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4152
  // satb_log_barrier_work0(tmp, filtered);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4153
  if (in_bytes(PtrQueue::byte_width_of_active()) == 4) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4154
    ld(G2,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4155
       in_bytes(JavaThread::satb_mark_queue_offset() +
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4156
                PtrQueue::byte_offset_of_active()),
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4157
       tmp);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4158
  } else {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4159
    guarantee(in_bytes(PtrQueue::byte_width_of_active()) == 1,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4160
              "Assumption");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4161
    ldsb(G2,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4162
         in_bytes(JavaThread::satb_mark_queue_offset() +
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4163
                  PtrQueue::byte_offset_of_active()),
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4164
         tmp);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4165
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4166
  // Check on whether to annul.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4167
  br_on_reg_cond(rc_z, /*annul*/false, Assembler::pt, tmp, filtered);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4168
  delayed() -> nop();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4169
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4170
  // satb_log_barrier_work1(tmp, offset);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4171
  if (index == noreg) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4172
    if (Assembler::is_simm13(offset)) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4173
      ld_ptr(obj, offset, tmp);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4174
    } else {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4175
      set(offset, tmp);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4176
      ld_ptr(obj, tmp, tmp);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4177
    }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4178
  } else {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4179
    ld_ptr(obj, index, tmp);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4180
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4181
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4182
  // satb_log_barrier_work2(obj, tmp, offset);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4183
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4184
  // satb_log_barrier_work3(tmp, filtered, preserve_o_regs);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4185
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4186
  const Register pre_val = tmp;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4187
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4188
  if (G1SATBBarrierPrintNullPreVals) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4189
    save_frame(0);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4190
    mov(pre_val, O0);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4191
    // Save G-regs that target may use.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4192
    mov(G1, L1);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4193
    mov(G2, L2);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4194
    mov(G3, L3);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4195
    mov(G4, L4);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4196
    mov(G5, L5);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4197
    call(CAST_FROM_FN_PTR(address, &count_null_pre_vals));
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4198
    delayed()->nop();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4199
    // Restore G-regs that target may have used.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4200
    mov(L1, G1);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4201
    mov(L2, G2);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4202
    mov(L3, G3);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4203
    mov(L4, G4);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4204
    mov(L5, G5);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4205
    restore(G0, G0, G0);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4206
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4207
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4208
  // Check on whether to annul.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4209
  br_on_reg_cond(rc_z, /*annul*/false, Assembler::pt, pre_val, filtered);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4210
  delayed() -> nop();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4211
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4212
  // OK, it's not filtered, so we'll need to call enqueue.  In the normal
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4213
  // case, pre_val will be a scratch G-reg, but there's some cases in which
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4214
  // it's an O-reg.  In the first case, do a normal call.  In the latter,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4215
  // do a save here and call the frameless version.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4216
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4217
  guarantee(pre_val->is_global() || pre_val->is_out(),
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4218
            "Or we need to think harder.");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4219
  if (pre_val->is_global() && !preserve_o_regs) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4220
    generate_satb_log_enqueue_if_necessary(true); // with frame.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4221
    call(satb_log_enqueue_with_frame);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4222
    delayed()->mov(pre_val, O0);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4223
  } else {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4224
    generate_satb_log_enqueue_if_necessary(false); // with frameless.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4225
    save_frame(0);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4226
    call(satb_log_enqueue_frameless);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4227
    delayed()->mov(pre_val->after_save(), O0);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4228
    restore();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4229
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4230
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4231
  bind(filtered);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4232
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4233
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4234
static jint num_ct_writes = 0;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4235
static jint num_ct_writes_filtered_in_hr = 0;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4236
static jint num_ct_writes_filtered_null = 0;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4237
static jint num_ct_writes_filtered_pop = 0;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4238
static G1CollectedHeap* g1 = NULL;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4239
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4240
static Thread* count_ct_writes(void* filter_val, void* new_val) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4241
  Atomic::inc(&num_ct_writes);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4242
  if (filter_val == NULL) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4243
    Atomic::inc(&num_ct_writes_filtered_in_hr);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4244
  } else if (new_val == NULL) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4245
    Atomic::inc(&num_ct_writes_filtered_null);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4246
  } else {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4247
    if (g1 == NULL) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4248
      g1 = G1CollectedHeap::heap();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4249
    }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4250
    if ((HeapWord*)new_val < g1->popular_object_boundary()) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4251
      Atomic::inc(&num_ct_writes_filtered_pop);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4252
    }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4253
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4254
  if ((num_ct_writes % 1000000) == 0) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4255
    jint num_ct_writes_filtered =
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4256
      num_ct_writes_filtered_in_hr +
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4257
      num_ct_writes_filtered_null +
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4258
      num_ct_writes_filtered_pop;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4259
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4260
    tty->print_cr("%d potential CT writes: %5.2f%% filtered\n"
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4261
                  "   (%5.2f%% intra-HR, %5.2f%% null, %5.2f%% popular).",
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4262
                  num_ct_writes,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4263
                  100.0*(float)num_ct_writes_filtered/(float)num_ct_writes,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4264
                  100.0*(float)num_ct_writes_filtered_in_hr/
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4265
                  (float)num_ct_writes,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4266
                  100.0*(float)num_ct_writes_filtered_null/
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4267
                  (float)num_ct_writes,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4268
                  100.0*(float)num_ct_writes_filtered_pop/
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4269
                  (float)num_ct_writes);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4270
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4271
  return Thread::current();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4272
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4273
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4274
static address dirty_card_log_enqueue = 0;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4275
static u_char* dirty_card_log_enqueue_end = 0;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4276
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4277
// This gets to assume that o0 contains the object address.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4278
static void generate_dirty_card_log_enqueue(jbyte* byte_map_base) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4279
  BufferBlob* bb = BufferBlob::create("dirty_card_enqueue", EnqueueCodeSize*2);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4280
  CodeBuffer buf(bb->instructions_begin(), bb->instructions_size());
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4281
  MacroAssembler masm(&buf);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4282
  address start = masm.pc();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4283
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4284
  Label not_already_dirty, restart, refill;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4285
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4286
#ifdef _LP64
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4287
  masm.srlx(O0, CardTableModRefBS::card_shift, O0);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4288
#else
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4289
  masm.srl(O0, CardTableModRefBS::card_shift, O0);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4290
#endif
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4291
  Address rs(O1, (address)byte_map_base);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4292
  masm.load_address(rs); // O1 := <card table base>
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4293
  masm.ldub(O0, O1, O2); // O2 := [O0 + O1]
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4294
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4295
  masm.br_on_reg_cond(Assembler::rc_nz, /*annul*/false, Assembler::pt,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4296
                      O2, not_already_dirty);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4297
  // Get O1 + O2 into a reg by itself -- useful in the take-the-branch
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4298
  // case, harmless if not.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4299
  masm.delayed()->add(O0, O1, O3);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4300
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4301
  // We didn't take the branch, so we're already dirty: return.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4302
  // Use return-from-leaf
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4303
  masm.retl();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4304
  masm.delayed()->nop();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4305
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4306
  // Not dirty.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4307
  masm.bind(not_already_dirty);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4308
  // First, dirty it.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4309
  masm.stb(G0, O3, G0);  // [cardPtr] := 0  (i.e., dirty).
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4310
  int dirty_card_q_index_byte_offset =
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4311
    in_bytes(JavaThread::dirty_card_queue_offset() +
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4312
             PtrQueue::byte_offset_of_index());
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4313
  int dirty_card_q_buf_byte_offset =
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4314
    in_bytes(JavaThread::dirty_card_queue_offset() +
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4315
             PtrQueue::byte_offset_of_buf());
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4316
  masm.bind(restart);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4317
  masm.ld_ptr(G2_thread, dirty_card_q_index_byte_offset, L0);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4318
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4319
  masm.br_on_reg_cond(Assembler::rc_z, /*annul*/false, Assembler::pn,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4320
                      L0, refill);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4321
  // If the branch is taken, no harm in executing this in the delay slot.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4322
  masm.delayed()->ld_ptr(G2_thread, dirty_card_q_buf_byte_offset, L1);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4323
  masm.sub(L0, oopSize, L0);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4324
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4325
  masm.st_ptr(O3, L1, L0);  // [_buf + index] := I0
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4326
  // Use return-from-leaf
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4327
  masm.retl();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4328
  masm.delayed()->st_ptr(L0, G2_thread, dirty_card_q_index_byte_offset);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4329
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4330
  masm.bind(refill);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4331
  address handle_zero =
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4332
    CAST_FROM_FN_PTR(address,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4333
                     &DirtyCardQueueSet::handle_zero_index_for_thread);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4334
  // This should be rare enough that we can afford to save all the
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4335
  // scratch registers that the calling context might be using.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4336
  masm.mov(G1_scratch, L3);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4337
  masm.mov(G3_scratch, L5);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4338
  // We need the value of O3 above (for the write into the buffer), so we
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4339
  // save and restore it.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4340
  masm.mov(O3, L6);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4341
  // Since the call will overwrite O7, we save and restore that, as well.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4342
  masm.mov(O7, L4);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4343
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4344
  masm.call_VM_leaf(L7_thread_cache, handle_zero, G2_thread);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4345
  masm.mov(L3, G1_scratch);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4346
  masm.mov(L5, G3_scratch);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4347
  masm.mov(L6, O3);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4348
  masm.br(Assembler::always, /*annul*/false, Assembler::pt, restart);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4349
  masm.delayed()->mov(L4, O7);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4350
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4351
  dirty_card_log_enqueue = start;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4352
  dirty_card_log_enqueue_end = masm.pc();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4353
  // XXX Should have a guarantee here about not going off the end!
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4354
  // Does it already do so?  Do an experiment...
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4355
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4356
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4357
static inline void
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4358
generate_dirty_card_log_enqueue_if_necessary(jbyte* byte_map_base) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4359
  if (dirty_card_log_enqueue == 0) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4360
    generate_dirty_card_log_enqueue(byte_map_base);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4361
    assert(dirty_card_log_enqueue != 0, "postcondition.");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4362
    if (G1SATBPrintStubs) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4363
      tty->print_cr("Generated dirty_card enqueue:");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4364
      Disassembler::decode((u_char*)dirty_card_log_enqueue,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4365
                           dirty_card_log_enqueue_end,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4366
                           tty);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4367
    }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4368
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4369
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4370
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4371
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4372
void MacroAssembler::g1_write_barrier_post(Register store_addr, Register new_val, Register tmp) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4373
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4374
  Label filtered;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4375
  MacroAssembler* post_filter_masm = this;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4376
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4377
  if (new_val == G0) return;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4378
  if (G1DisablePostBarrier) return;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4379
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4380
  G1SATBCardTableModRefBS* bs = (G1SATBCardTableModRefBS*) Universe::heap()->barrier_set();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4381
  assert(bs->kind() == BarrierSet::G1SATBCT ||
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4382
         bs->kind() == BarrierSet::G1SATBCTLogging, "wrong barrier");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4383
  if (G1RSBarrierRegionFilter) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4384
    xor3(store_addr, new_val, tmp);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4385
#ifdef _LP64
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4386
    srlx(tmp, HeapRegion::LogOfHRGrainBytes, tmp);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4387
#else
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4388
    srl(tmp, HeapRegion::LogOfHRGrainBytes, tmp);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4389
#endif
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4390
    if (G1PrintCTFilterStats) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4391
      guarantee(tmp->is_global(), "Or stats won't work...");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4392
      // This is a sleazy hack: I'm temporarily hijacking G2, which I
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4393
      // promise to restore.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4394
      mov(new_val, G2);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4395
      save_frame(0);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4396
      mov(tmp, O0);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4397
      mov(G2, O1);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4398
      // Save G-regs that target may use.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4399
      mov(G1, L1);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4400
      mov(G2, L2);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4401
      mov(G3, L3);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4402
      mov(G4, L4);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4403
      mov(G5, L5);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4404
      call(CAST_FROM_FN_PTR(address, &count_ct_writes));
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4405
      delayed()->nop();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4406
      mov(O0, G2);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4407
      // Restore G-regs that target may have used.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4408
      mov(L1, G1);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4409
      mov(L3, G3);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4410
      mov(L4, G4);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4411
      mov(L5, G5);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4412
      restore(G0, G0, G0);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4413
    }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4414
    // XXX Should I predict this taken or not?  Does it mattern?
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4415
    br_on_reg_cond(rc_z, /*annul*/false, Assembler::pt, tmp, filtered);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4416
    delayed()->nop();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4417
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4418
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4419
  // Now we decide how to generate the card table write.  If we're
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4420
  // enqueueing, we call out to a generated function.  Otherwise, we do it
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4421
  // inline here.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4422
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4423
  if (G1RSBarrierUseQueue) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4424
    // If the "store_addr" register is an "in" or "local" register, move it to
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4425
    // a scratch reg so we can pass it as an argument.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4426
    bool use_scr = !(store_addr->is_global() || store_addr->is_out());
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4427
    // Pick a scratch register different from "tmp".
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4428
    Register scr = (tmp == G1_scratch ? G3_scratch : G1_scratch);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4429
    // Make sure we use up the delay slot!
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4430
    if (use_scr) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4431
      post_filter_masm->mov(store_addr, scr);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4432
    } else {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4433
      post_filter_masm->nop();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4434
    }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4435
    generate_dirty_card_log_enqueue_if_necessary(bs->byte_map_base);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4436
    save_frame(0);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4437
    call(dirty_card_log_enqueue);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4438
    if (use_scr) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4439
      delayed()->mov(scr, O0);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4440
    } else {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4441
      delayed()->mov(store_addr->after_save(), O0);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4442
    }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4443
    restore();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4444
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4445
  } else {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4446
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4447
#ifdef _LP64
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4448
    post_filter_masm->srlx(store_addr, CardTableModRefBS::card_shift, store_addr);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4449
#else
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4450
    post_filter_masm->srl(store_addr, CardTableModRefBS::card_shift, store_addr);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4451
#endif
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4452
    assert( tmp != store_addr, "need separate temp reg");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4453
    Address rs(tmp, (address)bs->byte_map_base);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4454
    load_address(rs);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4455
    stb(G0, rs.base(), store_addr);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4456
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4457
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4458
  bind(filtered);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4459
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4460
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4461
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4462
#endif  // SERIALGC
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4463
///////////////////////////////////////////////////////////////////////////////////
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4464
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4465
void MacroAssembler::card_write_barrier_post(Register store_addr, Register new_val, Register tmp) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4466
  // If we're writing constant NULL, we can skip the write barrier.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4467
  if (new_val == G0) return;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4468
  CardTableModRefBS* bs = (CardTableModRefBS*) Universe::heap()->barrier_set();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4469
  assert(bs->kind() == BarrierSet::CardTableModRef ||
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4470
         bs->kind() == BarrierSet::CardTableExtension, "wrong barrier");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4471
  card_table_write(bs->byte_map_base, tmp, store_addr);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4472
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4473
2148
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  4474
// Loading values by size and signed-ness
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  4475
void MacroAssembler::load_sized_value(Register s1, RegisterConstant s2, Register d,
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  4476
                                      int size_in_bytes, bool is_signed) {
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  4477
  switch (size_in_bytes ^ (is_signed ? -1 : 0)) {
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  4478
  case ~8:  // fall through:
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  4479
  case  8:  ld_long( s1, s2, d ); break;
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  4480
  case ~4:  ldsw(    s1, s2, d ); break;
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  4481
  case  4:  lduw(    s1, s2, d ); break;
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  4482
  case ~2:  ldsh(    s1, s2, d ); break;
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  4483
  case  2:  lduh(    s1, s2, d ); break;
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  4484
  case ~1:  ldsb(    s1, s2, d ); break;
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  4485
  case  1:  ldub(    s1, s2, d ); break;
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  4486
  default:  ShouldNotReachHere();
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  4487
  }
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  4488
}
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  4489
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  4490
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  4491
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  4492
void MacroAssembler::load_klass(Register src_oop, Register klass) {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4493
  // The number of bytes in this code is used by
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4494
  // MachCallDynamicJavaNode::ret_addr_offset()
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4495
  // if this changes, change that.
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4496
  if (UseCompressedOops) {
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  4497
    lduw(src_oop, oopDesc::klass_offset_in_bytes(), klass);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  4498
    decode_heap_oop_not_null(klass);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4499
  } else {
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  4500
    ld_ptr(src_oop, oopDesc::klass_offset_in_bytes(), klass);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4501
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4502
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4503
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  4504
void MacroAssembler::store_klass(Register klass, Register dst_oop) {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4505
  if (UseCompressedOops) {
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  4506
    assert(dst_oop != klass, "not enough registers");
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  4507
    encode_heap_oop_not_null(klass);
593
803947e176bd 6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents: 590
diff changeset
  4508
    st(klass, dst_oop, oopDesc::klass_offset_in_bytes());
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4509
  } else {
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  4510
    st_ptr(klass, dst_oop, oopDesc::klass_offset_in_bytes());
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4511
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4512
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4513
593
803947e176bd 6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents: 590
diff changeset
  4514
void MacroAssembler::store_klass_gap(Register s, Register d) {
803947e176bd 6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents: 590
diff changeset
  4515
  if (UseCompressedOops) {
803947e176bd 6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents: 590
diff changeset
  4516
    assert(s != d, "not enough registers");
803947e176bd 6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents: 590
diff changeset
  4517
    st(s, d, oopDesc::klass_gap_offset_in_bytes());
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4518
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4519
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4520
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4521
void MacroAssembler::load_heap_oop(const Address& s, Register d, int offset) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4522
  if (UseCompressedOops) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4523
    lduw(s, d, offset);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4524
    decode_heap_oop(d);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4525
  } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4526
    ld_ptr(s, d, offset);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4527
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4528
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4529
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4530
void MacroAssembler::load_heap_oop(Register s1, Register s2, Register d) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4531
   if (UseCompressedOops) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4532
    lduw(s1, s2, d);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4533
    decode_heap_oop(d, d);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4534
  } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4535
    ld_ptr(s1, s2, d);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4536
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4537
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4538
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4539
void MacroAssembler::load_heap_oop(Register s1, int simm13a, Register d) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4540
   if (UseCompressedOops) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4541
    lduw(s1, simm13a, d);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4542
    decode_heap_oop(d, d);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4543
  } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4544
    ld_ptr(s1, simm13a, d);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4545
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4546
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4547
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4548
void MacroAssembler::store_heap_oop(Register d, Register s1, Register s2) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4549
  if (UseCompressedOops) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4550
    assert(s1 != d && s2 != d, "not enough registers");
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4551
    encode_heap_oop(d);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4552
    st(d, s1, s2);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4553
  } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4554
    st_ptr(d, s1, s2);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4555
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4556
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4557
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4558
void MacroAssembler::store_heap_oop(Register d, Register s1, int simm13a) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4559
  if (UseCompressedOops) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4560
    assert(s1 != d, "not enough registers");
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4561
    encode_heap_oop(d);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4562
    st(d, s1, simm13a);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4563
  } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4564
    st_ptr(d, s1, simm13a);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4565
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4566
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4567
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4568
void MacroAssembler::store_heap_oop(Register d, const Address& a, int offset) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4569
  if (UseCompressedOops) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4570
    assert(a.base() != d, "not enough registers");
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4571
    encode_heap_oop(d);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4572
    st(d, a, offset);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4573
  } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4574
    st_ptr(d, a, offset);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4575
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4576
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4577
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4578
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4579
void MacroAssembler::encode_heap_oop(Register src, Register dst) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4580
  assert (UseCompressedOops, "must be compressed");
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4581
  assert (Universe::heap() != NULL, "java heap should be initialized");
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4582
  assert (LogMinObjAlignmentInBytes == Universe::narrow_oop_shift(), "decode alg wrong");
604
3967d752d79b 6695819: verify_oopx rax: broken oop in decode_heap_oop
coleenp
parents: 371
diff changeset
  4583
  verify_oop(src);
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4584
  if (Universe::narrow_oop_base() == NULL) {
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4585
    srlx(src, LogMinObjAlignmentInBytes, dst);
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4586
    return;
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4587
  }
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4588
  Label done;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4589
  if (src == dst) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4590
    // optimize for frequent case src == dst
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4591
    bpr(rc_nz, true, Assembler::pt, src, done);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4592
    delayed() -> sub(src, G6_heapbase, dst); // annuled if not taken
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4593
    bind(done);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4594
    srlx(src, LogMinObjAlignmentInBytes, dst);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4595
  } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4596
    bpr(rc_z, false, Assembler::pn, src, done);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4597
    delayed() -> mov(G0, dst);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4598
    // could be moved before branch, and annulate delay,
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4599
    // but may add some unneeded work decoding null
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4600
    sub(src, G6_heapbase, dst);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4601
    srlx(dst, LogMinObjAlignmentInBytes, dst);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4602
    bind(done);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4603
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4604
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4605
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4606
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4607
void MacroAssembler::encode_heap_oop_not_null(Register r) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4608
  assert (UseCompressedOops, "must be compressed");
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4609
  assert (Universe::heap() != NULL, "java heap should be initialized");
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4610
  assert (LogMinObjAlignmentInBytes == Universe::narrow_oop_shift(), "decode alg wrong");
604
3967d752d79b 6695819: verify_oopx rax: broken oop in decode_heap_oop
coleenp
parents: 371
diff changeset
  4611
  verify_oop(r);
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4612
  if (Universe::narrow_oop_base() != NULL)
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4613
    sub(r, G6_heapbase, r);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4614
  srlx(r, LogMinObjAlignmentInBytes, r);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4615
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4616
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  4617
void MacroAssembler::encode_heap_oop_not_null(Register src, Register dst) {
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  4618
  assert (UseCompressedOops, "must be compressed");
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4619
  assert (Universe::heap() != NULL, "java heap should be initialized");
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4620
  assert (LogMinObjAlignmentInBytes == Universe::narrow_oop_shift(), "decode alg wrong");
604
3967d752d79b 6695819: verify_oopx rax: broken oop in decode_heap_oop
coleenp
parents: 371
diff changeset
  4621
  verify_oop(src);
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4622
  if (Universe::narrow_oop_base() == NULL) {
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4623
    srlx(src, LogMinObjAlignmentInBytes, dst);
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4624
  } else {
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4625
    sub(src, G6_heapbase, dst);
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4626
    srlx(dst, LogMinObjAlignmentInBytes, dst);
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4627
  }
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  4628
}
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  4629
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4630
// Same algorithm as oops.inline.hpp decode_heap_oop.
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4631
void  MacroAssembler::decode_heap_oop(Register src, Register dst) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4632
  assert (UseCompressedOops, "must be compressed");
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4633
  assert (Universe::heap() != NULL, "java heap should be initialized");
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4634
  assert (LogMinObjAlignmentInBytes == Universe::narrow_oop_shift(), "decode alg wrong");
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4635
  sllx(src, LogMinObjAlignmentInBytes, dst);
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4636
  if (Universe::narrow_oop_base() != NULL) {
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4637
    Label done;
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4638
    bpr(rc_nz, true, Assembler::pt, dst, done);
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4639
    delayed() -> add(dst, G6_heapbase, dst); // annuled if not taken
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4640
    bind(done);
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4641
  }
604
3967d752d79b 6695819: verify_oopx rax: broken oop in decode_heap_oop
coleenp
parents: 371
diff changeset
  4642
  verify_oop(dst);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4643
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4644
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4645
void  MacroAssembler::decode_heap_oop_not_null(Register r) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4646
  // Do not add assert code to this unless you change vtableStubs_sparc.cpp
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4647
  // pd_code_size_limit.
604
3967d752d79b 6695819: verify_oopx rax: broken oop in decode_heap_oop
coleenp
parents: 371
diff changeset
  4648
  // Also do not verify_oop as this is called by verify_oop.
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4649
  assert (UseCompressedOops, "must be compressed");
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4650
  assert (Universe::heap() != NULL, "java heap should be initialized");
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4651
  assert (LogMinObjAlignmentInBytes == Universe::narrow_oop_shift(), "decode alg wrong");
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4652
  sllx(r, LogMinObjAlignmentInBytes, r);
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4653
  if (Universe::narrow_oop_base() != NULL)
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4654
    add(r, G6_heapbase, r);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4655
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4656
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  4657
void  MacroAssembler::decode_heap_oop_not_null(Register src, Register dst) {
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  4658
  // Do not add assert code to this unless you change vtableStubs_sparc.cpp
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  4659
  // pd_code_size_limit.
604
3967d752d79b 6695819: verify_oopx rax: broken oop in decode_heap_oop
coleenp
parents: 371
diff changeset
  4660
  // Also do not verify_oop as this is called by verify_oop.
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  4661
  assert (UseCompressedOops, "must be compressed");
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4662
  assert (Universe::heap() != NULL, "java heap should be initialized");
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4663
  assert (LogMinObjAlignmentInBytes == Universe::narrow_oop_shift(), "decode alg wrong");
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  4664
  sllx(src, LogMinObjAlignmentInBytes, dst);
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4665
  if (Universe::narrow_oop_base() != NULL)
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4666
    add(dst, G6_heapbase, dst);
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  4667
}
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  4668
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4669
void MacroAssembler::reinit_heapbase() {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4670
  if (UseCompressedOops) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4671
    // call indirectly to solve generation ordering problem
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4672
    Address base(G6_heapbase, (address)Universe::narrow_oop_base_addr());
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4673
    load_ptr_contents(base, G6_heapbase);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4674
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4675
}