hotspot/src/cpu/sparc/vm/assembler_sparc.cpp
author twisti
Tue, 24 Jul 2012 10:51:00 -0700
changeset 13391 30245956af37
parent 11430 718fc06da49a
child 13728 882756847a04
permissions -rw-r--r--
7023639: JSR 292 method handle invocation needs a fast path for compiled code 6984705: JSR 292 method handle creation should not go through JNI Summary: remove assembly code for JDK 7 chained method handles Reviewed-by: jrose, twisti, kvn, mhaupt Contributed-by: John Rose <john.r.rose@oracle.com>, Christian Thalinger <christian.thalinger@oracle.com>, Michael Haupt <michael.haupt@oracle.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7433
diff changeset
     2
 * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5426
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5426
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5426
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6772
diff changeset
    25
#include "precompiled.hpp"
7700
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
    26
#include "asm/assembler.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6772
diff changeset
    27
#include "assembler_sparc.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6772
diff changeset
    28
#include "gc_interface/collectedHeap.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6772
diff changeset
    29
#include "interpreter/interpreter.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6772
diff changeset
    30
#include "memory/cardTableModRefBS.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6772
diff changeset
    31
#include "memory/resourceArea.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6772
diff changeset
    32
#include "prims/methodHandles.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6772
diff changeset
    33
#include "runtime/biasedLocking.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6772
diff changeset
    34
#include "runtime/interfaceSupport.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6772
diff changeset
    35
#include "runtime/objectMonitor.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6772
diff changeset
    36
#include "runtime/os.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6772
diff changeset
    37
#include "runtime/sharedRuntime.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6772
diff changeset
    38
#include "runtime/stubRoutines.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6772
diff changeset
    39
#ifndef SERIALGC
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6772
diff changeset
    40
#include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6772
diff changeset
    41
#include "gc_implementation/g1/g1SATBCardTableModRefBS.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6772
diff changeset
    42
#include "gc_implementation/g1/heapRegion.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6772
diff changeset
    43
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
9976
6fef34e63df1 7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents: 9176
diff changeset
    45
#ifdef PRODUCT
6fef34e63df1 7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents: 9176
diff changeset
    46
#define BLOCK_COMMENT(str) /* nothing */
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
    47
#define STOP(error) stop(error)
9976
6fef34e63df1 7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents: 9176
diff changeset
    48
#else
6fef34e63df1 7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents: 9176
diff changeset
    49
#define BLOCK_COMMENT(str) block_comment(str)
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
    50
#define STOP(error) block_comment(error); stop(error)
9976
6fef34e63df1 7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents: 9176
diff changeset
    51
#endif
6fef34e63df1 7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents: 9176
diff changeset
    52
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
    53
// Convert the raw encoding form into the form expected by the
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
    54
// constructor for Address.
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
    55
Address Address::make_raw(int base, int index, int scale, int disp, bool disp_is_oop) {
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
    56
  assert(scale == 0, "not supported");
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
    57
  RelocationHolder rspec;
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
    58
  if (disp_is_oop) {
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
    59
    rspec = Relocation::spec_simple(relocInfo::oop_type);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  }
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
    61
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
    62
  Register rindex = as_Register(index);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
    63
  if (rindex != G0) {
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
    64
    Address madr(as_Register(base), rindex);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
    65
    madr._rspec = rspec;
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
    66
    return madr;
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
    67
  } else {
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
    68
    Address madr(as_Register(base), disp);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
    69
    madr._rspec = rspec;
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
    70
    return madr;
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
    71
  }
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
    72
}
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
    73
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
    74
Address Argument::address_in_frame() const {
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
    75
  // Warning: In LP64 mode disp will occupy more than 10 bits, but
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
    76
  //          op codes such as ld or ldx, only access disp() to get
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
    77
  //          their simm13 argument.
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
    78
  int disp = ((_number - Argument::n_register_parameters + frame::memory_parameter_word_sp_offset) * BytesPerWord) + STACK_BIAS;
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
    79
  if (is_in())
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
    80
    return Address(FP, disp); // In argument.
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
    81
  else
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
    82
    return Address(SP, disp); // Out argument.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
static const char* argumentNames[][2] = {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  {"A0","P0"}, {"A1","P1"}, {"A2","P2"}, {"A3","P3"}, {"A4","P4"},
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  {"A5","P5"}, {"A6","P6"}, {"A7","P7"}, {"A8","P8"}, {"A9","P9"},
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  {"A(n>9)","P(n>9)"}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
const char* Argument::name() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  int nofArgs = sizeof argumentNames / sizeof argumentNames[0];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  int num = number();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  if (num >= nofArgs)  num = nofArgs - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  return argumentNames[num][is_in() ? 1 : 0];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
void Assembler::print_instruction(int inst) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  const char* s;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  switch (inv_op(inst)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  default:         s = "????"; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  case call_op:    s = "call"; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  case branch_op:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    switch (inv_op2(inst)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
      case fb_op2:     s = "fb";   break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
      case fbp_op2:    s = "fbp";  break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
      case br_op2:     s = "br";   break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
      case bp_op2:     s = "bp";   break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
      case cb_op2:     s = "cb";   break;
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
   110
      case bpr_op2: {
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
   111
        if (is_cbcond(inst)) {
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
   112
          s = is_cxb(inst) ? "cxb" : "cwb";
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
   113
        } else {
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
   114
          s = "bpr";
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
   115
        }
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
   116
        break;
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
   117
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
      default:         s = "????"; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  ::tty->print("%s", s);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
// Patch instruction inst at offset inst_pos to refer to dest_pos
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
// and return the resulting instruction.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
// We should have pcs, not offsets, but since all is relative, it will work out
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
// OK.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
int Assembler::patched_branch(int dest_pos, int inst, int inst_pos) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  int m; // mask for displacement field
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  int v; // new value for displacement field
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  const int word_aligned_ones = -4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  switch (inv_op(inst)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  default: ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  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
   137
  case branch_op:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    switch (inv_op2(inst)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
      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
   140
      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
   141
      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
   142
      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
   143
      case cb_op2:     m = wdisp(  word_aligned_ones, 0, 22);  v = wdisp(  dest_pos, inst_pos, 22); break;
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
   144
      case bpr_op2: {
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
   145
        if (is_cbcond(inst)) {
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
   146
          m = wdisp10(word_aligned_ones, 0);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
   147
          v = wdisp10(dest_pos, inst_pos);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
   148
        } else {
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
   149
          m = wdisp16(word_aligned_ones, 0);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
   150
          v = wdisp16(dest_pos, inst_pos);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
   151
        }
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
   152
        break;
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
   153
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
      default: ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  return  inst & ~m  |  v;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
// Return the offset of the branch destionation of instruction inst
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
// at offset pos.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
// Should have pcs, but since all is relative, it works out.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
int Assembler::branch_destination(int inst, int pos) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  int r;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  switch (inv_op(inst)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  default: ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  case call_op:        r = inv_wdisp(inst, pos, 30);  break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  case branch_op:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    switch (inv_op2(inst)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
      case fbp_op2:    r = inv_wdisp(  inst, pos, 19);  break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
      case bp_op2:     r = inv_wdisp(  inst, pos, 19);  break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
      case fb_op2:     r = inv_wdisp(  inst, pos, 22);  break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
      case br_op2:     r = inv_wdisp(  inst, pos, 22);  break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
      case cb_op2:     r = inv_wdisp(  inst, pos, 22);  break;
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
   175
      case bpr_op2: {
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
   176
        if (is_cbcond(inst)) {
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
   177
          r = inv_wdisp10(inst, pos);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
   178
        } else {
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
   179
          r = inv_wdisp16(inst, pos);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
   180
        }
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
   181
        break;
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
   182
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
      default: ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  return r;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
int AbstractAssembler::code_fill_byte() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  return 0x00;                  // illegal instruction 0x00000000
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
   193
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
   194
  switch (in) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
   195
  case rc_z:   return equal;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
   196
  case rc_lez: return lessEqual;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
   197
  case rc_lz:  return less;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
   198
  case rc_nz:  return notEqual;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
   199
  case rc_gz:  return greater;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
   200
  case rc_gez: return greaterEqual;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
   201
  default:
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
   202
    ShouldNotReachHere();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
   203
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
   204
  return equal;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
   205
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
   206
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
// Generate a bunch 'o stuff (including v9's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
void Assembler::test_v9() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  add(    G0, G1, G2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  add(    G3,  0, G4 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  addcc(  G5, G6, G7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  addcc(  I0,  1, I1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  addc(   I2, I3, I4 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  addc(   I5, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  addccc( I7, L0, L1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  addccc( L2, (1 << 12) - 2, L3 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  Label lbl1, lbl2, lbl3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  bind(lbl1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  bpr( rc_z,    true, pn, L4, pc(),  relocInfo::oop_type );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  bpr( rc_lez, false, pt, L5, lbl1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  fb( f_never,     true, pc() + 4,  relocInfo::none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  fb( f_notEqual, false, lbl2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  fbp( f_notZero,        true, fcc0, pn, pc() - 4,  relocInfo::none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  fbp( f_lessOrGreater, false, fcc1, pt, lbl3 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  br( equal,  true, pc() + 1024, relocInfo::none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  br( lessEqual, false, lbl1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  br( never, false, lbl1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  bp( less,               true, icc, pn, pc(), relocInfo::none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  bp( lessEqualUnsigned, false, xcc, pt, lbl2 );
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
  call( pc(), relocInfo::none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  call( lbl3 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  casa(  L6, L7, O0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  casxa( O1, O2, O3, 0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  udiv(   O4, O5, O7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  udiv(   G0, (1 << 12) - 1, G1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  sdiv(   G1, G2, G3 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  sdiv(   G4, -((1 << 12) - 1), G5 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  udivcc( G6, G7, I0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  udivcc( I1, -((1 << 12) - 2), I2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  sdivcc( I3, I4, I5 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  sdivcc( I6, -((1 << 12) - 0), I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  done();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  retry();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  fadd( FloatRegisterImpl::S, F0,  F1, F2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  fsub( FloatRegisterImpl::D, F34, F0, F62 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  fcmp(  FloatRegisterImpl::Q, fcc0, F0, F60);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  fcmpe( FloatRegisterImpl::S, fcc1, F31, F30);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  ftox( FloatRegisterImpl::D, F2, F4 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  ftoi( FloatRegisterImpl::Q, F4, F8 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  ftof( FloatRegisterImpl::S, FloatRegisterImpl::Q, F3, F12 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  fxtof( FloatRegisterImpl::S, F4, F5 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  fitof( FloatRegisterImpl::D, F6, F8 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  fmov( FloatRegisterImpl::Q, F16, F20 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  fneg( FloatRegisterImpl::S, F6, F7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  fabs( FloatRegisterImpl::D, F10, F12 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  fmul( FloatRegisterImpl::Q,  F24, F28, F32 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  fmul( FloatRegisterImpl::S,  FloatRegisterImpl::D,  F8, F9, F14 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  fdiv( FloatRegisterImpl::S,  F10, F11, F12 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  fsqrt( FloatRegisterImpl::S, F13, F14 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  flush( L0, L1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  flush( L2, -1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  flushw();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  illtrap( (1 << 22) - 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  impdep1( 17, (1 << 19) - 1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  impdep2( 3,  0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  jmpl( L3, L4, L5 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  jmpl( L6, -1, L7, Relocation::spec_simple(relocInfo::none));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  ldf(    FloatRegisterImpl::S, O0, O1, F15 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  ldf(    FloatRegisterImpl::D, O2, -1, F14 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  ldfsr(  O3, O4 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  ldfsr(  O5, -1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  ldxfsr( O6, O7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  ldxfsr( I0, -1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  ldfa(  FloatRegisterImpl::D, I1, I2, 1, F16 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  ldfa(  FloatRegisterImpl::Q, I3, -1,    F36 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  ldsb(  I4, I5, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  ldsb(  I7, -1, G0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  ldsh(  G1, G3, G4 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  ldsh(  G5, -1, G6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  ldsw(  G7, L0, L1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  ldsw(  L2, -1, L3 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  ldub(  L4, L5, L6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  ldub(  L7, -1, O0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  lduh(  O1, O2, O3 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  lduh(  O4, -1, O5 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  lduw(  O6, O7, G0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  lduw(  G1, -1, G2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  ldx(   G3, G4, G5 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  ldx(   G6, -1, G7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  ldd(   I0, I1, I2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  ldd(   I3, -1, I4 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  ldsba(  I5, I6, 2, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  ldsba(  L0, -1, L1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  ldsha(  L2, L3, 3, L4 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  ldsha(  L5, -1, L6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  ldswa(  L7, O0, (1 << 8) - 1, O1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  ldswa(  O2, -1, O3 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  lduba(  O4, O5, 0, O6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  lduba(  O7, -1, I0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  lduha(  I1, I2, 1, I3 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  lduha(  I4, -1, I5 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  lduwa(  I6, I7, 2, L0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  lduwa(  L1, -1, L2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  ldxa(   L3, L4, 3, L5 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  ldxa(   L6, -1, L7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  ldda(   G0, G1, 4, G2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  ldda(   G3, -1, G4 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  ldstub(  G5, G6, G7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  ldstub(  O0, -1, O1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  ldstuba( O2, O3, 5, O4 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  ldstuba( O5, -1, O6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  and3(    I0, L0, O0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  and3(    G7, -1, O7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  andcc(   L2, I2, G2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  andcc(   L4, -1, G4 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  andn(    I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  andn(    I6, -1, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  andncc(  I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  andncc(  I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  or3(     I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  or3(     I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  orcc(    I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  orcc(    I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  orn(     I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  orn(     I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  orncc(   I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  orncc(   I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  xor3(    I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  xor3(    I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  xorcc(   I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  xorcc(   I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  xnor(    I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  xnor(    I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  xnorcc(  I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  xnorcc(  I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  membar( Membar_mask_bits(StoreStore | LoadStore | StoreLoad | LoadLoad | Sync | MemIssue | Lookaside ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  membar( StoreStore );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  membar( LoadStore );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  membar( StoreLoad );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  membar( LoadLoad );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  membar( Sync );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  membar( MemIssue );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  membar( Lookaside );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  fmov( FloatRegisterImpl::S, f_ordered,  true, fcc2, F16, F17 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  fmov( FloatRegisterImpl::D, rc_lz, L5, F18, F20 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  movcc( overflowClear,  false, icc, I6, L4 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  movcc( f_unorderedOrEqual, true, fcc2, (1 << 10) - 1, O0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  movr( rc_nz, I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  movr( rc_gz, L1, -1,  L2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  mulx(  I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  mulx(  I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  sdivx( I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  sdivx( I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  udivx( I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  udivx( I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  umul(   I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  umul(   I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  smul(   I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  smul(   I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  umulcc( I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
  umulcc( I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  smulcc( I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  smulcc( I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  mulscc(   I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  mulscc(   I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  popc( G0,  G1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  popc( -1, G2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  prefetch(   L1, L2,    severalReads );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  prefetch(   L3, -1,    oneRead );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  prefetcha(  O3, O2, 6, severalWritesAndPossiblyReads );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  prefetcha(  G2, -1,    oneWrite );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
  rett( I7, I7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  rett( G0, -1, relocInfo::none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  save(    I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  save(    I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  restore( I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  restore( I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  saved();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
  restored();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  sethi( 0xaaaaaaaa, I3, Relocation::spec_simple(relocInfo::none));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  sll(  I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
  sll(  I7, 31, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
  srl(  I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
  srl(  I7,  0, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
  sra(  I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  sra(  I7, 30, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
  sllx( I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  sllx( I7, 63, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
  srlx( I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  srlx( I7,  0, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
  srax( I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
  srax( I7, 62, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
  sir( -1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
  stbar();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
  stf(    FloatRegisterImpl::Q, F40, G0, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
  stf(    FloatRegisterImpl::S, F18, I3, -1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
  stfsr(  L1, L2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
  stfsr(  I7, -1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
  stxfsr( I6, I5 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  stxfsr( L4, -1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  stfa(  FloatRegisterImpl::D, F22, I6, I7, 7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
  stfa(  FloatRegisterImpl::Q, F44, G0, -1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
  stb(  L5, O2, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  stb(  I7, I6, -1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
  sth(  L5, O2, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  sth(  I7, I6, -1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
  stw(  L5, O2, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  stw(  I7, I6, -1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  stx(  L5, O2, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  stx(  I7, I6, -1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  std(  L5, O2, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  std(  I7, I6, -1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  stba(  L5, O2, I7, 8 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
  stba(  I7, I6, -1    );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
  stha(  L5, O2, I7, 9 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  stha(  I7, I6, -1    );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  stwa(  L5, O2, I7, 0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  stwa(  I7, I6, -1    );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  stxa(  L5, O2, I7, 11 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  stxa(  I7, I6, -1     );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  stda(  L5, O2, I7, 12 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  stda(  I7, I6, -1     );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
  sub(    I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  sub(    I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  subcc(  I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
  subcc(  I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  subc(   I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
  subc(   I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  subccc( I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
  subccc( I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  swap( I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  swap( I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  swapa(   G0, G1, 13, G2 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  swapa(   I7, -1,     I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  taddcc(    I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  taddcc(    I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  taddcctv(  I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  taddcctv(  I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  tsubcc(    I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
  tsubcc(    I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  tsubcctv(  I5, I6, I7 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  tsubcctv(  I7, -1, I6 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
  trap( overflowClear, xcc, G0, G1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  trap( lessEqual,     icc, I7, 17 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  bind(lbl2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  bind(lbl3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  code()->decode();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
// Generate a bunch 'o stuff unique to V8
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
void Assembler::test_v8_onlys() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
  Label lbl1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  cb( cp_0or1or2, false, pc() - 4, relocInfo::none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
  cb( cp_never,    true, lbl1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
  cpop1(1, 2, 3, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
  cpop2(5, 6, 7, 8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
  ldc( I0, I1, 31);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
  ldc( I2, -1,  0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
  lddc( I4, I4, 30);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
  lddc( I6,  0, 1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
  ldcsr( L0, L1, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
  ldcsr( L1, (1 << 12) - 1, 17 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
  stc( 31, L4, L5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
  stc( 30, L6, -(1 << 12) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
  stdc( 0, L7, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
  stdc( 1, G1, 0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
  stcsr( 16, G2, G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
  stcsr( 17, G4, 1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  stdcq( 4, G5, G6);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  stdcq( 5, G7, -1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
  bind(lbl1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
  code()->decode();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
// Implementation of MacroAssembler
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
void MacroAssembler::null_check(Register reg, int offset) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
  if (needs_explicit_null_check((intptr_t)offset)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
    // provoke OS NULL exception if reg = NULL by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
    // accessing M[reg] w/o changing any registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
    ld_ptr(reg, 0, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
    // nothing to do, (later) access of M[reg + offset]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
    // will provoke OS NULL exception if reg = NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
// Ring buffer jumps
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
void MacroAssembler::ret(  bool trace )   { if (trace) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
                                                    mov(I7, O7); // traceable register
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
                                                    JMP(O7, 2 * BytesPerInstWord);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
                                                  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
                                                    jmpl( I7, 2 * BytesPerInstWord, G0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
                                                  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
                                                }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
void MacroAssembler::retl( bool trace )  { if (trace) JMP(O7, 2 * BytesPerInstWord);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
                                                 else jmpl( O7, 2 * BytesPerInstWord, G0 ); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
#endif /* PRODUCT */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
void MacroAssembler::jmp2(Register r1, Register r2, const char* file, int line ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  // This can only be traceable if r1 & r2 are visible after a window save
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
  if (TraceJumps) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
    save_frame(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
    verify_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
    ld(G2_thread, in_bytes(JavaThread::jmp_ring_index_offset()), O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
    add(G2_thread, in_bytes(JavaThread::jmp_ring_offset()), O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
    sll(O0, exact_log2(4*sizeof(intptr_t)), O2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
    add(O2, O1, O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
    add(r1->after_save(), r2->after_save(), O2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
    set((intptr_t)file, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
    set(line, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
    Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
    // get nearby pc, store jmp target
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
    call(L, relocInfo::none);  // No relocation for call to pc+0x8
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
    delayed()->st(O2, O1, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
    bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
    // store nearby pc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
    st(O7, O1, sizeof(intptr_t));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
    // store file
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
    st(O3, O1, 2*sizeof(intptr_t));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
    // store line
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
    st(O4, O1, 3*sizeof(intptr_t));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
    add(O0, 1, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
    and3(O0, JavaThread::jump_ring_buffer_size  - 1, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
    st(O0, G2_thread, in_bytes(JavaThread::jmp_ring_index_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
    restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
#endif /* PRODUCT */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
  jmpl(r1, r2, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
void MacroAssembler::jmp(Register r1, int offset, const char* file, int line ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
  // This can only be traceable if r1 is visible after a window save
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
  if (TraceJumps) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
    save_frame(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
    verify_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
    ld(G2_thread, in_bytes(JavaThread::jmp_ring_index_offset()), O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
    add(G2_thread, in_bytes(JavaThread::jmp_ring_offset()), O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
    sll(O0, exact_log2(4*sizeof(intptr_t)), O2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
    add(O2, O1, O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
    add(r1->after_save(), offset, O2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
    set((intptr_t)file, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
    set(line, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
    Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
    // get nearby pc, store jmp target
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
    call(L, relocInfo::none);  // No relocation for call to pc+0x8
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
    delayed()->st(O2, O1, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
    bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
    // store nearby pc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
    st(O7, O1, sizeof(intptr_t));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
    // store file
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
    st(O3, O1, 2*sizeof(intptr_t));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
    // store line
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
    st(O4, O1, 3*sizeof(intptr_t));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
    add(O0, 1, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
    and3(O0, JavaThread::jump_ring_buffer_size  - 1, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
    st(O0, G2_thread, in_bytes(JavaThread::jmp_ring_index_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
    restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
#endif /* PRODUCT */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
  jmp(r1, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
// This code sequence is relocatable to any address, even on LP64.
6175
86dbf3cacacc 6958465: Sparc aten build24.0: openjdk-7.ea-b96 failed Error: Formal argument ... requires an lvalue
coleenp
parents: 5547
diff changeset
   677
void MacroAssembler::jumpl(const AddressLiteral& addrlit, Register temp, Register d, int offset, const char* file, int line) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
  // Force fixed length sethi because NativeJump and NativeFarCall don't handle
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
  // variable length instruction streams.
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
   681
  patchable_sethi(addrlit, temp);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
   682
  Address a(temp, addrlit.low10() + offset);  // Add the offset to the displacement.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
  if (TraceJumps) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
    // Must do the add here so relocation can find the remainder of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
    // value to be relocated.
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
   687
    add(a.base(), a.disp(), a.base(), addrlit.rspec(offset));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
    save_frame(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
    verify_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
    ld(G2_thread, in_bytes(JavaThread::jmp_ring_index_offset()), O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
    add(G2_thread, in_bytes(JavaThread::jmp_ring_offset()), O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
    sll(O0, exact_log2(4*sizeof(intptr_t)), O2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
    add(O2, O1, O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
    set((intptr_t)file, O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
    set(line, O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
    Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
    // get nearby pc, store jmp target
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
    call(L, relocInfo::none);  // No relocation for call to pc+0x8
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
    delayed()->st(a.base()->after_save(), O1, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
    bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
    // store nearby pc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
    st(O7, O1, sizeof(intptr_t));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
    // store file
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
    st(O3, O1, 2*sizeof(intptr_t));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
    // store line
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
    st(O4, O1, 3*sizeof(intptr_t));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
    add(O0, 1, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
    and3(O0, JavaThread::jump_ring_buffer_size  - 1, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
    st(O0, G2_thread, in_bytes(JavaThread::jmp_ring_index_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
    restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
    jmpl(a.base(), G0, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
#else
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
   716
    jmpl(a.base(), a.disp(), d);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
#endif /* PRODUCT */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
  } else {
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
   719
    jmpl(a.base(), a.disp(), d);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
6175
86dbf3cacacc 6958465: Sparc aten build24.0: openjdk-7.ea-b96 failed Error: Formal argument ... requires an lvalue
coleenp
parents: 5547
diff changeset
   723
void MacroAssembler::jump(const AddressLiteral& addrlit, Register temp, int offset, const char* file, int line) {
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
   724
  jumpl(addrlit, temp, G0, offset, file, line);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
// Convert to C varargs format
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
void MacroAssembler::set_varargs( Argument inArg, Register d ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
  // spill register-resident args to their memory slots
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
  // (SPARC calling convention requires callers to have already preallocated these)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
  // Note that the inArg might in fact be an outgoing argument,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
  // if a leaf routine or stub does some tricky argument shuffling.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
  // This routine must work even though one of the saved arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
  // is in the d register (e.g., set_varargs(Argument(0, false), O0)).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
  for (Argument savePtr = inArg;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
       savePtr.is_register();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
       savePtr = savePtr.successor()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
    st_ptr(savePtr.as_register(), savePtr.address_in_frame());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
  // return the address of the first memory slot
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
   742
  Address a = inArg.address_in_frame();
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
   743
  add(a.base(), a.disp(), d);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
// Conditional breakpoint (for assertion checks in assembly code)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
void MacroAssembler::breakpoint_trap(Condition c, CC cc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
  trap(c, cc, G0, ST_RESERVED_FOR_USER_0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
// We want to use ST_BREAKPOINT here, but the debugger is confused by it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
void MacroAssembler::breakpoint_trap() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
  trap(ST_RESERVED_FOR_USER_0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
// flush windows (except current) using flushw instruction if avail.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
void MacroAssembler::flush_windows() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
  if (VM_Version::v9_instructions_work())  flushw();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
  else                                     flush_windows_trap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
// Write serialization page so VM thread can do a pseudo remote membar
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
// We use the current thread pointer to calculate a thread specific
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
// offset to write to within the page. This minimizes bus traffic
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
// due to cache line collision.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
void MacroAssembler::serialize_memory(Register thread, Register tmp1, Register tmp2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
  srl(thread, os::get_serialize_page_shift_count(), tmp2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
  if (Assembler::is_simm13(os::vm_page_size())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
    and3(tmp2, (os::vm_page_size() - sizeof(int)), tmp2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
    set((os::vm_page_size() - sizeof(int)), tmp1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
    and3(tmp2, tmp1, tmp2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
  }
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
   775
  set(os::get_memory_serialize_page(), tmp1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
  st(G0, tmp1, tmp2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
void MacroAssembler::enter() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
  Unimplemented();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
void MacroAssembler::leave() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
  Unimplemented();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
void MacroAssembler::mult(Register s1, Register s2, Register d) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
  if(VM_Version::v9_instructions_work()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
    mulx (s1, s2, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
    smul (s1, s2, d);
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::mult(Register s1, int simm13a, Register d) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
  if(VM_Version::v9_instructions_work()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
    mulx (s1, simm13a, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
    smul (s1, simm13a, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
void MacroAssembler::read_ccr_v8_assert(Register ccr_save) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
  const Register s1 = G3_scratch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
  const Register s2 = G4_scratch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
  Label get_psr_test;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
  // Get the condition codes the V8 way.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
  read_ccr_trap(s1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
  mov(ccr_save, s2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
  // This is a test of V8 which has icc but not xcc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
  // so mask off the xcc bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
  and3(s2, 0xf, s2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
  // Compare condition codes from the V8 and V9 ways.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
  subcc(s2, s1, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
  br(Assembler::notEqual, true, Assembler::pt, get_psr_test);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
  delayed()->breakpoint_trap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
  bind(get_psr_test);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
void MacroAssembler::write_ccr_v8_assert(Register ccr_save) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
  const Register s1 = G3_scratch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
  const Register s2 = G4_scratch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
  Label set_psr_test;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
  // Write out the saved condition codes the V8 way
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
  write_ccr_trap(ccr_save, s1, s2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
  // Read back the condition codes using the V9 instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
  rdccr(s1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
  mov(ccr_save, s2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
  // This is a test of V8 which has icc but not xcc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
  // so mask off the xcc bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
  and3(s2, 0xf, s2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
  and3(s1, 0xf, s1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
  // Compare the V8 way with the V9 way.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
  subcc(s2, s1, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
  br(Assembler::notEqual, true, Assembler::pt, set_psr_test);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
  delayed()->breakpoint_trap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
  bind(set_psr_test);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
#define read_ccr_v8_assert(x)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
#define write_ccr_v8_assert(x)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
void MacroAssembler::read_ccr(Register ccr_save) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
  if (VM_Version::v9_instructions_work()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
    rdccr(ccr_save);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
    // Test code sequence used on V8.  Do not move above rdccr.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
    read_ccr_v8_assert(ccr_save);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
    read_ccr_trap(ccr_save);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
void MacroAssembler::write_ccr(Register ccr_save) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
  if (VM_Version::v9_instructions_work()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
    // Test code sequence used on V8.  Do not move below wrccr.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
    write_ccr_v8_assert(ccr_save);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
    wrccr(ccr_save);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
    const Register temp_reg1 = G3_scratch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
    const Register temp_reg2 = G4_scratch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
    write_ccr_trap(ccr_save, temp_reg1, temp_reg2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
// Calls to C land
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
// a hook for debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
static Thread* reinitialize_thread() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
  return ThreadLocalStorage::thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
#define reinitialize_thread ThreadLocalStorage::thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
address last_get_thread = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
// call this when G2_thread is not known to be valid
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
void MacroAssembler::get_thread() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
  save_frame(0);                // to avoid clobbering O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
  mov(G1, L0);                  // avoid clobbering G1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
  mov(G5_method, L1);           // avoid clobbering G5
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
  mov(G3, L2);                  // avoid clobbering G3 also
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
  mov(G4, L5);                  // avoid clobbering G4
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
#ifdef ASSERT
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
   894
  AddressLiteral last_get_thread_addrlit(&last_get_thread);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
   895
  set(last_get_thread_addrlit, L3);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
  inc(L4, get_pc(L4) + 2 * BytesPerInstWord); // skip getpc() code + inc + st_ptr to point L4 at call
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
   897
  st_ptr(L4, L3, 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
  call(CAST_FROM_FN_PTR(address, reinitialize_thread), relocInfo::runtime_call_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
  mov(L0, G1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
  mov(L1, G5_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
  mov(L2, G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
  mov(L5, G4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
  restore(O0, 0, G2_thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
static Thread* verify_thread_subroutine(Thread* gthread_value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
  Thread* correct_value = ThreadLocalStorage::thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
  guarantee(gthread_value == correct_value, "G2_thread value must be the thread");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
  return correct_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
void MacroAssembler::verify_thread() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
  if (VerifyThread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
    // NOTE: this chops off the heads of the 64-bit O registers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
#ifdef CC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
    save_frame(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
    // make sure G2_thread contains the right value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
    save_frame_and_mov(0, Lmethod, Lmethod);   // to avoid clobbering O0 (and propagate Lmethod for -Xprof)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
    mov(G1, L1);                // avoid clobbering G1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
    // G2 saved below
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
    mov(G3, L3);                // avoid clobbering G3
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
    mov(G4, L4);                // avoid clobbering G4
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
    mov(G5_method, L5);         // avoid clobbering G5_method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
#endif /* CC_INTERP */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
#if defined(COMPILER2) && !defined(_LP64)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
    // Save & restore possible 64-bit Long arguments in G-regs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
    srlx(G1,32,L0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
    srlx(G4,32,L6);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
    call(CAST_FROM_FN_PTR(address,verify_thread_subroutine), relocInfo::runtime_call_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
    delayed()->mov(G2_thread, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
    mov(L1, G1);                // Restore G1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
    // G2 restored below
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
    mov(L3, G3);                // restore G3
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
    mov(L4, G4);                // restore G4
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
    mov(L5, G5_method);         // restore G5_method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
#if defined(COMPILER2) && !defined(_LP64)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
    // Save & restore possible 64-bit Long arguments in G-regs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
    sllx(L0,32,G2);             // Move old high G1 bits high in G2
7427
d7b79a367474 6985015: C1 needs to support compressed oops
iveresov
parents: 7397
diff changeset
   944
    srl(G1, 0,G1);              // Clear current high G1 bits
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
    or3 (G1,G2,G1);             // Recover 64-bit G1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
    sllx(L6,32,G2);             // Move old high G4 bits high in G2
7427
d7b79a367474 6985015: C1 needs to support compressed oops
iveresov
parents: 7397
diff changeset
   947
    srl(G4, 0,G4);              // Clear current high G4 bits
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
    or3 (G4,G2,G4);             // Recover 64-bit G4
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
    restore(O0, 0, G2_thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
void MacroAssembler::save_thread(const Register thread_cache) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
  verify_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
  if (thread_cache->is_valid()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
    assert(thread_cache->is_local() || thread_cache->is_in(), "bad volatile");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
    mov(G2_thread, thread_cache);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
  if (VerifyThread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
    // smash G2_thread, as if the VM were about to anyway
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
    set(0x67676767, G2_thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
void MacroAssembler::restore_thread(const Register thread_cache) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
  if (thread_cache->is_valid()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
    assert(thread_cache->is_local() || thread_cache->is_in(), "bad volatile");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
    mov(thread_cache, G2_thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
    verify_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
    // do it the slow way
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
    get_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
// %%% maybe get rid of [re]set_last_Java_frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
void MacroAssembler::set_last_Java_frame(Register last_java_sp, Register last_Java_pc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
  assert_not_delayed();
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
   983
  Address flags(G2_thread, JavaThread::frame_anchor_offset() +
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
   984
                           JavaFrameAnchor::flags_offset());
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
   985
  Address pc_addr(G2_thread, JavaThread::last_Java_pc_offset());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
  // Always set last_Java_pc and flags first because once last_Java_sp is visible
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
  // has_last_Java_frame is true and users will look at the rest of the fields.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
  // (Note: flags should always be zero before we get here so doesn't need to be set.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
  // Verify that flags was zeroed on return to Java
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
  Label PcOk;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
  save_frame(0);                // to avoid clobbering O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
  ld_ptr(pc_addr, L0);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
   996
  br_null_short(L0, Assembler::pt, PcOk);
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
   997
  STOP("last_Java_pc not zeroed before leaving Java");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
  bind(PcOk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
  // Verify that flags was zeroed on return to Java
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
  Label FlagsOk;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
  ld(flags, L0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
  tst(L0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
  br(Assembler::zero, false, Assembler::pt, FlagsOk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
  delayed() -> restore();
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  1006
  STOP("flags not zeroed before leaving Java");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
  bind(FlagsOk);
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
  // When returning from calling out from Java mode the frame anchor's last_Java_pc
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
  // 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
  1012
  // native (not VM) that we capture the known pc and don't have to rely on the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
  // native call having a standard frame linkage where we can find the pc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
  if (last_Java_pc->is_valid()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
    st_ptr(last_Java_pc, pc_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
  // Make sure that we have an odd stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
  Label StackOk;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
  andcc(last_java_sp, 0x01, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
  br(Assembler::notZero, false, Assembler::pt, StackOk);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  1025
  delayed()->nop();
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  1026
  STOP("Stack Not Biased in set_last_Java_frame");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
  bind(StackOk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
  assert( last_java_sp != G4_scratch, "bad register usage in set_last_Java_frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
  add( last_java_sp, STACK_BIAS, G4_scratch );
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1031
  st_ptr(G4_scratch, G2_thread, JavaThread::last_Java_sp_offset());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
#else
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1033
  st_ptr(last_java_sp, G2_thread, JavaThread::last_Java_sp_offset());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
#endif // _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
void MacroAssembler::reset_last_Java_frame(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1040
  Address sp_addr(G2_thread, JavaThread::last_Java_sp_offset());
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1041
  Address pc_addr(G2_thread, JavaThread::frame_anchor_offset() + JavaFrameAnchor::last_Java_pc_offset());
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1042
  Address flags  (G2_thread, JavaThread::frame_anchor_offset() + JavaFrameAnchor::flags_offset());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
  // check that it WAS previously set
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
#ifdef CC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
    save_frame(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
    save_frame_and_mov(0, Lmethod, Lmethod);     // Propagate Lmethod to helper frame for -Xprof
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
#endif /* CC_INTERP */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
    ld_ptr(sp_addr, L0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
    tst(L0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
    breakpoint_trap(Assembler::zero, Assembler::ptr_cc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
    restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
  st_ptr(G0, sp_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
  // Always return last_Java_pc to zero
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
  st_ptr(G0, pc_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
  // Always null flags after return to Java
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
  st(G0, flags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
void MacroAssembler::call_VM_base(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
  Register        oop_result,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
  Register        thread_cache,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
  Register        last_java_sp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
  address         entry_point,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
  int             number_of_arguments,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
  bool            check_exceptions)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
  // determine last_java_sp register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
  if (!last_java_sp->is_valid()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
    last_java_sp = SP;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
  // debugging support
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
  assert(number_of_arguments >= 0   , "cannot have negative number of arguments");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
  // 64-bit last_java_sp is biased!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
  set_last_Java_frame(last_java_sp, noreg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
  if (VerifyThread)  mov(G2_thread, O0); // about to be smashed; pass early
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
  save_thread(thread_cache);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
  // do the call
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
  call(entry_point, relocInfo::runtime_call_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
  if (!VerifyThread)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
    delayed()->mov(G2_thread, O0);  // pass thread as first argument
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
  else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
    delayed()->nop();             // (thread already passed)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
  restore_thread(thread_cache);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
  reset_last_Java_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
  // check for pending exceptions. use Gtemp as scratch register.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
  if (check_exceptions) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
    check_and_forward_exception(Gtemp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
9976
6fef34e63df1 7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents: 9176
diff changeset
  1100
#ifdef ASSERT
6fef34e63df1 7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents: 9176
diff changeset
  1101
  set(badHeapWordVal, G3);
6fef34e63df1 7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents: 9176
diff changeset
  1102
  set(badHeapWordVal, G4);
6fef34e63df1 7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents: 9176
diff changeset
  1103
  set(badHeapWordVal, G5);
6fef34e63df1 7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents: 9176
diff changeset
  1104
#endif
6fef34e63df1 7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents: 9176
diff changeset
  1105
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
  // get oop result if there is one and reset the value in the thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
  if (oop_result->is_valid()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
    get_vm_result(oop_result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1110
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1111
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
void MacroAssembler::check_and_forward_exception(Register scratch_reg)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1114
  Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1115
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1116
  check_and_handle_popframe(scratch_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1117
  check_and_handle_earlyret(scratch_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1119
  Address exception_addr(G2_thread, Thread::pending_exception_offset());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
  ld_ptr(exception_addr, scratch_reg);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  1121
  br_null_short(scratch_reg, pt, L);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
  // we use O7 linkage so that forward_exception_entry has the issuing PC
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
  call(StubRoutines::forward_exception_entry(), relocInfo::runtime_call_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1124
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
  bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1127
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1128
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1129
void MacroAssembler::check_and_handle_popframe(Register scratch_reg) {
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::check_and_handle_earlyret(Register scratch_reg) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1134
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1135
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1136
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
void MacroAssembler::call_VM(Register oop_result, address entry_point, int number_of_arguments, bool check_exceptions) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
  call_VM_base(oop_result, noreg, noreg, entry_point, number_of_arguments, check_exceptions);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1139
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1142
void MacroAssembler::call_VM(Register oop_result, address entry_point, Register arg_1, bool check_exceptions) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
  // O0 is reserved for the thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
  mov(arg_1, O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
  call_VM(oop_result, entry_point, 1, check_exceptions);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1148
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1149
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
  1150
  // O0 is reserved for the thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
  mov(arg_1, O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
  mov(arg_2, O2); assert(arg_2 != O1, "smashed argument");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1153
  call_VM(oop_result, entry_point, 2, check_exceptions);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1154
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1155
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1156
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1157
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
  1158
  // O0 is reserved for the thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1159
  mov(arg_1, O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1160
  mov(arg_2, O2); assert(arg_2 != O1,                "smashed argument");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1161
  mov(arg_3, O3); assert(arg_3 != O1 && arg_3 != O2, "smashed argument");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
  call_VM(oop_result, entry_point, 3, check_exceptions);
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
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1167
// Note: The following call_VM overloadings are useful when a "save"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1168
// has already been performed by a stub, and the last Java frame is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1169
// the previous one.  In that case, last_java_sp must be passed as FP
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1170
// instead of SP.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1171
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1172
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
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
  1174
  call_VM_base(oop_result, noreg, last_java_sp, entry_point, number_of_arguments, check_exceptions);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1175
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1177
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1178
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
  1179
  // O0 is reserved for the thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
  mov(arg_1, O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1181
  call_VM(oop_result, last_java_sp, entry_point, 1, check_exceptions);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1182
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1183
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1185
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
  1186
  // O0 is reserved for the thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1187
  mov(arg_1, O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1188
  mov(arg_2, O2); assert(arg_2 != O1, "smashed argument");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
  call_VM(oop_result, last_java_sp, entry_point, 2, check_exceptions);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1191
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1192
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
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
  1194
  // O0 is reserved for the thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1195
  mov(arg_1, O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1196
  mov(arg_2, O2); assert(arg_2 != O1,                "smashed argument");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1197
  mov(arg_3, O3); assert(arg_3 != O1 && arg_3 != O2, "smashed argument");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1198
  call_VM(oop_result, last_java_sp, entry_point, 3, check_exceptions);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1199
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1200
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1201
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1202
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1203
void MacroAssembler::call_VM_leaf_base(Register thread_cache, address entry_point, int number_of_arguments) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1204
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1205
  save_thread(thread_cache);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1206
  // do the call
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1207
  call(entry_point, relocInfo::runtime_call_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1208
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1209
  restore_thread(thread_cache);
9976
6fef34e63df1 7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents: 9176
diff changeset
  1210
#ifdef ASSERT
6fef34e63df1 7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents: 9176
diff changeset
  1211
  set(badHeapWordVal, G3);
6fef34e63df1 7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents: 9176
diff changeset
  1212
  set(badHeapWordVal, G4);
6fef34e63df1 7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents: 9176
diff changeset
  1213
  set(badHeapWordVal, G5);
6fef34e63df1 7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents: 9176
diff changeset
  1214
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1215
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1216
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1217
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1218
void MacroAssembler::call_VM_leaf(Register thread_cache, address entry_point, int number_of_arguments) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1219
  call_VM_leaf_base(thread_cache, entry_point, number_of_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1220
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1221
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1222
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1223
void MacroAssembler::call_VM_leaf(Register thread_cache, address entry_point, Register arg_1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1224
  mov(arg_1, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1225
  call_VM_leaf(thread_cache, entry_point, 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1226
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1229
void MacroAssembler::call_VM_leaf(Register thread_cache, address entry_point, Register arg_1, Register arg_2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1230
  mov(arg_1, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1231
  mov(arg_2, O1); assert(arg_2 != O0, "smashed argument");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1232
  call_VM_leaf(thread_cache, entry_point, 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1233
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1234
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1235
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1236
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
  1237
  mov(arg_1, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1238
  mov(arg_2, O1); assert(arg_2 != O0,                "smashed argument");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1239
  mov(arg_3, O2); assert(arg_3 != O0 && arg_3 != O1, "smashed argument");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1240
  call_VM_leaf(thread_cache, entry_point, 3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1241
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1242
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1243
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1244
void MacroAssembler::get_vm_result(Register oop_result) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1245
  verify_thread();
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1246
  Address vm_result_addr(G2_thread, JavaThread::vm_result_offset());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1247
  ld_ptr(    vm_result_addr, oop_result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1248
  st_ptr(G0, vm_result_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1249
  verify_oop(oop_result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1250
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1251
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1252
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1253
void MacroAssembler::get_vm_result_2(Register oop_result) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1254
  verify_thread();
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1255
  Address vm_result_addr_2(G2_thread, JavaThread::vm_result_2_offset());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1256
  ld_ptr(vm_result_addr_2, oop_result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1257
  st_ptr(G0, vm_result_addr_2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1258
  verify_oop(oop_result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1259
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1260
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1261
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1262
// We require that C code which does not return a value in vm_result will
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1263
// leave it undisturbed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1264
void MacroAssembler::set_vm_result(Register oop_result) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1265
  verify_thread();
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1266
  Address vm_result_addr(G2_thread, JavaThread::vm_result_offset());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1267
  verify_oop(oop_result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1268
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1269
# ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1270
    // Check that we are not overwriting any other oop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1271
#ifdef CC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1272
    save_frame(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1273
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1274
    save_frame_and_mov(0, Lmethod, Lmethod);     // Propagate Lmethod for -Xprof
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1275
#endif /* CC_INTERP */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1276
    ld_ptr(vm_result_addr, L0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1277
    tst(L0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1278
    restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1279
    breakpoint_trap(notZero, Assembler::ptr_cc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1280
    // }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1281
# endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1282
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1283
  st_ptr(oop_result, vm_result_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1284
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1285
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1286
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1287
void MacroAssembler::card_table_write(jbyte* byte_map_base,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1288
                                      Register tmp, Register obj) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1289
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1290
  srlx(obj, CardTableModRefBS::card_shift, obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1291
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1292
  srl(obj, CardTableModRefBS::card_shift, obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1293
#endif
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1294
  assert(tmp != obj, "need separate temp reg");
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1295
  set((address) byte_map_base, tmp);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1296
  stb(G0, tmp, obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1297
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1298
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1299
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1300
void MacroAssembler::internal_sethi(const AddressLiteral& addrlit, Register d, bool ForceRelocatable) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1301
  address save_pc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1302
  int shiftcnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1303
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1304
# ifdef CHECK_DELAY
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1305
  assert_not_delayed((char*) "cannot put two instructions in delay slot");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1306
# endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1307
  v9_dep();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1308
  save_pc = pc();
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1309
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1310
  int msb32 = (int) (addrlit.value() >> 32);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1311
  int lsb32 = (int) (addrlit.value());
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1312
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1313
  if (msb32 == 0 && lsb32 >= 0) {
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1314
    Assembler::sethi(lsb32, d, addrlit.rspec());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1315
  }
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1316
  else if (msb32 == -1) {
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1317
    Assembler::sethi(~lsb32, d, addrlit.rspec());
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1318
    xor3(d, ~low10(~0), d);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1319
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1320
  else {
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1321
    Assembler::sethi(msb32, d, addrlit.rspec());  // msb 22-bits
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1322
    if (msb32 & 0x3ff)                            // Any bits?
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1323
      or3(d, msb32 & 0x3ff, d);                   // msb 32-bits are now in lsb 32
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1324
    if (lsb32 & 0xFFFFFC00) {                     // done?
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1325
      if ((lsb32 >> 20) & 0xfff) {                // Any bits set?
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1326
        sllx(d, 12, d);                           // Make room for next 12 bits
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1327
        or3(d, (lsb32 >> 20) & 0xfff, d);         // Or in next 12
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1328
        shiftcnt = 0;                             // We already shifted
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1329
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1330
      else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1331
        shiftcnt = 12;
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1332
      if ((lsb32 >> 10) & 0x3ff) {
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1333
        sllx(d, shiftcnt + 10, d);                // Make room for last 10 bits
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1334
        or3(d, (lsb32 >> 10) & 0x3ff, d);         // Or in next 10
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1335
        shiftcnt = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1336
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1337
      else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1338
        shiftcnt = 10;
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1339
      sllx(d, shiftcnt + 10, d);                  // Shift leaving disp field 0'd
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1340
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1341
    else
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1342
      sllx(d, 32, d);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1343
  }
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1344
  // Pad out the instruction sequence so it can be patched later.
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1345
  if (ForceRelocatable || (addrlit.rtype() != relocInfo::none &&
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1346
                           addrlit.rtype() != relocInfo::runtime_call_type)) {
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1347
    while (pc() < (save_pc + (7 * BytesPerInstWord)))
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1348
      nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1349
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1350
#else
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1351
  Assembler::sethi(addrlit.value(), d, addrlit.rspec());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1352
#endif
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1353
}
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1354
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1355
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1356
void MacroAssembler::sethi(const AddressLiteral& addrlit, Register d) {
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1357
  internal_sethi(addrlit, d, false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1358
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1359
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1360
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1361
void MacroAssembler::patchable_sethi(const AddressLiteral& addrlit, Register d) {
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1362
  internal_sethi(addrlit, d, true);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1363
}
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1364
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1365
7700
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1366
int MacroAssembler::insts_for_sethi(address a, bool worst_case) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1367
#ifdef _LP64
7700
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1368
  if (worst_case)  return 7;
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1369
  intptr_t iaddr = (intptr_t) a;
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1370
  int msb32 = (int) (iaddr >> 32);
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1371
  int lsb32 = (int) (iaddr);
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1372
  int count;
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1373
  if (msb32 == 0 && lsb32 >= 0)
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1374
    count = 1;
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1375
  else if (msb32 == -1)
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1376
    count = 2;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1377
  else {
7700
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1378
    count = 2;
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1379
    if (msb32 & 0x3ff)
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1380
      count++;
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1381
    if (lsb32 & 0xFFFFFC00 ) {
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1382
      if ((lsb32 >> 20) & 0xfff)  count += 2;
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1383
      if ((lsb32 >> 10) & 0x3ff)  count += 2;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1384
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1385
  }
7700
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1386
  return count;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1387
#else
7700
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1388
  return 1;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1389
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1390
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1391
7700
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1392
int MacroAssembler::worst_case_insts_for_set() {
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1393
  return insts_for_sethi(NULL, true) + 1;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1394
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1395
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1396
7700
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1397
// Keep in sync with MacroAssembler::insts_for_internal_set
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1398
void MacroAssembler::internal_set(const AddressLiteral& addrlit, Register d, bool ForceRelocatable) {
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1399
  intptr_t value = addrlit.value();
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1400
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1401
  if (!ForceRelocatable && addrlit.rspec().type() == relocInfo::none) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1402
    // can optimize
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1403
    if (-4096 <= value && value <= 4095) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1404
      or3(G0, value, d); // setsw (this leaves upper 32 bits sign-extended)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1405
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1406
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1407
    if (inv_hi22(hi22(value)) == value) {
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1408
      sethi(addrlit, d);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1409
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1410
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1411
  }
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1412
  assert_not_delayed((char*) "cannot put two instructions in delay slot");
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1413
  internal_sethi(addrlit, d, ForceRelocatable);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1414
  if (ForceRelocatable || addrlit.rspec().type() != relocInfo::none || addrlit.low10() != 0) {
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1415
    add(d, addrlit.low10(), d, addrlit.rspec());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1416
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1417
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1418
7700
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1419
// Keep in sync with MacroAssembler::internal_set
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1420
int MacroAssembler::insts_for_internal_set(intptr_t value) {
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1421
  // can optimize
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1422
  if (-4096 <= value && value <= 4095) {
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1423
    return 1;
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1424
  }
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1425
  if (inv_hi22(hi22(value)) == value) {
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1426
    return insts_for_sethi((address) value);
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1427
  }
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1428
  int count = insts_for_sethi((address) value);
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1429
  AddressLiteral al(value);
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1430
  if (al.low10() != 0) {
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1431
    count++;
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1432
  }
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1433
  return count;
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1434
}
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1435
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1436
void MacroAssembler::set(const AddressLiteral& al, Register d) {
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1437
  internal_set(al, d, false);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1438
}
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1439
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1440
void MacroAssembler::set(intptr_t value, Register d) {
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1441
  AddressLiteral al(value);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1442
  internal_set(al, d, false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1443
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1444
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1445
void MacroAssembler::set(address addr, Register d, RelocationHolder const& rspec) {
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1446
  AddressLiteral al(addr, rspec);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1447
  internal_set(al, d, false);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1448
}
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1449
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1450
void MacroAssembler::patchable_set(const AddressLiteral& al, Register d) {
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1451
  internal_set(al, d, true);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1452
}
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1453
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1454
void MacroAssembler::patchable_set(intptr_t value, Register d) {
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1455
  AddressLiteral al(value);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1456
  internal_set(al, d, true);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1457
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1458
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1459
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1460
void MacroAssembler::set64(jlong value, Register d, Register tmp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1461
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1462
  v9_dep();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1463
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1464
  int hi = (int)(value >> 32);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1465
  int lo = (int)(value & ~0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1466
  // (Matcher::isSimpleConstant64 knows about the following optimizations.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1467
  if (Assembler::is_simm13(lo) && value == lo) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1468
    or3(G0, lo, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1469
  } else if (hi == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1470
    Assembler::sethi(lo, d);   // hardware version zero-extends to upper 32
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1471
    if (low10(lo) != 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1472
      or3(d, low10(lo), d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1473
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1474
  else if (hi == -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1475
    Assembler::sethi(~lo, d);  // hardware version zero-extends to upper 32
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1476
    xor3(d, low10(lo) ^ ~low10(~0), d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1477
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1478
  else if (lo == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1479
    if (Assembler::is_simm13(hi)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1480
      or3(G0, hi, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1481
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1482
      Assembler::sethi(hi, d);   // hardware version zero-extends to upper 32
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1483
      if (low10(hi) != 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1484
        or3(d, low10(hi), d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1485
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1486
    sllx(d, 32, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1487
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1488
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1489
    Assembler::sethi(hi, tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1490
    Assembler::sethi(lo,   d); // macro assembler version sign-extends
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1491
    if (low10(hi) != 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1492
      or3 (tmp, low10(hi), tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1493
    if (low10(lo) != 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1494
      or3 (  d, low10(lo),   d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1495
    sllx(tmp, 32, tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1496
    or3 (d, tmp, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1497
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1498
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1499
7700
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1500
int MacroAssembler::insts_for_set64(jlong value) {
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1501
  v9_dep();
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1502
7700
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1503
  int hi = (int) (value >> 32);
3252c02e23b8 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 7433
diff changeset
  1504
  int lo = (int) (value & ~0);
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1505
  int count = 0;
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1506
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1507
  // (Matcher::isSimpleConstant64 knows about the following optimizations.)
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1508
  if (Assembler::is_simm13(lo) && value == lo) {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1509
    count++;
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1510
  } else if (hi == 0) {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1511
    count++;
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1512
    if (low10(lo) != 0)
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1513
      count++;
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1514
  }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1515
  else if (hi == -1) {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1516
    count += 2;
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1517
  }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1518
  else if (lo == 0) {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1519
    if (Assembler::is_simm13(hi)) {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1520
      count++;
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1521
    } else {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1522
      count++;
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1523
      if (low10(hi) != 0)
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1524
        count++;
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1525
    }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1526
    count++;
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1527
  }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1528
  else {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1529
    count += 2;
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1530
    if (low10(hi) != 0)
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1531
      count++;
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1532
    if (low10(lo) != 0)
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1533
      count++;
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1534
    count += 2;
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1535
  }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1536
  return count;
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1537
}
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7427
diff changeset
  1538
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1539
// compute size in bytes of sparc frame, given
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1540
// number of extraWords
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1541
int MacroAssembler::total_frame_size_in_bytes(int extraWords) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1542
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1543
  int nWords = frame::memory_parameter_word_sp_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1544
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1545
  nWords += extraWords;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1546
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1547
  if (nWords & 1) ++nWords; // round up to double-word
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1548
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1549
  return nWords * BytesPerWord;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1550
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1551
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1552
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1553
// save_frame: given number of "extra" words in frame,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1554
// issue approp. save instruction (p 200, v8 manual)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1555
9976
6fef34e63df1 7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents: 9176
diff changeset
  1556
void MacroAssembler::save_frame(int extraWords) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1557
  int delta = -total_frame_size_in_bytes(extraWords);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1558
  if (is_simm13(delta)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1559
    save(SP, delta, SP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1560
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1561
    set(delta, G3_scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1562
    save(SP, G3_scratch, SP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1563
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1564
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1565
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1566
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1567
void MacroAssembler::save_frame_c1(int size_in_bytes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1568
  if (is_simm13(-size_in_bytes)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1569
    save(SP, -size_in_bytes, SP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1570
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1571
    set(-size_in_bytes, G3_scratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1572
    save(SP, G3_scratch, SP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1573
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1574
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1575
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1576
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1577
void MacroAssembler::save_frame_and_mov(int extraWords,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1578
                                        Register s1, Register d1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1579
                                        Register s2, Register d2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1580
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1581
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1582
  // The trick here is to use precisely the same memory word
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1583
  // that trap handlers also use to save the register.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1584
  // This word cannot be used for any other purpose, but
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1585
  // it works fine to save the register's value, whether or not
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1586
  // an interrupt flushes register windows at any given moment!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1587
  Address s1_addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1588
  if (s1->is_valid() && (s1->is_in() || s1->is_local())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1589
    s1_addr = s1->address_in_saved_window();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1590
    st_ptr(s1, s1_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1591
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1592
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1593
  Address s2_addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1594
  if (s2->is_valid() && (s2->is_in() || s2->is_local())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1595
    s2_addr = s2->address_in_saved_window();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1596
    st_ptr(s2, s2_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1597
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1598
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1599
  save_frame(extraWords);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1600
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1601
  if (s1_addr.base() == SP) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1602
    ld_ptr(s1_addr.after_save(), d1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1603
  } else if (s1->is_valid()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1604
    mov(s1->after_save(), d1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1605
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1606
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1607
  if (s2_addr.base() == SP) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1608
    ld_ptr(s2_addr.after_save(), d2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1609
  } else if (s2->is_valid()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1610
    mov(s2->after_save(), d2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1611
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1612
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1613
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1614
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1615
AddressLiteral MacroAssembler::allocate_oop_address(jobject obj) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1616
  assert(oop_recorder() != NULL, "this assembler needs an OopRecorder");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1617
  int oop_index = oop_recorder()->allocate_index(obj);
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1618
  return AddressLiteral(obj, oop_Relocation::spec(oop_index));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1619
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1620
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1621
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1622
AddressLiteral MacroAssembler::constant_oop_address(jobject obj) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1623
  assert(oop_recorder() != NULL, "this assembler needs an OopRecorder");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1624
  int oop_index = oop_recorder()->find_index(obj);
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1625
  return AddressLiteral(obj, oop_Relocation::spec(oop_index));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1626
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1627
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  1628
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
  1629
  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
  1630
  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
  1631
  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
  1632
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  1633
  assert_not_delayed();
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  1634
  // 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
  1635
  relocate(rspec, 1);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  1636
  // Assembler::sethi(0x3fffff, d);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  1637
  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
  1638
  // 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
  1639
  add(d, 0x3ff, d);
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  1640
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  1641
}
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  1642
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1643
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1644
void MacroAssembler::align(int modulus) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1645
  while (offset() % modulus != 0) nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1646
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1647
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1648
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1649
void MacroAssembler::safepoint() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1650
  relocate(breakpoint_Relocation::spec(breakpoint_Relocation::safepoint));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1651
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1652
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1653
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1654
void RegistersForDebugging::print(outputStream* s) {
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  1655
  FlagSetting fs(Debugging, true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1656
  int j;
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  1657
  for (j = 0; j < 8; ++j) {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  1658
    if (j != 6) { s->print("i%d = ", j); os::print_location(s, i[j]); }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  1659
    else        { s->print( "fp = "   ); os::print_location(s, i[j]); }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  1660
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1661
  s->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1662
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  1663
  for (j = 0;  j < 8;  ++j) {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  1664
    s->print("l%d = ", j); os::print_location(s, l[j]);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  1665
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1666
  s->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1667
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  1668
  for (j = 0; j < 8; ++j) {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  1669
    if (j != 6) { s->print("o%d = ", j); os::print_location(s, o[j]); }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  1670
    else        { s->print( "sp = "   ); os::print_location(s, o[j]); }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  1671
  }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  1672
  s->cr();
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  1673
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  1674
  for (j = 0; j < 8; ++j) {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  1675
    s->print("g%d = ", j); os::print_location(s, g[j]);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  1676
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1677
  s->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1678
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1679
  // print out floats with compression
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1680
  for (j = 0; j < 32; ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1681
    jfloat val = f[j];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1682
    int last = j;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1683
    for ( ;  last+1 < 32;  ++last ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1684
      char b1[1024], b2[1024];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1685
      sprintf(b1, "%f", val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1686
      sprintf(b2, "%f", f[last+1]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1687
      if (strcmp(b1, b2))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1688
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1689
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1690
    s->print("f%d", j);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1691
    if ( j != last )  s->print(" - f%d", last);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1692
    s->print(" = %f", val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1693
    s->fill_to(25);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1694
    s->print_cr(" (0x%x)", val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1695
    j = last + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1696
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1697
  s->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1698
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1699
  // and doubles (evens only)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1700
  for (j = 0; j < 32; ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1701
    jdouble val = d[j];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1702
    int last = j;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1703
    for ( ;  last+1 < 32;  ++last ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1704
      char b1[1024], b2[1024];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1705
      sprintf(b1, "%f", val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1706
      sprintf(b2, "%f", d[last+1]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1707
      if (strcmp(b1, b2))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1708
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1709
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1710
    s->print("d%d", 2 * j);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1711
    if ( j != last )  s->print(" - d%d", last);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1712
    s->print(" = %f", val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1713
    s->fill_to(30);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1714
    s->print("(0x%x)", *(int*)&val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1715
    s->fill_to(42);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1716
    s->print_cr("(0x%x)", *(1 + (int*)&val));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1717
    j = last + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1718
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1719
  s->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1720
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1721
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1722
void RegistersForDebugging::save_registers(MacroAssembler* a) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1723
  a->sub(FP, round_to(sizeof(RegistersForDebugging), sizeof(jdouble)) - STACK_BIAS, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1724
  a->flush_windows();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1725
  int i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1726
  for (i = 0; i < 8; ++i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1727
    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
  1728
    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
  1729
    a->st_ptr(as_oRegister(i)->after_save(), O0, o_offset(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1730
    a->st_ptr(as_gRegister(i)->after_save(), O0, g_offset(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1731
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1732
  for (i = 0;  i < 32; ++i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1733
    a->stf(FloatRegisterImpl::S, as_FloatRegister(i), O0, f_offset(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1734
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1735
  for (i = 0; i < (VM_Version::v9_instructions_work() ? 64 : 32); i += 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1736
    a->stf(FloatRegisterImpl::D, as_FloatRegister(i), O0, d_offset(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1737
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1738
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1739
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1740
void RegistersForDebugging::restore_registers(MacroAssembler* a, Register r) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1741
  for (int i = 1; i < 8;  ++i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1742
    a->ld_ptr(r, g_offset(i), as_gRegister(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1743
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1744
  for (int j = 0; j < 32; ++j) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1745
    a->ldf(FloatRegisterImpl::S, O0, f_offset(j), as_FloatRegister(j));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1746
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1747
  for (int k = 0; k < (VM_Version::v9_instructions_work() ? 64 : 32); k += 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1748
    a->ldf(FloatRegisterImpl::D, O0, d_offset(k), as_FloatRegister(k));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1749
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1750
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1751
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1752
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1753
// pushes double TOS element of FPU stack on CPU stack; pops from FPU stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1754
void MacroAssembler::push_fTOS() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1755
  // %%%%%% need to implement this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1756
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1757
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1758
// pops double TOS element from CPU stack and pushes on FPU stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1759
void MacroAssembler::pop_fTOS() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1760
  // %%%%%% need to implement this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1761
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1762
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1763
void MacroAssembler::empty_FPU_stack() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1764
  // %%%%%% need to implement this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1765
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1766
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1767
void MacroAssembler::_verify_oop(Register reg, const char* msg, const char * file, int line) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1768
  // plausibility check for oops
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1769
  if (!VerifyOops) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1770
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1771
  if (reg == G0)  return;       // always NULL, which is always an oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1772
9976
6fef34e63df1 7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents: 9176
diff changeset
  1773
  BLOCK_COMMENT("verify_oop {");
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1774
  char buffer[64];
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1775
#ifdef COMPILER1
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1776
  if (CommentedAssembly) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1777
    snprintf(buffer, sizeof(buffer), "verify_oop at %d", offset());
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1778
    block_comment(buffer);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1779
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1780
#endif
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1781
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1782
  int len = strlen(file) + strlen(msg) + 1 + 4;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1783
  sprintf(buffer, "%d", line);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1784
  len += strlen(buffer);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1785
  sprintf(buffer, " at offset %d ", offset());
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1786
  len += strlen(buffer);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1787
  char * real_msg = new char[len];
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1788
  sprintf(real_msg, "%s%s(%s:%d)", msg, buffer, file, line);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1789
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1790
  // Call indirectly to solve generation ordering problem
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1791
  AddressLiteral a(StubRoutines::verify_oop_subroutine_entry_address());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1792
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1793
  // Make some space on stack above the current register window.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1794
  // Enough to hold 8 64-bit registers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1795
  add(SP,-8*8,SP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1796
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1797
  // Save some 64-bit registers; a normal 'save' chops the heads off
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1798
  // of 64-bit longs in the 32-bit build.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1799
  stx(O0,SP,frame::register_save_words*wordSize+STACK_BIAS+0*8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1800
  stx(O1,SP,frame::register_save_words*wordSize+STACK_BIAS+1*8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1801
  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
  1802
  stx(O7,SP,frame::register_save_words*wordSize+STACK_BIAS+7*8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1803
10507
4b1c5c1cf1b8 7085137: -XX:+VerifyOops is broken
kvn
parents: 10501
diff changeset
  1804
  // Size of set() should stay the same
4b1c5c1cf1b8 7085137: -XX:+VerifyOops is broken
kvn
parents: 10501
diff changeset
  1805
  patchable_set((intptr_t)real_msg, O1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1806
  // Load address to call to into O7
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1807
  load_ptr_contents(a, O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1808
  // Register call to verify_oop_subroutine
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1809
  callr(O7, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1810
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1811
  // recover frame size
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1812
  add(SP, 8*8,SP);
9976
6fef34e63df1 7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents: 9176
diff changeset
  1813
  BLOCK_COMMENT("} verify_oop");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1814
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1815
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1816
void MacroAssembler::_verify_oop_addr(Address addr, const char* msg, const char * file, int line) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1817
  // plausibility check for oops
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1818
  if (!VerifyOops) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1819
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1820
  char buffer[64];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1821
  sprintf(buffer, "%d", line);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1822
  int len = strlen(file) + strlen(msg) + 1 + 4 + strlen(buffer);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1823
  sprintf(buffer, " at SP+%d ", addr.disp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1824
  len += strlen(buffer);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1825
  char * real_msg = new char[len];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1826
  sprintf(real_msg, "%s at SP+%d (%s:%d)", msg, addr.disp(), file, line);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1827
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1828
  // Call indirectly to solve generation ordering problem
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1829
  AddressLiteral a(StubRoutines::verify_oop_subroutine_entry_address());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1830
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1831
  // Make some space on stack above the current register window.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1832
  // Enough to hold 8 64-bit registers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1833
  add(SP,-8*8,SP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1834
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1835
  // Save some 64-bit registers; a normal 'save' chops the heads off
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1836
  // of 64-bit longs in the 32-bit build.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1837
  stx(O0,SP,frame::register_save_words*wordSize+STACK_BIAS+0*8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1838
  stx(O1,SP,frame::register_save_words*wordSize+STACK_BIAS+1*8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1839
  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
  1840
  stx(O7,SP,frame::register_save_words*wordSize+STACK_BIAS+7*8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1841
10507
4b1c5c1cf1b8 7085137: -XX:+VerifyOops is broken
kvn
parents: 10501
diff changeset
  1842
  // Size of set() should stay the same
4b1c5c1cf1b8 7085137: -XX:+VerifyOops is broken
kvn
parents: 10501
diff changeset
  1843
  patchable_set((intptr_t)real_msg, O1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1844
  // Load address to call to into O7
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1845
  load_ptr_contents(a, O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1846
  // Register call to verify_oop_subroutine
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1847
  callr(O7, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1848
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1849
  // recover frame size
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1850
  add(SP, 8*8,SP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1851
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1852
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1853
// side-door communication with signalHandler in os_solaris.cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1854
address MacroAssembler::_verify_oop_implicit_branch[3] = { NULL };
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1855
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1856
// This macro is expanded just once; it creates shared code.  Contract:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1857
// receives an oop in O0.  Must restore O0 & O7 from TLS.  Must not smash ANY
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1858
// registers, including flags.  May not use a register 'save', as this blows
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1859
// the high bits of the O-regs if they contain Long values.  Acts as a 'leaf'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1860
// call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1861
void MacroAssembler::verify_oop_subroutine() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1862
  assert( VM_Version::v9_instructions_work(), "VerifyOops not supported for V8" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1863
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1864
  // Leaf call; no frame.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1865
  Label succeed, fail, null_or_fail;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1866
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1867
  // 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
  1868
  // O0 is now the oop to be checked.  O7 is the return address.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1869
  Register O0_obj = O0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1870
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1871
  // Save some more registers for temps.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1872
  stx(O2,SP,frame::register_save_words*wordSize+STACK_BIAS+2*8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1873
  stx(O3,SP,frame::register_save_words*wordSize+STACK_BIAS+3*8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1874
  stx(O4,SP,frame::register_save_words*wordSize+STACK_BIAS+4*8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1875
  stx(O5,SP,frame::register_save_words*wordSize+STACK_BIAS+5*8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1876
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1877
  // Save flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1878
  Register O5_save_flags = O5;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1879
  rdccr( O5_save_flags );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1880
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1881
  { // count number of verifies
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1882
    Register O2_adr   = O2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1883
    Register O3_accum = O3;
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1884
    inc_counter(StubRoutines::verify_oop_count_addr(), O2_adr, O3_accum);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1885
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1886
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1887
  Register O2_mask = O2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1888
  Register O3_bits = O3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1889
  Register O4_temp = O4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1890
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1891
  // mark lower end of faulting range
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1892
  assert(_verify_oop_implicit_branch[0] == NULL, "set once");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1893
  _verify_oop_implicit_branch[0] = pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1894
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1895
  // We can't check the mark oop because it could be in the process of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1896
  // locking or unlocking while this is running.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1897
  set(Universe::verify_oop_mask (), O2_mask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1898
  set(Universe::verify_oop_bits (), O3_bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1899
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1900
  // assert((obj & oop_mask) == oop_bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1901
  and3(O0_obj, O2_mask, O4_temp);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  1902
  cmp_and_brx_short(O4_temp, O3_bits, notEqual, pn, null_or_fail);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1903
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1904
  if ((NULL_WORD & Universe::verify_oop_mask()) == Universe::verify_oop_bits()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1905
    // the null_or_fail case is useless; must test for null separately
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  1906
    br_null_short(O0_obj, pn, succeed);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1907
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1908
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1909
  // Check the klassOop of this object for being in the right area of memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1910
  // 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
  1911
  load_klass(O0_obj, O0_obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1912
  // assert((klass & klass_mask) == klass_bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1913
  if( Universe::verify_klass_mask() != Universe::verify_oop_mask() )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1914
    set(Universe::verify_klass_mask(), O2_mask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1915
  if( Universe::verify_klass_bits() != Universe::verify_oop_bits() )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1916
    set(Universe::verify_klass_bits(), O3_bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1917
  and3(O0_obj, O2_mask, O4_temp);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  1918
  cmp_and_brx_short(O4_temp, O3_bits, notEqual, pn, fail);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1919
  // 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
  1920
  load_klass(O0_obj, O0_obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1921
  and3(O0_obj, O2_mask, O4_temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1922
  cmp(O4_temp, O3_bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1923
  brx(notEqual, false, pn, fail);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1924
  delayed()->wrccr( O5_save_flags ); // Restore CCR's
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1925
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1926
  // mark upper end of faulting range
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1927
  _verify_oop_implicit_branch[1] = pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1928
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1929
  //-----------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1930
  // all tests pass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1931
  bind(succeed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1932
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1933
  // Restore prior 64-bit registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1934
  ldx(SP,frame::register_save_words*wordSize+STACK_BIAS+0*8,O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1935
  ldx(SP,frame::register_save_words*wordSize+STACK_BIAS+1*8,O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1936
  ldx(SP,frame::register_save_words*wordSize+STACK_BIAS+2*8,O2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1937
  ldx(SP,frame::register_save_words*wordSize+STACK_BIAS+3*8,O3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1938
  ldx(SP,frame::register_save_words*wordSize+STACK_BIAS+4*8,O4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1939
  ldx(SP,frame::register_save_words*wordSize+STACK_BIAS+5*8,O5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1940
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1941
  retl();                       // Leaf return; restore prior O7 in delay slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1942
  delayed()->ldx(SP,frame::register_save_words*wordSize+STACK_BIAS+7*8,O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1943
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1944
  //-----------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1945
  bind(null_or_fail);           // nulls are less common but OK
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1946
  br_null(O0_obj, false, pt, succeed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1947
  delayed()->wrccr( O5_save_flags ); // Restore CCR's
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1948
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1949
  //-----------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1950
  // report failure:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1951
  bind(fail);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1952
  _verify_oop_implicit_branch[2] = pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1953
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1954
  wrccr( O5_save_flags ); // Restore CCR's
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1955
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1956
  save_frame(::round_to(sizeof(RegistersForDebugging) / BytesPerWord, 2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1957
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1958
  // stop_subroutine expects message pointer in I1.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1959
  mov(I1, O1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1960
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1961
  // Restore prior 64-bit registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1962
  ldx(FP,frame::register_save_words*wordSize+STACK_BIAS+0*8,I0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1963
  ldx(FP,frame::register_save_words*wordSize+STACK_BIAS+1*8,I1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1964
  ldx(FP,frame::register_save_words*wordSize+STACK_BIAS+2*8,I2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1965
  ldx(FP,frame::register_save_words*wordSize+STACK_BIAS+3*8,I3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1966
  ldx(FP,frame::register_save_words*wordSize+STACK_BIAS+4*8,I4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1967
  ldx(FP,frame::register_save_words*wordSize+STACK_BIAS+5*8,I5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1968
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1969
  // factor long stop-sequence into subroutine to save space
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1970
  assert(StubRoutines::Sparc::stop_subroutine_entry_address(), "hasn't been generated yet");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1971
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1972
  // call indirectly to solve generation ordering problem
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1973
  AddressLiteral al(StubRoutines::Sparc::stop_subroutine_entry_address());
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1974
  load_ptr_contents(al, O5);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1975
  jmpl(O5, 0, O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1976
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1977
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1978
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1979
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1980
void MacroAssembler::stop(const char* msg) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1981
  // save frame first to get O7 for return address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1982
  // add one word to size in case struct is odd number of words long
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1983
  // It must be doubleword-aligned for storing doubles into it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1984
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1985
    save_frame(::round_to(sizeof(RegistersForDebugging) / BytesPerWord, 2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1986
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1987
    // stop_subroutine expects message pointer in I1.
10507
4b1c5c1cf1b8 7085137: -XX:+VerifyOops is broken
kvn
parents: 10501
diff changeset
  1988
    // Size of set() should stay the same
4b1c5c1cf1b8 7085137: -XX:+VerifyOops is broken
kvn
parents: 10501
diff changeset
  1989
    patchable_set((intptr_t)msg, O1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1990
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1991
    // factor long stop-sequence into subroutine to save space
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1992
    assert(StubRoutines::Sparc::stop_subroutine_entry_address(), "hasn't been generated yet");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1993
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1994
    // call indirectly to solve generation ordering problem
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  1995
    AddressLiteral a(StubRoutines::Sparc::stop_subroutine_entry_address());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1996
    load_ptr_contents(a, O5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1997
    jmpl(O5, 0, O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1998
    delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1999
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2000
    breakpoint_trap();   // make stop actually stop rather than writing
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2001
                         // unnoticeable results in the output files.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2002
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2003
    // restore(); done in callee to save space!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2004
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2005
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2006
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2007
void MacroAssembler::warn(const char* msg) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2008
  save_frame(::round_to(sizeof(RegistersForDebugging) / BytesPerWord, 2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2009
  RegistersForDebugging::save_registers(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2010
  mov(O0, L0);
10507
4b1c5c1cf1b8 7085137: -XX:+VerifyOops is broken
kvn
parents: 10501
diff changeset
  2011
  // Size of set() should stay the same
4b1c5c1cf1b8 7085137: -XX:+VerifyOops is broken
kvn
parents: 10501
diff changeset
  2012
  patchable_set((intptr_t)msg, O0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2013
  call( CAST_FROM_FN_PTR(address, warning) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2014
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2015
//  ret();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2016
//  delayed()->restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2017
  RegistersForDebugging::restore_registers(this, L0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2018
  restore();
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::untested(const char* what) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2023
  // We must be able to turn interactive prompting off
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2024
  // in order to run automated test scripts on the VM
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2025
  // Use the flag ShowMessageBoxOnError
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2026
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2027
  char* b = new char[1024];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2028
  sprintf(b, "untested: %s", what);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2029
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  2030
  if (ShowMessageBoxOnError) { STOP(b); }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  2031
  else                       { warn(b); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2032
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2033
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2034
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2035
void MacroAssembler::stop_subroutine() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2036
  RegistersForDebugging::save_registers(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2037
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2038
  // for the sake of the debugger, stick a PC on the current frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2039
  // (this assumes that the caller has performed an extra "save")
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2040
  mov(I7, L7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2041
  add(O7, -7 * BytesPerInt, I7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2042
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2043
  save_frame(); // one more save to free up another O7 register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2044
  mov(I0, O1); // addr of reg save area
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2045
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2046
  // We expect pointer to message in I1. Caller must set it up in O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2047
  mov(I1, O0); // get msg
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2048
  call (CAST_FROM_FN_PTR(address, MacroAssembler::debug), relocInfo::runtime_call_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2049
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2050
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2051
  restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2052
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2053
  RegistersForDebugging::restore_registers(this, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2054
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2055
  save_frame(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2056
  call(CAST_FROM_FN_PTR(address,breakpoint));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2057
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2058
  restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2059
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2060
  mov(L7, I7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2061
  retl();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2062
  delayed()->restore(); // see stop above
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2063
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2064
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2065
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2066
void MacroAssembler::debug(char* msg, RegistersForDebugging* regs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2067
  if ( ShowMessageBoxOnError ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2068
      JavaThreadState saved_state = JavaThread::current()->thread_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2069
      JavaThread::current()->set_thread_state(_thread_in_vm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2070
      {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2071
        // In order to get locks work, we need to fake a in_VM state
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2072
        ttyLocker ttyl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2073
        ::tty->print_cr("EXECUTION STOPPED: %s\n", msg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2074
        if (CountBytecodes || TraceBytecodes || StopInterpreterAt) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2075
          ::tty->print_cr("Interpreter::bytecode_counter = %d", BytecodeCounter::counter_value());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2076
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2077
        if (os::message_box(msg, "Execution stopped, print registers?"))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2078
          regs->print(::tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2079
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2080
      ThreadStateTransition::transition(JavaThread::current(), _thread_in_vm, saved_state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2081
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2082
  else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2083
     ::tty->print_cr("=============== DEBUG MESSAGE: %s ================\n", msg);
9976
6fef34e63df1 7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents: 9176
diff changeset
  2084
  assert(false, err_msg("DEBUG MESSAGE: %s", msg));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2085
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2086
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2087
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2088
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2089
void MacroAssembler::test() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2090
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2091
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2092
  CodeBuffer cb("test", 10000, 10000);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2093
  MacroAssembler* a = new MacroAssembler(&cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2094
  VM_Version::allow_all();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2095
  a->test_v9();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2096
  a->test_v8_onlys();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2097
  VM_Version::revert();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2098
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2099
  StubRoutines::Sparc::test_stop_entry()();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2100
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2101
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2102
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2103
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2104
void MacroAssembler::calc_mem_param_words(Register Rparam_words, Register Rresult) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2105
  subcc( Rparam_words, Argument::n_register_parameters, Rresult); // how many mem words?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2106
  Label no_extras;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2107
  br( negative, true, pt, no_extras ); // if neg, clear reg
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  2108
  delayed()->set(0, Rresult);          // annuled, so only if taken
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2109
  bind( no_extras );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2110
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2111
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2112
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2113
void MacroAssembler::calc_frame_size(Register Rextra_words, Register Rresult) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2114
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2115
  add(Rextra_words, frame::memory_parameter_word_sp_offset, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2116
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2117
  add(Rextra_words, frame::memory_parameter_word_sp_offset + 1, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2118
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2119
  bclr(1, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2120
  sll(Rresult, LogBytesPerWord, Rresult);  // Rresult has total frame bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2121
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2122
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2123
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2124
void MacroAssembler::calc_frame_size_and_save(Register Rextra_words, Register Rresult) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2125
  calc_frame_size(Rextra_words, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2126
  neg(Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2127
  save(SP, Rresult, SP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2128
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2129
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2130
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2131
// ---------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2132
Assembler::RCondition cond2rcond(Assembler::Condition c) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2133
  switch (c) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2134
    /*case zero: */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2135
    case Assembler::equal:        return Assembler::rc_z;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2136
    case Assembler::lessEqual:    return Assembler::rc_lez;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2137
    case Assembler::less:         return Assembler::rc_lz;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2138
    /*case notZero:*/
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2139
    case Assembler::notEqual:     return Assembler::rc_nz;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2140
    case Assembler::greater:      return Assembler::rc_gz;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2141
    case Assembler::greaterEqual: return Assembler::rc_gez;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2142
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2143
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2144
  return Assembler::rc_z;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2145
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2146
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2147
// compares (32 bit) register with zero and branches.  NOT FOR USE WITH 64-bit POINTERS
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2148
void MacroAssembler::cmp_zero_and_br(Condition c, Register s1, Label& L, bool a, Predict p) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2149
  tst(s1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2150
  br (c, a, p, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2151
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2152
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2153
// Compares a pointer register with zero and branches on null.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2154
// Does a test & branch on 32-bit systems and a register-branch on 64-bit.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2155
void MacroAssembler::br_null( Register s1, bool a, Predict p, Label& L ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2156
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2157
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2158
  bpr( rc_z, a, p, s1, L );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2159
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2160
  tst(s1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2161
  br ( zero, a, p, L );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2162
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2163
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2164
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2165
void MacroAssembler::br_notnull( Register s1, bool a, Predict p, Label& L ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2166
  assert_not_delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2167
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2168
  bpr( rc_nz, a, p, s1, L );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2169
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2170
  tst(s1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2171
  br ( notZero, a, p, L );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2172
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2173
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2174
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2175
// Compare registers and branch with nop in delay slot or cbcond without delay slot.
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2176
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2177
// Compare integer (32 bit) values (icc only).
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2178
void MacroAssembler::cmp_and_br_short(Register s1, Register s2, Condition c,
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2179
                                      Predict p, Label& L) {
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2180
  assert_not_delayed();
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2181
  if (use_cbcond(L)) {
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2182
    Assembler::cbcond(c, icc, s1, s2, L);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2183
  } else {
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2184
    cmp(s1, s2);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2185
    br(c, false, p, L);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2186
    delayed()->nop();
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2187
  }
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2188
}
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2189
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2190
// Compare integer (32 bit) values (icc only).
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2191
void MacroAssembler::cmp_and_br_short(Register s1, int simm13a, Condition c,
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2192
                                      Predict p, Label& L) {
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2193
  assert_not_delayed();
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2194
  if (is_simm(simm13a,5) && use_cbcond(L)) {
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2195
    Assembler::cbcond(c, icc, s1, simm13a, L);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2196
  } else {
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2197
    cmp(s1, simm13a);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2198
    br(c, false, p, L);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2199
    delayed()->nop();
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2200
  }
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2201
}
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2202
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2203
// Branch that tests xcc in LP64 and icc in !LP64
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2204
void MacroAssembler::cmp_and_brx_short(Register s1, Register s2, Condition c,
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2205
                                       Predict p, Label& L) {
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2206
  assert_not_delayed();
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2207
  if (use_cbcond(L)) {
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2208
    Assembler::cbcond(c, ptr_cc, s1, s2, L);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2209
  } else {
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2210
    cmp(s1, s2);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2211
    brx(c, false, p, L);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2212
    delayed()->nop();
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2213
  }
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2214
}
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2215
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2216
// Branch that tests xcc in LP64 and icc in !LP64
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2217
void MacroAssembler::cmp_and_brx_short(Register s1, int simm13a, Condition c,
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2218
                                       Predict p, Label& L) {
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2219
  assert_not_delayed();
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2220
  if (is_simm(simm13a,5) && use_cbcond(L)) {
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2221
    Assembler::cbcond(c, ptr_cc, s1, simm13a, L);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2222
  } else {
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2223
    cmp(s1, simm13a);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2224
    brx(c, false, p, L);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2225
    delayed()->nop();
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2226
  }
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2227
}
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2228
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2229
// Short branch version for compares a pointer with zero.
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2230
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2231
void MacroAssembler::br_null_short(Register s1, Predict p, Label& L) {
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2232
  assert_not_delayed();
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2233
  if (use_cbcond(L)) {
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2234
    Assembler::cbcond(zero, ptr_cc, s1, 0, L);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2235
    return;
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2236
  }
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2237
  br_null(s1, false, p, L);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2238
  delayed()->nop();
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2239
}
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2240
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2241
void MacroAssembler::br_notnull_short(Register s1, Predict p, Label& L) {
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2242
  assert_not_delayed();
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2243
  if (use_cbcond(L)) {
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2244
    Assembler::cbcond(notZero, ptr_cc, s1, 0, L);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2245
    return;
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2246
  }
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2247
  br_notnull(s1, false, p, L);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2248
  delayed()->nop();
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2249
}
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2250
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2251
// Unconditional short branch
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2252
void MacroAssembler::ba_short(Label& L) {
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2253
  if (use_cbcond(L)) {
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2254
    Assembler::cbcond(equal, icc, G0, G0, L);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2255
    return;
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2256
  }
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2257
  br(always, false, pt, L);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2258
  delayed()->nop();
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2259
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2260
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2261
// instruction sequences factored across compiler & interpreter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2262
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2263
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2264
void MacroAssembler::lcmp( Register Ra_hi, Register Ra_low,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2265
                           Register Rb_hi, Register Rb_low,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2266
                           Register Rresult) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2267
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2268
  Label check_low_parts, done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2269
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2270
  cmp(Ra_hi, Rb_hi );  // compare hi parts
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2271
  br(equal, true, pt, check_low_parts);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2272
  delayed()->cmp(Ra_low, Rb_low); // test low parts
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2273
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2274
  // And, with an unsigned comparison, it does not matter if the numbers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2275
  // are negative or not.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2276
  // E.g., -2 cmp -1: the low parts are 0xfffffffe and 0xffffffff.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2277
  // The second one is bigger (unsignedly).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2278
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2279
  // Other notes:  The first move in each triplet can be unconditional
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2280
  // (and therefore probably prefetchable).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2281
  // And the equals case for the high part does not need testing,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2282
  // since that triplet is reached only after finding the high halves differ.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2283
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2284
  if (VM_Version::v9_instructions_work()) {
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2285
    mov(-1, Rresult);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2286
    ba(done);  delayed()-> movcc(greater, false, icc,  1, Rresult);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2287
  } else {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2288
    br(less,    true, pt, done); delayed()-> set(-1, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2289
    br(greater, true, pt, done); delayed()-> set( 1, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2290
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2291
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2292
  bind( check_low_parts );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2293
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2294
  if (VM_Version::v9_instructions_work()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2295
    mov(                               -1, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2296
    movcc(equal,           false, icc,  0, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2297
    movcc(greaterUnsigned, false, icc,  1, Rresult);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2298
  } else {
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2299
    set(-1, Rresult);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2300
    br(equal,           true, pt, done); delayed()->set( 0, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2301
    br(greaterUnsigned, true, pt, done); delayed()->set( 1, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2302
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2303
  bind( done );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2304
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2305
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2306
void MacroAssembler::lneg( Register Rhi, Register Rlow ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2307
  subcc(  G0, Rlow, Rlow );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2308
  subc(   G0, Rhi,  Rhi  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2309
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2310
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2311
void MacroAssembler::lshl( Register Rin_high,  Register Rin_low,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2312
                           Register Rcount,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2313
                           Register Rout_high, Register Rout_low,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2314
                           Register Rtemp ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2315
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2316
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2317
  Register Ralt_count = Rtemp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2318
  Register Rxfer_bits = Rtemp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2319
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2320
  assert( Ralt_count != Rin_high
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2321
      &&  Ralt_count != Rin_low
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2322
      &&  Ralt_count != Rcount
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2323
      &&  Rxfer_bits != Rin_low
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2324
      &&  Rxfer_bits != Rin_high
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2325
      &&  Rxfer_bits != Rcount
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2326
      &&  Rxfer_bits != Rout_low
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2327
      &&  Rout_low   != Rin_high,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2328
        "register alias checks");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2329
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2330
  Label big_shift, done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2331
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2332
  // This code can be optimized to use the 64 bit shifts in V9.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2333
  // Here we use the 32 bit shifts.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2334
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2335
  and3( Rcount, 0x3f, Rcount);     // take least significant 6 bits
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2336
  subcc(Rcount,   31, Ralt_count);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2337
  br(greater, true, pn, big_shift);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2338
  delayed()->dec(Ralt_count);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2339
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2340
  // shift < 32 bits, Ralt_count = Rcount-31
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2341
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2342
  // We get the transfer bits by shifting right by 32-count the low
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2343
  // register. This is done by shifting right by 31-count and then by one
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2344
  // more to take care of the special (rare) case where count is zero
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2345
  // (shifting by 32 would not work).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2346
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2347
  neg(Ralt_count);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2348
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2349
  // The order of the next two instructions is critical in the case where
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2350
  // Rin and Rout are the same and should not be reversed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2351
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2352
  srl(Rin_low, Ralt_count, Rxfer_bits); // shift right by 31-count
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2353
  if (Rcount != Rout_low) {
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2354
    sll(Rin_low, Rcount, Rout_low); // low half
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2355
  }
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2356
  sll(Rin_high, Rcount, Rout_high);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2357
  if (Rcount == Rout_low) {
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2358
    sll(Rin_low, Rcount, Rout_low); // low half
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2359
  }
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2360
  srl(Rxfer_bits, 1, Rxfer_bits ); // shift right by one more
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2361
  ba(done);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2362
  delayed()->or3(Rout_high, Rxfer_bits, Rout_high);   // new hi value: or in shifted old hi part and xfer from low
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2363
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2364
  // shift >= 32 bits, Ralt_count = Rcount-32
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2365
  bind(big_shift);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2366
  sll(Rin_low, Ralt_count, Rout_high  );
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2367
  clr(Rout_low);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2368
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2369
  bind(done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2370
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2371
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2372
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2373
void MacroAssembler::lshr( Register Rin_high,  Register Rin_low,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2374
                           Register Rcount,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2375
                           Register Rout_high, Register Rout_low,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2376
                           Register Rtemp ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2377
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2378
  Register Ralt_count = Rtemp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2379
  Register Rxfer_bits = Rtemp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2380
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2381
  assert( Ralt_count != Rin_high
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2382
      &&  Ralt_count != Rin_low
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2383
      &&  Ralt_count != Rcount
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2384
      &&  Rxfer_bits != Rin_low
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2385
      &&  Rxfer_bits != Rin_high
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2386
      &&  Rxfer_bits != Rcount
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2387
      &&  Rxfer_bits != Rout_high
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2388
      &&  Rout_high  != Rin_low,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2389
        "register alias checks");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2390
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2391
  Label big_shift, done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2392
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2393
  // This code can be optimized to use the 64 bit shifts in V9.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2394
  // Here we use the 32 bit shifts.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2395
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2396
  and3( Rcount, 0x3f, Rcount);     // take least significant 6 bits
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2397
  subcc(Rcount,   31, Ralt_count);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2398
  br(greater, true, pn, big_shift);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2399
  delayed()->dec(Ralt_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2400
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2401
  // shift < 32 bits, Ralt_count = Rcount-31
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2402
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2403
  // We get the transfer bits by shifting left by 32-count the high
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2404
  // register. This is done by shifting left by 31-count and then by one
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2405
  // more to take care of the special (rare) case where count is zero
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2406
  // (shifting by 32 would not work).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2407
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2408
  neg(Ralt_count);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2409
  if (Rcount != Rout_low) {
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2410
    srl(Rin_low, Rcount, Rout_low);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2411
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2412
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2413
  // The order of the next two instructions is critical in the case where
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2414
  // Rin and Rout are the same and should not be reversed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2415
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2416
  sll(Rin_high, Ralt_count, Rxfer_bits); // shift left by 31-count
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2417
  sra(Rin_high,     Rcount, Rout_high ); // high half
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2418
  sll(Rxfer_bits,        1, Rxfer_bits); // shift left by one more
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2419
  if (Rcount == Rout_low) {
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2420
    srl(Rin_low, Rcount, Rout_low);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2421
  }
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2422
  ba(done);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2423
  delayed()->or3(Rout_low, Rxfer_bits, Rout_low); // new low value: or shifted old low part and xfer from high
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2424
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2425
  // shift >= 32 bits, Ralt_count = Rcount-32
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2426
  bind(big_shift);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2427
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2428
  sra(Rin_high, Ralt_count, Rout_low);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2429
  sra(Rin_high,         31, Rout_high); // sign into hi
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2430
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2431
  bind( done );
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::lushr( Register Rin_high,  Register Rin_low,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2437
                            Register Rcount,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2438
                            Register Rout_high, Register Rout_low,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2439
                            Register Rtemp ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2440
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2441
  Register Ralt_count = Rtemp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2442
  Register Rxfer_bits = Rtemp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2443
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2444
  assert( Ralt_count != Rin_high
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2445
      &&  Ralt_count != Rin_low
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2446
      &&  Ralt_count != Rcount
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2447
      &&  Rxfer_bits != Rin_low
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2448
      &&  Rxfer_bits != Rin_high
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2449
      &&  Rxfer_bits != Rcount
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2450
      &&  Rxfer_bits != Rout_high
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2451
      &&  Rout_high  != Rin_low,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2452
        "register alias checks");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2453
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2454
  Label big_shift, done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2455
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2456
  // This code can be optimized to use the 64 bit shifts in V9.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2457
  // Here we use the 32 bit shifts.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2458
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2459
  and3( Rcount, 0x3f, Rcount);     // take least significant 6 bits
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2460
  subcc(Rcount,   31, Ralt_count);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2461
  br(greater, true, pn, big_shift);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2462
  delayed()->dec(Ralt_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2463
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2464
  // shift < 32 bits, Ralt_count = Rcount-31
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2465
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2466
  // We get the transfer bits by shifting left by 32-count the high
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2467
  // register. This is done by shifting left by 31-count and then by one
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2468
  // more to take care of the special (rare) case where count is zero
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2469
  // (shifting by 32 would not work).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2470
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2471
  neg(Ralt_count);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2472
  if (Rcount != Rout_low) {
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2473
    srl(Rin_low, Rcount, Rout_low);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2474
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2475
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2476
  // The order of the next two instructions is critical in the case where
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2477
  // Rin and Rout are the same and should not be reversed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2478
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2479
  sll(Rin_high, Ralt_count, Rxfer_bits); // shift left by 31-count
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2480
  srl(Rin_high,     Rcount, Rout_high ); // high half
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2481
  sll(Rxfer_bits,        1, Rxfer_bits); // shift left by one more
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2482
  if (Rcount == Rout_low) {
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2483
    srl(Rin_low, Rcount, Rout_low);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2484
  }
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2485
  ba(done);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2486
  delayed()->or3(Rout_low, Rxfer_bits, Rout_low); // new low value: or shifted old low part and xfer from high
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2487
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2488
  // shift >= 32 bits, Ralt_count = Rcount-32
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2489
  bind(big_shift);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2490
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2491
  srl(Rin_high, Ralt_count, Rout_low);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2492
  clr(Rout_high);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2493
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2494
  bind( done );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2495
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2496
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2497
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2498
void MacroAssembler::lcmp( Register Ra, Register Rb, Register Rresult) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2499
  cmp(Ra, Rb);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2500
  mov(-1, Rresult);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2501
  movcc(equal,   false, xcc,  0, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2502
  movcc(greater, false, xcc,  1, Rresult);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2503
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2504
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2505
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2506
8328
478a1d29e5a3 7018378: JSR 292: _bound_int_mh produces wrong result on 64-bit SPARC
twisti
parents: 7898
diff changeset
  2507
void MacroAssembler::load_sized_value(Address src, Register dst, size_t size_in_bytes, bool is_signed) {
5416
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2508
  switch (size_in_bytes) {
8328
478a1d29e5a3 7018378: JSR 292: _bound_int_mh produces wrong result on 64-bit SPARC
twisti
parents: 7898
diff changeset
  2509
  case  8:  ld_long(src, dst); break;
478a1d29e5a3 7018378: JSR 292: _bound_int_mh produces wrong result on 64-bit SPARC
twisti
parents: 7898
diff changeset
  2510
  case  4:  ld(     src, dst); break;
478a1d29e5a3 7018378: JSR 292: _bound_int_mh produces wrong result on 64-bit SPARC
twisti
parents: 7898
diff changeset
  2511
  case  2:  is_signed ? ldsh(src, dst) : lduh(src, dst); break;
478a1d29e5a3 7018378: JSR 292: _bound_int_mh produces wrong result on 64-bit SPARC
twisti
parents: 7898
diff changeset
  2512
  case  1:  is_signed ? ldsb(src, dst) : ldub(src, dst); break;
478a1d29e5a3 7018378: JSR 292: _bound_int_mh produces wrong result on 64-bit SPARC
twisti
parents: 7898
diff changeset
  2513
  default:  ShouldNotReachHere();
478a1d29e5a3 7018378: JSR 292: _bound_int_mh produces wrong result on 64-bit SPARC
twisti
parents: 7898
diff changeset
  2514
  }
478a1d29e5a3 7018378: JSR 292: _bound_int_mh produces wrong result on 64-bit SPARC
twisti
parents: 7898
diff changeset
  2515
}
478a1d29e5a3 7018378: JSR 292: _bound_int_mh produces wrong result on 64-bit SPARC
twisti
parents: 7898
diff changeset
  2516
478a1d29e5a3 7018378: JSR 292: _bound_int_mh produces wrong result on 64-bit SPARC
twisti
parents: 7898
diff changeset
  2517
void MacroAssembler::store_sized_value(Register src, Address dst, size_t size_in_bytes) {
478a1d29e5a3 7018378: JSR 292: _bound_int_mh produces wrong result on 64-bit SPARC
twisti
parents: 7898
diff changeset
  2518
  switch (size_in_bytes) {
478a1d29e5a3 7018378: JSR 292: _bound_int_mh produces wrong result on 64-bit SPARC
twisti
parents: 7898
diff changeset
  2519
  case  8:  st_long(src, dst); break;
478a1d29e5a3 7018378: JSR 292: _bound_int_mh produces wrong result on 64-bit SPARC
twisti
parents: 7898
diff changeset
  2520
  case  4:  st(     src, dst); break;
478a1d29e5a3 7018378: JSR 292: _bound_int_mh produces wrong result on 64-bit SPARC
twisti
parents: 7898
diff changeset
  2521
  case  2:  sth(    src, dst); break;
478a1d29e5a3 7018378: JSR 292: _bound_int_mh produces wrong result on 64-bit SPARC
twisti
parents: 7898
diff changeset
  2522
  case  1:  stb(    src, dst); break;
478a1d29e5a3 7018378: JSR 292: _bound_int_mh produces wrong result on 64-bit SPARC
twisti
parents: 7898
diff changeset
  2523
  default:  ShouldNotReachHere();
5416
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2524
  }
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2525
}
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2526
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2527
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2528
void MacroAssembler::float_cmp( bool is_float, int unordered_result,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2529
                                FloatRegister Fa, FloatRegister Fb,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2530
                                Register Rresult) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2531
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2532
  fcmp(is_float ? FloatRegisterImpl::S : FloatRegisterImpl::D, fcc0, Fa, Fb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2533
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2534
  Condition lt = unordered_result == -1 ? f_unorderedOrLess    : f_less;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2535
  Condition eq =                          f_equal;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2536
  Condition gt = unordered_result ==  1 ? f_unorderedOrGreater : f_greater;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2537
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2538
  if (VM_Version::v9_instructions_work()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2539
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2540
    mov(-1, Rresult);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2541
    movcc(eq, true, fcc0, 0, Rresult);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2542
    movcc(gt, true, fcc0, 1, Rresult);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2543
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2544
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2545
    Label done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2546
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2547
    set( -1, Rresult );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2548
    //fb(lt, true, pn, done); delayed()->set( -1, Rresult );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2549
    fb( eq, true, pn, done);  delayed()->set(  0, Rresult );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2550
    fb( gt, true, pn, done);  delayed()->set(  1, Rresult );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2551
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2552
    bind (done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2553
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2554
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2555
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2556
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2557
void MacroAssembler::fneg( FloatRegisterImpl::Width w, FloatRegister s, FloatRegister d)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2558
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2559
  if (VM_Version::v9_instructions_work()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2560
    Assembler::fneg(w, s, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2561
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2562
    if (w == FloatRegisterImpl::S) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2563
      Assembler::fneg(w, s, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2564
    } else if (w == FloatRegisterImpl::D) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2565
      // number() does a sanity check on the alignment.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2566
      assert(((s->encoding(FloatRegisterImpl::D) & 1) == 0) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2567
        ((d->encoding(FloatRegisterImpl::D) & 1) == 0), "float register alignment check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2568
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2569
      Assembler::fneg(FloatRegisterImpl::S, s, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2570
      Assembler::fmov(FloatRegisterImpl::S, s->successor(), d->successor());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2571
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2572
      assert(w == FloatRegisterImpl::Q, "Invalid float register width");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2573
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2574
      // number() does a sanity check on the alignment.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2575
      assert(((s->encoding(FloatRegisterImpl::D) & 3) == 0) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2576
        ((d->encoding(FloatRegisterImpl::D) & 3) == 0), "float register alignment check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2577
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2578
      Assembler::fneg(FloatRegisterImpl::S, s, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2579
      Assembler::fmov(FloatRegisterImpl::S, s->successor(), d->successor());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2580
      Assembler::fmov(FloatRegisterImpl::S, s->successor()->successor(), d->successor()->successor());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2581
      Assembler::fmov(FloatRegisterImpl::S, s->successor()->successor()->successor(), d->successor()->successor()->successor());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2582
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2583
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2584
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2585
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2586
void MacroAssembler::fmov( FloatRegisterImpl::Width w, FloatRegister s, FloatRegister d)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2587
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2588
  if (VM_Version::v9_instructions_work()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2589
    Assembler::fmov(w, s, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2590
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2591
    if (w == FloatRegisterImpl::S) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2592
      Assembler::fmov(w, s, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2593
    } else if (w == FloatRegisterImpl::D) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2594
      // number() does a sanity check on the alignment.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2595
      assert(((s->encoding(FloatRegisterImpl::D) & 1) == 0) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2596
        ((d->encoding(FloatRegisterImpl::D) & 1) == 0), "float register alignment check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2597
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2598
      Assembler::fmov(FloatRegisterImpl::S, s, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2599
      Assembler::fmov(FloatRegisterImpl::S, s->successor(), d->successor());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2600
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2601
      assert(w == FloatRegisterImpl::Q, "Invalid float register width");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2602
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2603
      // number() does a sanity check on the alignment.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2604
      assert(((s->encoding(FloatRegisterImpl::D) & 3) == 0) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2605
        ((d->encoding(FloatRegisterImpl::D) & 3) == 0), "float register alignment check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2606
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2607
      Assembler::fmov(FloatRegisterImpl::S, s, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2608
      Assembler::fmov(FloatRegisterImpl::S, s->successor(), d->successor());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2609
      Assembler::fmov(FloatRegisterImpl::S, s->successor()->successor(), d->successor()->successor());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2610
      Assembler::fmov(FloatRegisterImpl::S, s->successor()->successor()->successor(), d->successor()->successor()->successor());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2611
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2612
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2613
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2614
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2615
void MacroAssembler::fabs( FloatRegisterImpl::Width w, FloatRegister s, FloatRegister d)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2616
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2617
  if (VM_Version::v9_instructions_work()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2618
    Assembler::fabs(w, s, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2619
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2620
    if (w == FloatRegisterImpl::S) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2621
      Assembler::fabs(w, s, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2622
    } else if (w == FloatRegisterImpl::D) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2623
      // number() does a sanity check on the alignment.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2624
      assert(((s->encoding(FloatRegisterImpl::D) & 1) == 0) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2625
        ((d->encoding(FloatRegisterImpl::D) & 1) == 0), "float register alignment check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2626
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2627
      Assembler::fabs(FloatRegisterImpl::S, s, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2628
      Assembler::fmov(FloatRegisterImpl::S, s->successor(), d->successor());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2629
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2630
      assert(w == FloatRegisterImpl::Q, "Invalid float register width");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2631
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2632
      // number() does a sanity check on the alignment.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2633
      assert(((s->encoding(FloatRegisterImpl::D) & 3) == 0) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2634
       ((d->encoding(FloatRegisterImpl::D) & 3) == 0), "float register alignment check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2635
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2636
      Assembler::fabs(FloatRegisterImpl::S, s, d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2637
      Assembler::fmov(FloatRegisterImpl::S, s->successor(), d->successor());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2638
      Assembler::fmov(FloatRegisterImpl::S, s->successor()->successor(), d->successor()->successor());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2639
      Assembler::fmov(FloatRegisterImpl::S, s->successor()->successor()->successor(), d->successor()->successor()->successor());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2640
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2641
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2642
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2643
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2644
void MacroAssembler::save_all_globals_into_locals() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2645
  mov(G1,L1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2646
  mov(G2,L2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2647
  mov(G3,L3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2648
  mov(G4,L4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2649
  mov(G5,L5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2650
  mov(G6,L6);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2651
  mov(G7,L7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2652
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2653
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2654
void MacroAssembler::restore_globals_from_locals() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2655
  mov(L1,G1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2656
  mov(L2,G2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2657
  mov(L3,G3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2658
  mov(L4,G4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2659
  mov(L5,G5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2660
  mov(L6,G6);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2661
  mov(L7,G7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2662
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2663
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2664
// Use for 64 bit operation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2665
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
  2666
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2667
  // store ptr_reg as the new top value
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2668
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2669
  casx(top_ptr_reg, top_reg, ptr_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2670
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2671
  cas_under_lock(top_ptr_reg, top_reg, ptr_reg, lock_addr, use_call_vm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2672
#endif // _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2673
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2674
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2675
// [RGV] This routine does not handle 64 bit operations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2676
//       use casx_under_lock() or casx directly!!!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2677
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
  2678
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2679
  // store ptr_reg as the new top value
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2680
  if (VM_Version::v9_instructions_work()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2681
    cas(top_ptr_reg, top_reg, ptr_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2682
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2683
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2684
    // If the register is not an out nor global, it is not visible
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2685
    // after the save.  Allocate a register for it, save its
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2686
    // value in the register save area (the save may not flush
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2687
    // registers to the save area).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2688
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2689
    Register top_ptr_reg_after_save;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2690
    Register top_reg_after_save;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2691
    Register ptr_reg_after_save;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2692
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2693
    if (top_ptr_reg->is_out() || top_ptr_reg->is_global()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2694
      top_ptr_reg_after_save = top_ptr_reg->after_save();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2695
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2696
      Address reg_save_addr = top_ptr_reg->address_in_saved_window();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2697
      top_ptr_reg_after_save = L0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2698
      st(top_ptr_reg, reg_save_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2699
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2700
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2701
    if (top_reg->is_out() || top_reg->is_global()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2702
      top_reg_after_save = top_reg->after_save();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2703
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2704
      Address reg_save_addr = top_reg->address_in_saved_window();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2705
      top_reg_after_save = L1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2706
      st(top_reg, reg_save_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2707
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2708
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2709
    if (ptr_reg->is_out() || ptr_reg->is_global()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2710
      ptr_reg_after_save = ptr_reg->after_save();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2711
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2712
      Address reg_save_addr = ptr_reg->address_in_saved_window();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2713
      ptr_reg_after_save = L2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2714
      st(ptr_reg, reg_save_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2715
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2716
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2717
    const Register& lock_reg = L3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2718
    const Register& lock_ptr_reg = L4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2719
    const Register& value_reg = L5;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2720
    const Register& yield_reg = L6;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2721
    const Register& yieldall_reg = L7;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2722
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2723
    save_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2724
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2725
    if (top_ptr_reg_after_save == L0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2726
      ld(top_ptr_reg->address_in_saved_window().after_save(), top_ptr_reg_after_save);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2727
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2728
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2729
    if (top_reg_after_save == L1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2730
      ld(top_reg->address_in_saved_window().after_save(), top_reg_after_save);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2731
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2732
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2733
    if (ptr_reg_after_save == L2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2734
      ld(ptr_reg->address_in_saved_window().after_save(), ptr_reg_after_save);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2735
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2736
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2737
    Label(retry_get_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2738
    Label(not_same);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2739
    Label(dont_yield);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2740
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2741
    assert(lock_addr, "lock_address should be non null for v8");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2742
    set((intptr_t)lock_addr, lock_ptr_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2743
    // Initialize yield counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2744
    mov(G0,yield_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2745
    mov(G0, yieldall_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2746
    set(StubRoutines::Sparc::locked, lock_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2747
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2748
    bind(retry_get_lock);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2749
    cmp_and_br_short(yield_reg, V8AtomicOperationUnderLockSpinCount, Assembler::less, Assembler::pt, dont_yield);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2750
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2751
    if(use_call_vm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2752
      Untested("Need to verify global reg consistancy");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2753
      call_VM(noreg, CAST_FROM_FN_PTR(address, SharedRuntime::yield_all), yieldall_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2754
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2755
      // Save the regs and make space for a C call
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2756
      save(SP, -96, SP);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2757
      save_all_globals_into_locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2758
      call(CAST_FROM_FN_PTR(address,os::yield_all));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2759
      delayed()->mov(yieldall_reg, O0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2760
      restore_globals_from_locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2761
      restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2762
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2763
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2764
    // reset the counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2765
    mov(G0,yield_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2766
    add(yieldall_reg, 1, yieldall_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2767
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2768
    bind(dont_yield);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2769
    // try to get lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2770
    swap(lock_ptr_reg, 0, lock_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2771
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2772
    // did we get the lock?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2773
    cmp(lock_reg, StubRoutines::Sparc::unlocked);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2774
    br(Assembler::notEqual, true, Assembler::pn, retry_get_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2775
    delayed()->add(yield_reg,1,yield_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2776
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2777
    // yes, got lock.  do we have the same top?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2778
    ld(top_ptr_reg_after_save, 0, value_reg);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  2779
    cmp_and_br_short(value_reg, top_reg_after_save, Assembler::notEqual, Assembler::pn, not_same);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2780
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2781
    // yes, same top.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2782
    st(ptr_reg_after_save, top_ptr_reg_after_save, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2783
    membar(Assembler::StoreStore);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2784
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2785
    bind(not_same);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2786
    mov(value_reg, ptr_reg_after_save);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2787
    st(lock_reg, lock_ptr_reg, 0); // unlock
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2788
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2789
    restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2790
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2791
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2792
2332
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2256
diff changeset
  2793
RegisterOrConstant MacroAssembler::delayed_value_impl(intptr_t* delayed_value_addr,
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2256
diff changeset
  2794
                                                      Register tmp,
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2256
diff changeset
  2795
                                                      int offset) {
2148
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2796
  intptr_t value = *delayed_value_addr;
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2797
  if (value != 0)
2332
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2256
diff changeset
  2798
    return RegisterOrConstant(value + offset);
2148
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2799
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2800
  // load indirectly to solve generation ordering problem
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  2801
  AddressLiteral a(delayed_value_addr);
2148
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2802
  load_ptr_contents(a, tmp);
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2803
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2804
#ifdef ASSERT
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2805
  tst(tmp);
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2806
  breakpoint_trap(zero, xcc);
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2807
#endif
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2808
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2809
  if (offset != 0)
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2810
    add(tmp, offset, tmp);
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2811
2332
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2256
diff changeset
  2812
  return RegisterOrConstant(tmp);
2148
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2813
}
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2814
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 1500
diff changeset
  2815
5416
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2816
RegisterOrConstant MacroAssembler::regcon_andn_ptr(RegisterOrConstant s1, RegisterOrConstant s2, RegisterOrConstant d, Register temp) {
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2817
  assert(d.register_or_noreg() != G0, "lost side effect");
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2818
  if ((s2.is_constant() && s2.as_constant() == 0) ||
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2819
      (s2.is_register() && s2.as_register() == G0)) {
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2820
    // Do nothing, just move value.
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2821
    if (s1.is_register()) {
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2822
      if (d.is_constant())  d = temp;
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2823
      mov(s1.as_register(), d.as_register());
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2824
      return d;
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2825
    } else {
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2826
      return s1;
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2827
    }
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2828
  }
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2829
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2830
  if (s1.is_register()) {
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2831
    assert_different_registers(s1.as_register(), temp);
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2832
    if (d.is_constant())  d = temp;
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2833
    andn(s1.as_register(), ensure_simm13_or_reg(s2, temp), d.as_register());
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2834
    return d;
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2835
  } else {
5416
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2836
    if (s2.is_register()) {
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2837
      assert_different_registers(s2.as_register(), temp);
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2838
      if (d.is_constant())  d = temp;
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2839
      set(s1.as_constant(), temp);
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2840
      andn(temp, s2.as_register(), d.as_register());
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2841
      return d;
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2842
    } else {
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2843
      intptr_t res = s1.as_constant() & ~s2.as_constant();
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2844
      return res;
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2845
    }
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2846
  }
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2847
}
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2848
5416
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2849
RegisterOrConstant MacroAssembler::regcon_inc_ptr(RegisterOrConstant s1, RegisterOrConstant s2, RegisterOrConstant d, Register temp) {
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2850
  assert(d.register_or_noreg() != G0, "lost side effect");
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2851
  if ((s2.is_constant() && s2.as_constant() == 0) ||
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2852
      (s2.is_register() && s2.as_register() == G0)) {
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2853
    // Do nothing, just move value.
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2854
    if (s1.is_register()) {
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2855
      if (d.is_constant())  d = temp;
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2856
      mov(s1.as_register(), d.as_register());
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2857
      return d;
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2858
    } else {
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2859
      return s1;
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2860
    }
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2861
  }
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2862
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2863
  if (s1.is_register()) {
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2864
    assert_different_registers(s1.as_register(), temp);
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2865
    if (d.is_constant())  d = temp;
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2866
    add(s1.as_register(), ensure_simm13_or_reg(s2, temp), d.as_register());
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2867
    return d;
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2868
  } else {
5416
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2869
    if (s2.is_register()) {
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2870
      assert_different_registers(s2.as_register(), temp);
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2871
      if (d.is_constant())  d = temp;
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2872
      add(s2.as_register(), ensure_simm13_or_reg(s1, temp), d.as_register());
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2873
      return d;
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2874
    } else {
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2875
      intptr_t res = s1.as_constant() + s2.as_constant();
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2876
      return res;
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2877
    }
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2878
  }
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2879
}
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2880
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2881
RegisterOrConstant MacroAssembler::regcon_sll_ptr(RegisterOrConstant s1, RegisterOrConstant s2, RegisterOrConstant d, Register temp) {
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2882
  assert(d.register_or_noreg() != G0, "lost side effect");
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2883
  if (!is_simm13(s2.constant_or_zero()))
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2884
    s2 = (s2.as_constant() & 0xFF);
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2885
  if ((s2.is_constant() && s2.as_constant() == 0) ||
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2886
      (s2.is_register() && s2.as_register() == G0)) {
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2887
    // Do nothing, just move value.
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2888
    if (s1.is_register()) {
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2889
      if (d.is_constant())  d = temp;
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2890
      mov(s1.as_register(), d.as_register());
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2891
      return d;
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2892
    } else {
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2893
      return s1;
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2894
    }
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2895
  }
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2896
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2897
  if (s1.is_register()) {
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2898
    assert_different_registers(s1.as_register(), temp);
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2899
    if (d.is_constant())  d = temp;
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2900
    sll_ptr(s1.as_register(), ensure_simm13_or_reg(s2, temp), d.as_register());
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2901
    return d;
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2902
  } else {
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2903
    if (s2.is_register()) {
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2904
      assert_different_registers(s2.as_register(), temp);
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2905
      if (d.is_constant())  d = temp;
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2906
      set(s1.as_constant(), temp);
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2907
      sll_ptr(temp, s2.as_register(), d.as_register());
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2908
      return d;
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2909
    } else {
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2910
      intptr_t res = s1.as_constant() << s2.as_constant();
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2911
      return res;
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2912
    }
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2913
  }
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2914
}
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2915
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2916
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2917
// 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
  2918
// 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
  2919
// The receiver klass is in recv_klass.
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2920
// 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
  2921
// On failure, execution transfers to the given label.
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2922
void MacroAssembler::lookup_interface_method(Register recv_klass,
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2923
                                             Register intf_klass,
2332
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2256
diff changeset
  2924
                                             RegisterOrConstant itable_index,
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2925
                                             Register method_result,
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2926
                                             Register scan_temp,
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2927
                                             Register sethi_temp,
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2928
                                             Label& L_no_such_interface) {
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2929
  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
  2930
  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
  2931
         "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
  2932
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2933
  // 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
  2934
  int vtable_base = instanceKlass::vtable_start_offset() * wordSize;
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2935
  int scan_step   = itableOffsetEntry::size() * wordSize;
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2936
  int vte_size    = vtableEntry::size() * wordSize;
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2937
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2938
  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
  2939
  // %%% 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
  2940
  // Then the next several instructions would fold away.
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2941
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2942
  int round_to_unit = ((HeapWordsPerLong > 1) ? BytesPerLong : 0);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2943
  int itb_offset = vtable_base;
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2944
  if (round_to_unit != 0) {
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2945
    // 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
  2946
    itb_offset += round_to_unit - wordSize;
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2947
  }
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2948
  int itb_scale = exact_log2(vtableEntry::size() * wordSize);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2949
  sll(scan_temp, itb_scale,  scan_temp);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2950
  add(scan_temp, itb_offset, scan_temp);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2951
  if (round_to_unit != 0) {
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2952
    // Round up to align_object_offset boundary
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2953
    // see code for instanceKlass::start_of_itable!
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2954
    // Was: round_to(scan_temp, BytesPerLong);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2955
    // Hoisted: add(scan_temp, BytesPerLong-1, scan_temp);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2956
    and3(scan_temp, -round_to_unit, scan_temp);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2957
  }
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2958
  add(recv_klass, scan_temp, scan_temp);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2959
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2960
  // Adjust recv_klass by scaled itable_index, so we can free itable_index.
2332
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2256
diff changeset
  2961
  RegisterOrConstant itable_offset = itable_index;
5416
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2962
  itable_offset = regcon_sll_ptr(itable_index, exact_log2(itableMethodEntry::size() * wordSize), itable_offset);
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  2963
  itable_offset = regcon_inc_ptr(itable_offset, itableMethodEntry::method_offset_in_bytes(), itable_offset);
4009
8731c367fa98 6879902: CTW failure jdk6_18/hotspot/src/cpu/sparc/vm/assembler_sparc.hpp:845
twisti
parents: 3905
diff changeset
  2964
  add(recv_klass, ensure_simm13_or_reg(itable_offset, sethi_temp), recv_klass);
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2965
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2966
  // 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
  2967
  //   if (scan->interface() == intf) {
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2968
  //     result = (klass + scan->offset() + itable_index);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2969
  //   }
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2970
  // }
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2971
  Label search, found_method;
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2972
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2973
  for (int peel = 1; peel >= 0; peel--) {
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2974
    // %%%% 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
  2975
    // 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
  2976
    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
  2977
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2978
    // 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
  2979
    // 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
  2980
    // same as when the caller was compiled.
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2981
    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
  2982
    delayed()->cmp(method_result, intf_klass);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2983
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2984
    if (peel) {
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2985
      brx(Assembler::equal,    false, Assembler::pt, found_method);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2986
    } else {
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2987
      brx(Assembler::notEqual, false, Assembler::pn, search);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2988
      // (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
  2989
    }
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2990
    delayed()->add(scan_temp, scan_step, scan_temp);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2991
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2992
    if (!peel)  break;
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2993
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2994
    bind(search);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2995
  }
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2996
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2997
  bind(found_method);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2998
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  2999
  // Got a hit.
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3000
  int ito_offset = itableOffsetEntry::offset_offset_in_bytes();
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3001
  // 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
  3002
  ito_offset -= scan_step;
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3003
  lduw(scan_temp, ito_offset, scan_temp);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3004
  ld_ptr(recv_klass, scan_temp, method_result);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3005
}
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3006
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3007
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3008
// virtual method calling
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3009
void MacroAssembler::lookup_virtual_method(Register recv_klass,
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3010
                                           RegisterOrConstant vtable_index,
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3011
                                           Register method_result) {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3012
  assert_different_registers(recv_klass, method_result, vtable_index.register_or_noreg());
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3013
  Register sethi_temp = method_result;
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3014
  const int base = (instanceKlass::vtable_start_offset() * wordSize +
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3015
                    // method pointer offset within the vtable entry:
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3016
                    vtableEntry::method_offset_in_bytes());
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3017
  RegisterOrConstant vtable_offset = vtable_index;
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3018
  // Each of the following three lines potentially generates an instruction.
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3019
  // But the total number of address formation instructions will always be
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3020
  // at most two, and will often be zero.  In any case, it will be optimal.
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3021
  // If vtable_index is a register, we will have (sll_ptr N,x; inc_ptr B,x; ld_ptr k,x).
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3022
  // If vtable_index is a constant, we will have at most (set B+X<<N,t; ld_ptr k,t).
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3023
  vtable_offset = regcon_sll_ptr(vtable_index, exact_log2(vtableEntry::size() * wordSize), vtable_offset);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3024
  vtable_offset = regcon_inc_ptr(vtable_offset, base, vtable_offset, sethi_temp);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3025
  Address vtable_entry_addr(recv_klass, ensure_simm13_or_reg(vtable_offset, sethi_temp));
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3026
  ld_ptr(vtable_entry_addr, method_result);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3027
}
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3028
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3029
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3030
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
  3031
                                         Register super_klass,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3032
                                         Register temp_reg,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3033
                                         Register temp2_reg,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3034
                                         Label& L_success) {
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3035
  Register sub_2 = sub_klass;
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3036
  Register sup_2 = super_klass;
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3037
  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
  3038
  if (!sup_2->is_global())  sup_2 = L1;
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3039
  bool did_save = false;
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3040
  if (temp_reg == noreg || temp2_reg == noreg) {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3041
    temp_reg = L2;
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3042
    temp2_reg = L3;
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3043
    save_frame_and_mov(0, sub_klass, sub_2, super_klass, sup_2);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3044
    sub_klass = sub_2;
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3045
    super_klass = sup_2;
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3046
    did_save = true;
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3047
  }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3048
  Label L_failure, L_pop_to_failure, L_pop_to_success;
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3049
  check_klass_subtype_fast_path(sub_klass, super_klass,
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3050
                                temp_reg, temp2_reg,
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3051
                                (did_save ? &L_pop_to_success : &L_success),
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3052
                                (did_save ? &L_pop_to_failure : &L_failure), NULL);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3053
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3054
  if (!did_save)
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3055
    save_frame_and_mov(0, sub_klass, sub_2, super_klass, sup_2);
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3056
  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
  3057
                                L2, L3, L4, L5,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3058
                                NULL, &L_pop_to_failure);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3059
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3060
  // on success:
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3061
  bind(L_pop_to_success);
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3062
  restore();
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3063
  ba_short(L_success);
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3064
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3065
  // on failure:
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3066
  bind(L_pop_to_failure);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3067
  restore();
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3068
  bind(L_failure);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3069
}
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3070
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3071
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3072
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
  3073
                                                   Register super_klass,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3074
                                                   Register temp_reg,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3075
                                                   Register temp2_reg,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3076
                                                   Label* L_success,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3077
                                                   Label* L_failure,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3078
                                                   Label* L_slow_path,
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3079
                                        RegisterOrConstant super_check_offset) {
11430
718fc06da49a 7118863: Move sizeof(klassOopDesc) into the *Klass::*_offset_in_bytes() functions
stefank
parents: 10546
diff changeset
  3080
  int sc_offset = in_bytes(Klass::secondary_super_cache_offset());
718fc06da49a 7118863: Move sizeof(klassOopDesc) into the *Klass::*_offset_in_bytes() functions
stefank
parents: 10546
diff changeset
  3081
  int sco_offset = in_bytes(Klass::super_check_offset_offset());
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3082
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3083
  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
  3084
  bool need_slow_path = (must_load_sco ||
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3085
                         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
  3086
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3087
  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
  3088
  if (super_check_offset.is_register()) {
5416
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  3089
    assert_different_registers(sub_klass, super_klass, temp_reg,
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3090
                               super_check_offset.as_register());
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3091
  } else if (must_load_sco) {
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3092
    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
  3093
  }
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3094
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3095
  Label L_fallthrough;
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3096
  int label_nulls = 0;
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3097
  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
  3098
  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
  3099
  if (L_slow_path == NULL) { L_slow_path = &L_fallthrough; label_nulls++; }
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3100
  assert(label_nulls <= 1 ||
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3101
         (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
  3102
         "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
  3103
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3104
  // 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
  3105
  // 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
  3106
  // 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
  3107
  // type would need its own customized SSA.
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3108
  // 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
  3109
  // 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
  3110
  // 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
  3111
  cmp(super_klass, sub_klass);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3112
  brx(Assembler::equal, false, Assembler::pn, *L_success);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3113
  delayed()->nop();
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3114
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3115
  // Check the supertype display:
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3116
  if (must_load_sco) {
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3117
    // The super check offset is always positive...
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3118
    lduw(super_klass, sco_offset, temp2_reg);
2332
5c7b6f4ce0a1 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 2256
diff changeset
  3119
    super_check_offset = RegisterOrConstant(temp2_reg);
5416
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  3120
    // super_check_offset is register.
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  3121
    assert_different_registers(sub_klass, super_klass, temp_reg, super_check_offset.as_register());
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3122
  }
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3123
  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
  3124
  cmp(super_klass, temp_reg);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3125
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3126
  // 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
  3127
  // 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
  3128
  // (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
  3129
  // 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
  3130
  // 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
  3131
  // (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
  3132
  // 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
  3133
  // what we need immediately.
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3134
  // 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
  3135
  // 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
  3136
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3137
  // Hacked ba(), which may only be used just before L_fallthrough.
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3138
#define FINAL_JUMP(label)            \
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3139
  if (&(label) != &L_fallthrough) {  \
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3140
    ba(label);  delayed()->nop();    \
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3141
  }
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3142
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3143
  if (super_check_offset.is_register()) {
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3144
    brx(Assembler::equal, false, Assembler::pn, *L_success);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3145
    delayed()->cmp(super_check_offset.as_register(), sc_offset);
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3146
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3147
    if (L_failure == &L_fallthrough) {
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3148
      brx(Assembler::equal, false, Assembler::pt, *L_slow_path);
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3149
      delayed()->nop();
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3150
    } else {
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3151
      brx(Assembler::notEqual, false, Assembler::pn, *L_failure);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3152
      delayed()->nop();
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3153
      FINAL_JUMP(*L_slow_path);
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3154
    }
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3155
  } 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
  3156
    // 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
  3157
    if (L_slow_path == &L_fallthrough) {
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3158
      brx(Assembler::equal, false, Assembler::pt, *L_success);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3159
      delayed()->nop();
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3160
    } else {
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3161
      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
  3162
      delayed()->nop();
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3163
      FINAL_JUMP(*L_success);
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3164
    }
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3165
  } else {
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3166
    // 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
  3167
    if (L_failure == &L_fallthrough) {
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3168
      brx(Assembler::equal, false, Assembler::pt, *L_success);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3169
      delayed()->nop();
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3170
    } else {
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3171
      brx(Assembler::notEqual, false, Assembler::pn, *L_failure);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3172
      delayed()->nop();
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3173
      FINAL_JUMP(*L_success);
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3174
    }
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3175
  }
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3176
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3177
  bind(L_fallthrough);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3178
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3179
#undef FINAL_JUMP
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3180
}
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3181
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3182
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3183
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
  3184
                                                   Register super_klass,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3185
                                                   Register count_temp,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3186
                                                   Register scan_temp,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3187
                                                   Register scratch_reg,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3188
                                                   Register coop_reg,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3189
                                                   Label* L_success,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3190
                                                   Label* L_failure) {
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3191
  assert_different_registers(sub_klass, super_klass,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3192
                             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
  3193
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3194
  Label L_fallthrough, L_loop;
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3195
  int label_nulls = 0;
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3196
  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
  3197
  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
  3198
  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
  3199
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3200
  // a couple of useful fields in sub_klass:
11430
718fc06da49a 7118863: Move sizeof(klassOopDesc) into the *Klass::*_offset_in_bytes() functions
stefank
parents: 10546
diff changeset
  3201
  int ss_offset = in_bytes(Klass::secondary_supers_offset());
718fc06da49a 7118863: Move sizeof(klassOopDesc) into the *Klass::*_offset_in_bytes() functions
stefank
parents: 10546
diff changeset
  3202
  int sc_offset = in_bytes(Klass::secondary_super_cache_offset());
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3203
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3204
  // 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
  3205
  // 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
  3206
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3207
#ifndef PRODUCT
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3208
  int* pst_counter = &SharedRuntime::_partial_subtype_ctr;
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3209
  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
  3210
#endif
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3211
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3212
  // We will consult the secondary-super array.
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3213
  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
  3214
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3215
  // Compress superclass if necessary.
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3216
  Register search_key = super_klass;
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3217
  bool decode_super_klass = false;
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3218
  if (UseCompressedOops) {
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3219
    if (coop_reg != noreg) {
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3220
      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
  3221
      search_key = coop_reg;
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3222
    } else {
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3223
      encode_heap_oop_not_null(super_klass);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3224
      decode_super_klass = true; // scarce temps!
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3225
    }
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3226
    // 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
  3227
    // 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
  3228
    // 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
  3229
    // 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
  3230
  }
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3231
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3232
  // 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
  3233
  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
  3234
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3235
  // Check for empty secondary super list
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3236
  tst(count_temp);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3237
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3238
  // Top of search loop
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3239
  bind(L_loop);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3240
  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
  3241
  delayed()->add(scan_temp, heapOopSize, scan_temp);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3242
  assert(heapOopSize != 0, "heapOopSize should be initialized");
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3243
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3244
  // 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
  3245
  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
  3246
  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
  3247
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3248
  // Load next super to check
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3249
  if (UseCompressedOops) {
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3250
    // 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
  3251
    lduw(   scan_temp, elem_offset, scratch_reg );
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3252
  } else {
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3253
    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
  3254
  }
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3255
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3256
  // 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
  3257
  cmp(scratch_reg, search_key);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3258
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3259
  // 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
  3260
  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
  3261
  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
  3262
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3263
  // 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
  3264
  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
  3265
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3266
  // 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
  3267
  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
  3268
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3269
  if (L_success != &L_fallthrough) {
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3270
    ba(*L_success);
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3271
    delayed()->nop();
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3272
  }
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3273
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3274
  bind(L_fallthrough);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3275
}
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3276
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 2254
diff changeset
  3277
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2347
diff changeset
  3278
RegisterOrConstant MacroAssembler::argument_offset(RegisterOrConstant arg_slot,
9976
6fef34e63df1 7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents: 9176
diff changeset
  3279
                                                   Register temp_reg,
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2347
diff changeset
  3280
                                                   int extra_slot_offset) {
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2347
diff changeset
  3281
  // cf. TemplateTable::prepare_invoke(), if (load_receiver).
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5416
diff changeset
  3282
  int stackElementSize = Interpreter::stackElementSize;
5416
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  3283
  int offset = extra_slot_offset * stackElementSize;
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2347
diff changeset
  3284
  if (arg_slot.is_constant()) {
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2347
diff changeset
  3285
    offset += arg_slot.as_constant() * stackElementSize;
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2347
diff changeset
  3286
    return offset;
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2347
diff changeset
  3287
  } else {
9976
6fef34e63df1 7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents: 9176
diff changeset
  3288
    assert(temp_reg != noreg, "must specify");
6fef34e63df1 7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents: 9176
diff changeset
  3289
    sll_ptr(arg_slot.as_register(), exact_log2(stackElementSize), temp_reg);
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2347
diff changeset
  3290
    if (offset != 0)
9976
6fef34e63df1 7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents: 9176
diff changeset
  3291
      add(temp_reg, offset, temp_reg);
6fef34e63df1 7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents: 9176
diff changeset
  3292
    return temp_reg;
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2347
diff changeset
  3293
  }
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2347
diff changeset
  3294
}
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2347
diff changeset
  3295
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2347
diff changeset
  3296
5416
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  3297
Address MacroAssembler::argument_address(RegisterOrConstant arg_slot,
9976
6fef34e63df1 7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents: 9176
diff changeset
  3298
                                         Register temp_reg,
5416
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  3299
                                         int extra_slot_offset) {
9976
6fef34e63df1 7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents: 9176
diff changeset
  3300
  return Address(Gargs, argument_offset(arg_slot, temp_reg, extra_slot_offset));
5416
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  3301
}
5f6377fcfd3e 6829193: JSR 292 needs to support SPARC
twisti
parents: 4009
diff changeset
  3302
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2347
diff changeset
  3303
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1388
diff changeset
  3304
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
  3305
                                          Register temp_reg,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3306
                                          Label& done, Label* slow_case,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3307
                                          BiasedLockingCounters* counters) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3308
  assert(UseBiasedLocking, "why call this otherwise?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3309
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3310
  if (PrintBiasedLockingStatistics) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3311
    assert_different_registers(obj_reg, mark_reg, temp_reg, O7);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3312
    if (counters == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3313
      counters = BiasedLocking::counters();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3314
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3315
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3316
  Label cas_label;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3317
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3318
  // Biased locking
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3319
  // See whether the lock is currently biased toward our thread and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3320
  // whether the epoch is still valid
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3321
  // Note that the runtime guarantees sufficient alignment of JavaThread
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3322
  // pointers to allow age to be placed into low bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3323
  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
  3324
  and3(mark_reg, markOopDesc::biased_lock_mask_in_place, temp_reg);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3325
  cmp_and_brx_short(temp_reg, markOopDesc::biased_lock_pattern, Assembler::notEqual, Assembler::pn, cas_label);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  3326
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  3327
  load_klass(obj_reg, temp_reg);
11430
718fc06da49a 7118863: Move sizeof(klassOopDesc) into the *Klass::*_offset_in_bytes() functions
stefank
parents: 10546
diff changeset
  3328
  ld_ptr(Address(temp_reg, Klass::prototype_header_offset()), temp_reg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3329
  or3(G2_thread, temp_reg, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3330
  xor3(mark_reg, temp_reg, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3331
  andcc(temp_reg, ~((int) markOopDesc::age_mask_in_place), temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3332
  if (counters != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3333
    cond_inc(Assembler::equal, (address) counters->biased_lock_entry_count_addr(), mark_reg, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3334
    // Reload mark_reg as we may need it later
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  3335
    ld_ptr(Address(obj_reg, oopDesc::mark_offset_in_bytes()), mark_reg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3336
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3337
  brx(Assembler::equal, true, Assembler::pt, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3338
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3339
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3340
  Label try_revoke_bias;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3341
  Label try_rebias;
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  3342
  Address mark_addr = Address(obj_reg, oopDesc::mark_offset_in_bytes());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3343
  assert(mark_addr.disp() == 0, "cas must take a zero displacement");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3344
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3345
  // At this point we know that the header has the bias pattern and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3346
  // that we are not the bias owner in the current epoch. We need to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3347
  // figure out more details about the state of the header in order to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3348
  // know what operations can be legally performed on the object's
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3349
  // header.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3350
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3351
  // If the low three bits in the xor result aren't clear, that means
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3352
  // the prototype header is no longer biased and we have to revoke
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3353
  // the bias on this object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3354
  btst(markOopDesc::biased_lock_mask_in_place, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3355
  brx(Assembler::notZero, false, Assembler::pn, try_revoke_bias);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3356
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3357
  // Biasing is still enabled for this data type. See whether the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3358
  // epoch of the current bias is still valid, meaning that the epoch
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3359
  // bits of the mark word are equal to the epoch bits of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3360
  // prototype header. (Note that the prototype header's epoch bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3361
  // only change at a safepoint.) If not, attempt to rebias the object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3362
  // toward the current thread. Note that we must be absolutely sure
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3363
  // that the current epoch is invalid in order to do this because
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3364
  // otherwise the manipulations it performs on the mark word are
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3365
  // illegal.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3366
  delayed()->btst(markOopDesc::epoch_mask_in_place, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3367
  brx(Assembler::notZero, false, Assembler::pn, try_rebias);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3368
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3369
  // The epoch of the current bias is still valid but we know nothing
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3370
  // about the owner; it might be set or it might be clear. Try to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3371
  // acquire the bias of the object using an atomic operation. If this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3372
  // fails we will go in to the runtime to revoke the object's bias.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3373
  // Note that we first construct the presumed unbiased header so we
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3374
  // don't accidentally blow away another thread's valid bias.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3375
  delayed()->and3(mark_reg,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3376
                  markOopDesc::biased_lock_mask_in_place | markOopDesc::age_mask_in_place | markOopDesc::epoch_mask_in_place,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3377
                  mark_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3378
  or3(G2_thread, mark_reg, temp_reg);
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1388
diff changeset
  3379
  casn(mark_addr.base(), mark_reg, temp_reg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3380
  // If the biasing toward our thread failed, this means that
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3381
  // another thread succeeded in biasing it toward itself and we
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3382
  // need to revoke that bias. The revocation will occur in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3383
  // interpreter runtime in the slow case.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3384
  cmp(mark_reg, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3385
  if (counters != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3386
    cond_inc(Assembler::zero, (address) counters->anonymously_biased_lock_entry_count_addr(), mark_reg, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3387
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3388
  if (slow_case != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3389
    brx(Assembler::notEqual, true, Assembler::pn, *slow_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3390
    delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3391
  }
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3392
  ba_short(done);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3393
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3394
  bind(try_rebias);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3395
  // At this point we know the epoch has expired, meaning that the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3396
  // current "bias owner", if any, is actually invalid. Under these
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3397
  // circumstances _only_, we are allowed to use the current header's
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3398
  // value as the comparison value when doing the cas to acquire the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3399
  // bias in the current epoch. In other words, we allow transfer of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3400
  // the bias from one thread to another directly in this situation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3401
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3402
  // FIXME: due to a lack of registers we currently blow away the age
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3403
  // 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
  3404
  load_klass(obj_reg, temp_reg);
11430
718fc06da49a 7118863: Move sizeof(klassOopDesc) into the *Klass::*_offset_in_bytes() functions
stefank
parents: 10546
diff changeset
  3405
  ld_ptr(Address(temp_reg, Klass::prototype_header_offset()), temp_reg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3406
  or3(G2_thread, temp_reg, temp_reg);
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1388
diff changeset
  3407
  casn(mark_addr.base(), mark_reg, temp_reg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3408
  // If the biasing toward our thread failed, this means that
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3409
  // another thread succeeded in biasing it toward itself and we
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3410
  // need to revoke that bias. The revocation will occur in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3411
  // interpreter runtime in the slow case.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3412
  cmp(mark_reg, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3413
  if (counters != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3414
    cond_inc(Assembler::zero, (address) counters->rebiased_lock_entry_count_addr(), mark_reg, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3415
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3416
  if (slow_case != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3417
    brx(Assembler::notEqual, true, Assembler::pn, *slow_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3418
    delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3419
  }
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3420
  ba_short(done);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3421
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3422
  bind(try_revoke_bias);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3423
  // The prototype mark in the klass doesn't have the bias bit set any
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3424
  // more, indicating that objects of this data type are not supposed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3425
  // to be biased any more. We are going to try to reset the mark of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3426
  // this object to the prototype value and fall through to the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3427
  // CAS-based locking scheme. Note that if our CAS fails, it means
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3428
  // that another thread raced us for the privilege of revoking the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3429
  // bias of this particular object, so it's okay to continue in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3430
  // normal locking code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3431
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3432
  // FIXME: due to a lack of registers we currently blow away the age
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3433
  // 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
  3434
  load_klass(obj_reg, temp_reg);
11430
718fc06da49a 7118863: Move sizeof(klassOopDesc) into the *Klass::*_offset_in_bytes() functions
stefank
parents: 10546
diff changeset
  3435
  ld_ptr(Address(temp_reg, Klass::prototype_header_offset()), temp_reg);
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1388
diff changeset
  3436
  casn(mark_addr.base(), mark_reg, temp_reg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3437
  // Fall through to the normal CAS-based lock, because no matter what
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3438
  // the result of the above CAS, some thread must have succeeded in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3439
  // removing the bias bit from the object's header.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3440
  if (counters != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3441
    cmp(mark_reg, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3442
    cond_inc(Assembler::zero, (address) counters->revoked_lock_entry_count_addr(), mark_reg, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3443
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3444
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3445
  bind(cas_label);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3446
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3447
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3448
void MacroAssembler::biased_locking_exit (Address mark_addr, Register temp_reg, Label& done,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3449
                                          bool allow_delay_slot_filling) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3450
  // Check for biased locking unlock case, which is a no-op
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3451
  // Note: we do not have to check the thread ID for two reasons.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3452
  // First, the interpreter checks for IllegalMonitorStateException at
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3453
  // a higher level. Second, if the bias was revoked while we held the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3454
  // lock, the object could not be rebiased toward another thread, so
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3455
  // the bias bit would be clear.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3456
  ld_ptr(mark_addr, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3457
  and3(temp_reg, markOopDesc::biased_lock_mask_in_place, temp_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3458
  cmp(temp_reg, markOopDesc::biased_lock_pattern);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3459
  brx(Assembler::equal, allow_delay_slot_filling, Assembler::pt, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3460
  delayed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3461
  if (!allow_delay_slot_filling) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3462
    nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3463
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3464
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3465
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3466
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3467
// CASN -- 32-64 bit switch hitter similar to the synthetic CASN provided by
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3468
// Solaris/SPARC's "as".  Another apt name would be cas_ptr()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3469
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3470
void MacroAssembler::casn (Register addr_reg, Register cmp_reg, Register set_reg ) {
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3471
  casx_under_lock (addr_reg, cmp_reg, set_reg, (address)StubRoutines::Sparc::atomic_memory_operation_lock_addr());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3472
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3473
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3474
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3475
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3476
// compiler_lock_object() and compiler_unlock_object() are direct transliterations
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3477
// of i486.ad fast_lock() and fast_unlock().  See those methods for detailed comments.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3478
// The code could be tightened up considerably.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3479
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3480
// box->dhw disposition - post-conditions at DONE_LABEL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3481
// -   Successful inflated lock:  box->dhw != 0.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3482
//     Any non-zero value suffices.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3483
//     Consider G2_thread, rsp, boxReg, or unused_mark()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3484
// -   Successful Stack-lock: box->dhw == mark.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3485
//     box->dhw must contain the displaced mark word value
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3486
// -   Failure -- icc.ZFlag == 0 and box->dhw is undefined.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3487
//     The slow-path fast_enter() and slow_enter() operators
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3488
//     are responsible for setting box->dhw = NonZero (typically ::unused_mark).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3489
// -   Biased: box->dhw is undefined
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3490
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3491
// SPARC refworkload performance - specifically jetstream and scimark - are
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3492
// extremely sensitive to the size of the code emitted by compiler_lock_object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3493
// and compiler_unlock_object.  Critically, the key factor is code size, not path
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3494
// length.  (Simply experiments to pad CLO with unexecuted NOPs demonstrte the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3495
// effect).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3496
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3497
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1388
diff changeset
  3498
void MacroAssembler::compiler_lock_object(Register Roop, Register Rmark,
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1388
diff changeset
  3499
                                          Register Rbox, Register Rscratch,
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1388
diff changeset
  3500
                                          BiasedLockingCounters* counters,
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1388
diff changeset
  3501
                                          bool try_bias) {
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  3502
   Address mark_addr(Roop, oopDesc::mark_offset_in_bytes());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3503
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3504
   verify_oop(Roop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3505
   Label done ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3506
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3507
   if (counters != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3508
     inc_counter((address) counters->total_entry_count_addr(), Rmark, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3509
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3510
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3511
   if (EmitSync & 1) {
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3512
     mov(3, Rscratch);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3513
     st_ptr(Rscratch, Rbox, BasicLock::displaced_header_offset_in_bytes());
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3514
     cmp(SP, G0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3515
     return ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3516
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3517
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3518
   if (EmitSync & 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3519
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3520
     // Fetch object's markword
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3521
     ld_ptr(mark_addr, Rmark);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3522
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1388
diff changeset
  3523
     if (try_bias) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3524
        biased_locking_enter(Roop, Rmark, Rscratch, done, NULL, counters);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3525
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3526
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3527
     // Save Rbox in Rscratch to be used for the cas operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3528
     mov(Rbox, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3529
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3530
     // set Rmark to markOop | markOopDesc::unlocked_value
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3531
     or3(Rmark, markOopDesc::unlocked_value, Rmark);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3532
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3533
     // Initialize the box.  (Must happen before we update the object mark!)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3534
     st_ptr(Rmark, Rbox, BasicLock::displaced_header_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3535
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3536
     // compare object markOop with Rmark and if equal exchange Rscratch with object markOop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3537
     assert(mark_addr.disp() == 0, "cas must take a zero displacement");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3538
     casx_under_lock(mark_addr.base(), Rmark, Rscratch,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3539
        (address)StubRoutines::Sparc::atomic_memory_operation_lock_addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3540
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3541
     // if compare/exchange succeeded we found an unlocked object and we now have locked it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3542
     // hence we are done
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3543
     cmp(Rmark, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3544
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3545
     sub(Rscratch, STACK_BIAS, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3546
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3547
     brx(Assembler::equal, false, Assembler::pt, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3548
     delayed()->sub(Rscratch, SP, Rscratch);  //pull next instruction into delay slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3549
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3550
     // we did not find an unlocked object so see if this is a recursive case
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3551
     // sub(Rscratch, SP, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3552
     assert(os::vm_page_size() > 0xfff, "page size too small - change the constant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3553
     andcc(Rscratch, 0xfffff003, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3554
     st_ptr(Rscratch, Rbox, BasicLock::displaced_header_offset_in_bytes());
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3555
     bind (done);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3556
     return ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3557
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3558
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3559
   Label Egress ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3560
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3561
   if (EmitSync & 256) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3562
      Label IsInflated ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3563
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3564
      ld_ptr(mark_addr, Rmark);           // fetch obj->mark
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3565
      // Triage: biased, stack-locked, neutral, inflated
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1388
diff changeset
  3566
      if (try_bias) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3567
        biased_locking_enter(Roop, Rmark, Rscratch, done, NULL, counters);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3568
        // Invariant: if control reaches this point in the emitted stream
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3569
        // then Rmark has not been modified.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3570
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3571
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3572
      // Store mark into displaced mark field in the on-stack basic-lock "box"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3573
      // Critically, this must happen before the CAS
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3574
      // Maximize the ST-CAS distance to minimize the ST-before-CAS penalty.
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3575
      st_ptr(Rmark, Rbox, BasicLock::displaced_header_offset_in_bytes());
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3576
      andcc(Rmark, 2, G0);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3577
      brx(Assembler::notZero, false, Assembler::pn, IsInflated);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3578
      delayed()->
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3579
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3580
      // Try stack-lock acquisition.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3581
      // Beware: the 1st instruction is in a delay slot
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3582
      mov(Rbox,  Rscratch);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3583
      or3(Rmark, markOopDesc::unlocked_value, Rmark);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3584
      assert(mark_addr.disp() == 0, "cas must take a zero displacement");
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3585
      casn(mark_addr.base(), Rmark, Rscratch);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3586
      cmp(Rmark, Rscratch);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3587
      brx(Assembler::equal, false, Assembler::pt, done);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3588
      delayed()->sub(Rscratch, SP, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3589
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3590
      // Stack-lock attempt failed - check for recursive stack-lock.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3591
      // See the comments below about how we might remove this case.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3592
#ifdef _LP64
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3593
      sub(Rscratch, STACK_BIAS, Rscratch);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3594
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3595
      assert(os::vm_page_size() > 0xfff, "page size too small - change the constant");
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3596
      andcc(Rscratch, 0xfffff003, Rscratch);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3597
      br(Assembler::always, false, Assembler::pt, done);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3598
      delayed()-> st_ptr(Rscratch, Rbox, BasicLock::displaced_header_offset_in_bytes());
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3599
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3600
      bind(IsInflated);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3601
      if (EmitSync & 64) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3602
         // If m->owner != null goto IsLocked
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3603
         // Pessimistic form: Test-and-CAS vs CAS
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3604
         // The optimistic form avoids RTS->RTO cache line upgrades.
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3605
         ld_ptr(Rmark, ObjectMonitor::owner_offset_in_bytes() - 2, Rscratch);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3606
         andcc(Rscratch, Rscratch, G0);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3607
         brx(Assembler::notZero, false, Assembler::pn, done);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3608
         delayed()->nop();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3609
         // m->owner == null : it's unlocked.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3610
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3611
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3612
      // Try to CAS m->owner from null to Self
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3613
      // Invariant: if we acquire the lock then _recursions should be 0.
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3614
      add(Rmark, ObjectMonitor::owner_offset_in_bytes()-2, Rmark);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3615
      mov(G2_thread, Rscratch);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3616
      casn(Rmark, G0, Rscratch);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3617
      cmp(Rscratch, G0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3618
      // Intentional fall-through into done
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3619
   } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3620
      // Aggressively avoid the Store-before-CAS penalty
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3621
      // Defer the store into box->dhw until after the CAS
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3622
      Label IsInflated, Recursive ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3623
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3624
// Anticipate CAS -- Avoid RTS->RTO upgrade
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3625
// prefetch (mark_addr, Assembler::severalWritesAndPossiblyReads);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3626
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3627
      ld_ptr(mark_addr, Rmark);           // fetch obj->mark
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3628
      // Triage: biased, stack-locked, neutral, inflated
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3629
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1388
diff changeset
  3630
      if (try_bias) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3631
        biased_locking_enter(Roop, Rmark, Rscratch, done, NULL, counters);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3632
        // Invariant: if control reaches this point in the emitted stream
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3633
        // then Rmark has not been modified.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3634
      }
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3635
      andcc(Rmark, 2, G0);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3636
      brx(Assembler::notZero, false, Assembler::pn, IsInflated);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3637
      delayed()->                         // Beware - dangling delay-slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3638
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3639
      // Try stack-lock acquisition.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3640
      // Transiently install BUSY (0) encoding in the mark word.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3641
      // if the CAS of 0 into the mark was successful then we execute:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3642
      //   ST box->dhw  = mark   -- save fetched mark in on-stack basiclock box
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3643
      //   ST obj->mark = box    -- overwrite transient 0 value
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3644
      // This presumes TSO, of course.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3645
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3646
      mov(0, Rscratch);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3647
      or3(Rmark, markOopDesc::unlocked_value, Rmark);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3648
      assert(mark_addr.disp() == 0, "cas must take a zero displacement");
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3649
      casn(mark_addr.base(), Rmark, Rscratch);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3650
// prefetch (mark_addr, Assembler::severalWritesAndPossiblyReads);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3651
      cmp(Rscratch, Rmark);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3652
      brx(Assembler::notZero, false, Assembler::pn, Recursive);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3653
      delayed()->st_ptr(Rmark, Rbox, BasicLock::displaced_header_offset_in_bytes());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3654
      if (counters != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3655
        cond_inc(Assembler::equal, (address) counters->fast_path_entry_count_addr(), Rmark, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3656
      }
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3657
      ba(done);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3658
      delayed()->st_ptr(Rbox, mark_addr);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3659
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3660
      bind(Recursive);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3661
      // Stack-lock attempt failed - check for recursive stack-lock.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3662
      // Tests show that we can remove the recursive case with no impact
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3663
      // on refworkload 0.83.  If we need to reduce the size of the code
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3664
      // emitted by compiler_lock_object() the recursive case is perfect
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3665
      // candidate.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3666
      //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3667
      // A more extreme idea is to always inflate on stack-lock recursion.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3668
      // This lets us eliminate the recursive checks in compiler_lock_object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3669
      // and compiler_unlock_object and the (box->dhw == 0) encoding.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3670
      // A brief experiment - requiring changes to synchronizer.cpp, interpreter,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3671
      // and showed a performance *increase*.  In the same experiment I eliminated
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3672
      // the fast-path stack-lock code from the interpreter and always passed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3673
      // control to the "slow" operators in synchronizer.cpp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3674
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3675
      // RScratch contains the fetched obj->mark value from the failed CASN.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3676
#ifdef _LP64
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3677
      sub(Rscratch, STACK_BIAS, Rscratch);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3678
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3679
      sub(Rscratch, SP, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3680
      assert(os::vm_page_size() > 0xfff, "page size too small - change the constant");
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3681
      andcc(Rscratch, 0xfffff003, Rscratch);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3682
      if (counters != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3683
        // Accounting needs the Rscratch register
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3684
        st_ptr(Rscratch, Rbox, BasicLock::displaced_header_offset_in_bytes());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3685
        cond_inc(Assembler::equal, (address) counters->fast_path_entry_count_addr(), Rmark, Rscratch);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3686
        ba_short(done);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3687
      } else {
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3688
        ba(done);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3689
        delayed()->st_ptr(Rscratch, Rbox, BasicLock::displaced_header_offset_in_bytes());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3690
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3691
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3692
      bind   (IsInflated);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3693
      if (EmitSync & 64) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3694
         // If m->owner != null goto IsLocked
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3695
         // Test-and-CAS vs CAS
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3696
         // Pessimistic form avoids futile (doomed) CAS attempts
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3697
         // The optimistic form avoids RTS->RTO cache line upgrades.
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3698
         ld_ptr(Rmark, ObjectMonitor::owner_offset_in_bytes() - 2, Rscratch);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3699
         andcc(Rscratch, Rscratch, G0);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3700
         brx(Assembler::notZero, false, Assembler::pn, done);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3701
         delayed()->nop();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3702
         // m->owner == null : it's unlocked.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3703
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3704
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3705
      // Try to CAS m->owner from null to Self
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3706
      // Invariant: if we acquire the lock then _recursions should be 0.
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3707
      add(Rmark, ObjectMonitor::owner_offset_in_bytes()-2, Rmark);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3708
      mov(G2_thread, Rscratch);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3709
      casn(Rmark, G0, Rscratch);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3710
      cmp(Rscratch, G0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3711
      // ST box->displaced_header = NonZero.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3712
      // Any non-zero value suffices:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3713
      //    unused_mark(), G2_thread, RBox, RScratch, rsp, etc.
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3714
      st_ptr(Rbox, Rbox, BasicLock::displaced_header_offset_in_bytes());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3715
      // Intentional fall-through into done
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3716
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3717
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3718
   bind   (done);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3719
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3720
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1388
diff changeset
  3721
void MacroAssembler::compiler_unlock_object(Register Roop, Register Rmark,
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1388
diff changeset
  3722
                                            Register Rbox, Register Rscratch,
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1388
diff changeset
  3723
                                            bool try_bias) {
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  3724
   Address mark_addr(Roop, oopDesc::mark_offset_in_bytes());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3725
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3726
   Label done ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3727
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3728
   if (EmitSync & 4) {
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3729
     cmp(SP, G0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3730
     return ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3731
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3732
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3733
   if (EmitSync & 8) {
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1388
diff changeset
  3734
     if (try_bias) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3735
        biased_locking_exit(mark_addr, Rscratch, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3736
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3737
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3738
     // Test first if it is a fast recursive unlock
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3739
     ld_ptr(Rbox, BasicLock::displaced_header_offset_in_bytes(), Rmark);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3740
     br_null_short(Rmark, Assembler::pt, done);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3741
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3742
     // Check if it is still a light weight lock, this is is true if we see
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3743
     // the stack address of the basicLock in the markOop of the object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3744
     assert(mark_addr.disp() == 0, "cas must take a zero displacement");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3745
     casx_under_lock(mark_addr.base(), Rbox, Rmark,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3746
       (address)StubRoutines::Sparc::atomic_memory_operation_lock_addr());
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3747
     ba(done);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3748
     delayed()->cmp(Rbox, Rmark);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3749
     bind(done);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3750
     return ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3751
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3752
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3753
   // Beware ... If the aggregate size of the code emitted by CLO and CUO is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3754
   // is too large performance rolls abruptly off a cliff.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3755
   // This could be related to inlining policies, code cache management, or
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3756
   // I$ effects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3757
   Label LStacked ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3758
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1388
diff changeset
  3759
   if (try_bias) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3760
      // TODO: eliminate redundant LDs of obj->mark
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3761
      biased_locking_exit(mark_addr, Rscratch, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3762
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3763
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3764
   ld_ptr(Roop, oopDesc::mark_offset_in_bytes(), Rmark);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3765
   ld_ptr(Rbox, BasicLock::displaced_header_offset_in_bytes(), Rscratch);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3766
   andcc(Rscratch, Rscratch, G0);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3767
   brx(Assembler::zero, false, Assembler::pn, done);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3768
   delayed()->nop();      // consider: relocate fetch of mark, above, into this DS
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3769
   andcc(Rmark, 2, G0);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3770
   brx(Assembler::zero, false, Assembler::pt, LStacked);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3771
   delayed()->nop();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3772
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3773
   // It's inflated
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3774
   // Conceptually we need a #loadstore|#storestore "release" MEMBAR before
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3775
   // the ST of 0 into _owner which releases the lock.  This prevents loads
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3776
   // and stores within the critical section from reordering (floating)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3777
   // past the store that releases the lock.  But TSO is a strong memory model
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3778
   // and that particular flavor of barrier is a noop, so we can safely elide it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3779
   // Note that we use 1-0 locking by default for the inflated case.  We
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3780
   // close the resultant (and rare) race by having contented threads in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3781
   // monitorenter periodically poll _owner.
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3782
   ld_ptr(Rmark, ObjectMonitor::owner_offset_in_bytes() - 2, Rscratch);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3783
   ld_ptr(Rmark, ObjectMonitor::recursions_offset_in_bytes() - 2, Rbox);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3784
   xor3(Rscratch, G2_thread, Rscratch);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3785
   orcc(Rbox, Rscratch, Rbox);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3786
   brx(Assembler::notZero, false, Assembler::pn, done);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3787
   delayed()->
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3788
   ld_ptr(Rmark, ObjectMonitor::EntryList_offset_in_bytes() - 2, Rscratch);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3789
   ld_ptr(Rmark, ObjectMonitor::cxq_offset_in_bytes() - 2, Rbox);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3790
   orcc(Rbox, Rscratch, G0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3791
   if (EmitSync & 65536) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3792
      Label LSucc ;
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3793
      brx(Assembler::notZero, false, Assembler::pn, LSucc);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3794
      delayed()->nop();
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3795
      ba(done);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3796
      delayed()->st_ptr(G0, Rmark, ObjectMonitor::owner_offset_in_bytes() - 2);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3797
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3798
      bind(LSucc);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3799
      st_ptr(G0, Rmark, ObjectMonitor::owner_offset_in_bytes() - 2);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3800
      if (os::is_MP()) { membar (StoreLoad); }
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3801
      ld_ptr(Rmark, ObjectMonitor::succ_offset_in_bytes() - 2, Rscratch);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3802
      andcc(Rscratch, Rscratch, G0);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3803
      brx(Assembler::notZero, false, Assembler::pt, done);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3804
      delayed()->andcc(G0, G0, G0);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3805
      add(Rmark, ObjectMonitor::owner_offset_in_bytes()-2, Rmark);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3806
      mov(G2_thread, Rscratch);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3807
      casn(Rmark, G0, Rscratch);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3808
      // invert icc.zf and goto done
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3809
      br_notnull(Rscratch, false, Assembler::pt, done);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3810
      delayed()->cmp(G0, G0);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3811
      ba(done);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3812
      delayed()->cmp(G0, 1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3813
   } else {
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3814
      brx(Assembler::notZero, false, Assembler::pn, done);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3815
      delayed()->nop();
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3816
      ba(done);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3817
      delayed()->st_ptr(G0, Rmark, ObjectMonitor::owner_offset_in_bytes() - 2);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3818
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3819
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3820
   bind   (LStacked);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3821
   // Consider: we could replace the expensive CAS in the exit
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3822
   // path with a simple ST of the displaced mark value fetched from
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3823
   // the on-stack basiclock box.  That admits a race where a thread T2
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3824
   // in the slow lock path -- inflating with monitor M -- could race a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3825
   // thread T1 in the fast unlock path, resulting in a missed wakeup for T2.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3826
   // More precisely T1 in the stack-lock unlock path could "stomp" the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3827
   // inflated mark value M installed by T2, resulting in an orphan
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3828
   // object monitor M and T2 becoming stranded.  We can remedy that situation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3829
   // by having T2 periodically poll the object's mark word using timed wait
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3830
   // operations.  If T2 discovers that a stomp has occurred it vacates
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3831
   // the monitor M and wakes any other threads stranded on the now-orphan M.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3832
   // In addition the monitor scavenger, which performs deflation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3833
   // would also need to check for orpan monitors and stranded threads.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3834
   //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3835
   // Finally, inflation is also used when T2 needs to assign a hashCode
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3836
   // to O and O is stack-locked by T1.  The "stomp" race could cause
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3837
   // an assigned hashCode value to be lost.  We can avoid that condition
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3838
   // and provide the necessary hashCode stability invariants by ensuring
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3839
   // that hashCode generation is idempotent between copying GCs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3840
   // For example we could compute the hashCode of an object O as
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3841
   // O's heap address XOR some high quality RNG value that is refreshed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3842
   // at GC-time.  The monitor scavenger would install the hashCode
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3843
   // found in any orphan monitors.  Again, the mechanism admits a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3844
   // lost-update "stomp" WAW race but detects and recovers as needed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3845
   //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3846
   // A prototype implementation showed excellent results, although
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3847
   // the scavenger and timeout code was rather involved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3848
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3849
   casn(mark_addr.base(), Rbox, Rscratch);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3850
   cmp(Rbox, Rscratch);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3851
   // Intentional fall through into done ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3852
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3853
   bind(done);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3854
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3855
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3856
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3857
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3858
void MacroAssembler::print_CPU_state() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3859
  // %%%%% need to implement this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3860
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3861
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3862
void MacroAssembler::verify_FPU(int stack_depth, const char* s) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3863
  // %%%%% need to implement this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3864
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3865
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3866
void MacroAssembler::push_IU_state() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3867
  // %%%%% need to implement this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3868
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3869
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3870
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3871
void MacroAssembler::pop_IU_state() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3872
  // %%%%% need to implement this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3873
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3874
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3875
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3876
void MacroAssembler::push_FPU_state() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3877
  // %%%%% need to implement this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3878
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3879
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3880
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3881
void MacroAssembler::pop_FPU_state() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3882
  // %%%%% need to implement this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3883
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3884
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3885
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3886
void MacroAssembler::push_CPU_state() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3887
  // %%%%% need to implement this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3888
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3889
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3890
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3891
void MacroAssembler::pop_CPU_state() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3892
  // %%%%% need to implement this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3893
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3894
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3895
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3896
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3897
void MacroAssembler::verify_tlab() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3898
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3899
  if (UseTLAB && VerifyOops) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3900
    Label next, next2, ok;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3901
    Register t1 = L0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3902
    Register t2 = L1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3903
    Register t3 = L2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3904
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3905
    save_frame(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3906
    ld_ptr(G2_thread, in_bytes(JavaThread::tlab_top_offset()), t1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3907
    ld_ptr(G2_thread, in_bytes(JavaThread::tlab_start_offset()), t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3908
    or3(t1, t2, t3);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3909
    cmp_and_br_short(t1, t2, Assembler::greaterEqual, Assembler::pn, next);
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3910
    STOP("assert(top >= start)");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3911
    should_not_reach_here();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3912
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3913
    bind(next);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3914
    ld_ptr(G2_thread, in_bytes(JavaThread::tlab_top_offset()), t1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3915
    ld_ptr(G2_thread, in_bytes(JavaThread::tlab_end_offset()), t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3916
    or3(t3, t2, t3);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3917
    cmp_and_br_short(t1, t2, Assembler::lessEqual, Assembler::pn, next2);
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3918
    STOP("assert(top <= end)");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3919
    should_not_reach_here();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3920
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3921
    bind(next2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3922
    and3(t3, MinObjAlignmentInBytesMask, t3);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3923
    cmp_and_br_short(t3, 0, Assembler::lessEqual, Assembler::pn, ok);
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3924
    STOP("assert(aligned)");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3925
    should_not_reach_here();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3926
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3927
    bind(ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3928
    restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3929
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3930
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3931
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3932
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3933
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3934
void MacroAssembler::eden_allocate(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3935
  Register obj,                        // result: pointer to object after successful allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3936
  Register var_size_in_bytes,          // object size in bytes if unknown at compile time; invalid otherwise
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3937
  int      con_size_in_bytes,          // object size in bytes if   known at compile time
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3938
  Register t1,                         // temp register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3939
  Register t2,                         // temp register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3940
  Label&   slow_case                   // continuation point if fast allocation fails
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3941
){
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3942
  // make sure arguments make sense
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3943
  assert_different_registers(obj, var_size_in_bytes, t1, t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3944
  assert(0 <= con_size_in_bytes && Assembler::is_simm13(con_size_in_bytes), "illegal object size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3945
  assert((con_size_in_bytes & MinObjAlignmentInBytesMask) == 0, "object size is not multiple of alignment");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3946
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3947
  if (CMSIncrementalMode || !Universe::heap()->supports_inline_contig_alloc()) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3948
    // No allocation in the shared eden.
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  3949
    ba_short(slow_case);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3950
  } else {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3951
    // get eden boundaries
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3952
    // note: we need both top & top_addr!
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3953
    const Register top_addr = t1;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3954
    const Register end      = t2;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3955
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3956
    CollectedHeap* ch = Universe::heap();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3957
    set((intx)ch->top_addr(), top_addr);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3958
    intx delta = (intx)ch->end_addr() - (intx)ch->top_addr();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3959
    ld_ptr(top_addr, delta, end);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3960
    ld_ptr(top_addr, 0, obj);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3961
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3962
    // try to allocate
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3963
    Label retry;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3964
    bind(retry);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3965
#ifdef ASSERT
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3966
    // make sure eden top is properly aligned
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3967
    {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3968
      Label L;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3969
      btst(MinObjAlignmentInBytesMask, obj);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3970
      br(Assembler::zero, false, Assembler::pt, L);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3971
      delayed()->nop();
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  3972
      STOP("eden top is not properly aligned");
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3973
      bind(L);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3974
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3975
#endif // ASSERT
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3976
    const Register free = end;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3977
    sub(end, obj, free);                                   // compute amount of free space
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3978
    if (var_size_in_bytes->is_valid()) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3979
      // size is unknown at compile time
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3980
      cmp(free, var_size_in_bytes);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3981
      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
  3982
      delayed()->add(obj, var_size_in_bytes, end);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3983
    } else {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3984
      // size is known at compile time
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3985
      cmp(free, con_size_in_bytes);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3986
      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
  3987
      delayed()->add(obj, con_size_in_bytes, end);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3988
    }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3989
    // 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
  3990
    // 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
  3991
    // into end.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3992
    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
  3993
    // 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
  3994
    cmp(obj, end);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3995
    brx(Assembler::notEqual, false, Assembler::pn, retry);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3996
    delayed()->mov(end, obj);                              // nop if successfull since obj == end
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3997
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3998
#ifdef ASSERT
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  3999
    // make sure eden top is properly aligned
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4000
    {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4001
      Label L;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4002
      const Register top_addr = t1;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4003
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4004
      set((intx)ch->top_addr(), top_addr);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4005
      ld_ptr(top_addr, 0, top_addr);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4006
      btst(MinObjAlignmentInBytesMask, top_addr);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4007
      br(Assembler::zero, false, Assembler::pt, L);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4008
      delayed()->nop();
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  4009
      STOP("eden top is not properly aligned");
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4010
      bind(L);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4011
    }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4012
#endif // ASSERT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4013
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4014
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4015
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4016
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4017
void MacroAssembler::tlab_allocate(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4018
  Register obj,                        // result: pointer to object after successful allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4019
  Register var_size_in_bytes,          // object size in bytes if unknown at compile time; invalid otherwise
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4020
  int      con_size_in_bytes,          // object size in bytes if   known at compile time
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4021
  Register t1,                         // temp register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4022
  Label&   slow_case                   // continuation point if fast allocation fails
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4023
){
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4024
  // make sure arguments make sense
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4025
  assert_different_registers(obj, var_size_in_bytes, t1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4026
  assert(0 <= con_size_in_bytes && is_simm13(con_size_in_bytes), "illegal object size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4027
  assert((con_size_in_bytes & MinObjAlignmentInBytesMask) == 0, "object size is not multiple of alignment");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4028
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4029
  const Register free  = t1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4030
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4031
  verify_tlab();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4032
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4033
  ld_ptr(G2_thread, in_bytes(JavaThread::tlab_top_offset()), obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4034
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4035
  // calculate amount of free space
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4036
  ld_ptr(G2_thread, in_bytes(JavaThread::tlab_end_offset()), free);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4037
  sub(free, obj, free);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4038
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4039
  Label done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4040
  if (var_size_in_bytes == noreg) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4041
    cmp(free, con_size_in_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4042
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4043
    cmp(free, var_size_in_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4044
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4045
  br(Assembler::less, false, Assembler::pn, slow_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4046
  // calculate the new top pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4047
  if (var_size_in_bytes == noreg) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4048
    delayed()->add(obj, con_size_in_bytes, free);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4049
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4050
    delayed()->add(obj, var_size_in_bytes, free);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4051
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4052
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4053
  bind(done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4054
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4055
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4056
  // make sure new free pointer is properly aligned
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4057
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4058
    Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4059
    btst(MinObjAlignmentInBytesMask, free);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4060
    br(Assembler::zero, false, Assembler::pt, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4061
    delayed()->nop();
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  4062
    STOP("updated TLAB free is not properly aligned");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4063
    bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4064
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4065
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4066
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4067
  // update the tlab top pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4068
  st_ptr(free, G2_thread, in_bytes(JavaThread::tlab_top_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4069
  verify_tlab();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4070
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4071
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4072
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4073
void MacroAssembler::tlab_refill(Label& retry, Label& try_eden, Label& slow_case) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4074
  Register top = O0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4075
  Register t1 = G1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4076
  Register t2 = G3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4077
  Register t3 = O1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4078
  assert_different_registers(top, t1, t2, t3, G4, G5 /* preserve G4 and G5 */);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4079
  Label do_refill, discard_tlab;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4080
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4081
  if (CMSIncrementalMode || !Universe::heap()->supports_inline_contig_alloc()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4082
    // No allocation in the shared eden.
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4083
    ba_short(slow_case);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4084
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4085
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4086
  ld_ptr(G2_thread, in_bytes(JavaThread::tlab_top_offset()), top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4087
  ld_ptr(G2_thread, in_bytes(JavaThread::tlab_end_offset()), t1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4088
  ld_ptr(G2_thread, in_bytes(JavaThread::tlab_refill_waste_limit_offset()), t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4089
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4090
  // calculate amount of free space
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4091
  sub(t1, top, t1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4092
  srl_ptr(t1, LogHeapWordSize, t1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4093
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4094
  // Retain tlab and allocate object in shared space if
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4095
  // the amount free in the tlab is too large to discard.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4096
  cmp(t1, t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4097
  brx(Assembler::lessEqual, false, Assembler::pt, discard_tlab);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4098
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4099
  // increment waste limit to prevent getting stuck on this slow path
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4100
  delayed()->add(t2, ThreadLocalAllocBuffer::refill_waste_limit_increment(), t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4101
  st_ptr(t2, G2_thread, in_bytes(JavaThread::tlab_refill_waste_limit_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4102
  if (TLABStats) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4103
    // increment number of slow_allocations
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4104
    ld(G2_thread, in_bytes(JavaThread::tlab_slow_allocations_offset()), t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4105
    add(t2, 1, t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4106
    stw(t2, G2_thread, in_bytes(JavaThread::tlab_slow_allocations_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4107
  }
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4108
  ba_short(try_eden);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4109
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4110
  bind(discard_tlab);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4111
  if (TLABStats) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4112
    // increment number of refills
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4113
    ld(G2_thread, in_bytes(JavaThread::tlab_number_of_refills_offset()), t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4114
    add(t2, 1, t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4115
    stw(t2, G2_thread, in_bytes(JavaThread::tlab_number_of_refills_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4116
    // accumulate wastage
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4117
    ld(G2_thread, in_bytes(JavaThread::tlab_fast_refill_waste_offset()), t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4118
    add(t2, t1, t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4119
    stw(t2, G2_thread, in_bytes(JavaThread::tlab_fast_refill_waste_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4120
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4121
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4122
  // if tlab is currently allocated (top or end != null) then
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4123
  // fill [top, end + alignment_reserve) with array object
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4124
  br_null_short(top, Assembler::pn, do_refill);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4125
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4126
  set((intptr_t)markOopDesc::prototype()->copy_set_hash(0x2), t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4127
  st_ptr(t2, top, oopDesc::mark_offset_in_bytes()); // set up the mark word
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4128
  // set klass to intArrayKlass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4129
  sub(t1, typeArrayOopDesc::header_size(T_INT), t1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4130
  add(t1, ThreadLocalAllocBuffer::alignment_reserve(), t1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4131
  sll_ptr(t1, log2_intptr(HeapWordSize/sizeof(jint)), t1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4132
  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
  4133
  set((intptr_t)Universe::intArrayKlassObj_addr(), t2);
803947e176bd 6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents: 590
diff changeset
  4134
  ld_ptr(t2, 0, t2);
803947e176bd 6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents: 590
diff changeset
  4135
  // 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
  4136
  // klass field is not null.
803947e176bd 6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents: 590
diff changeset
  4137
  store_klass(t2, top);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4138
  verify_oop(top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4139
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7433
diff changeset
  4140
  ld_ptr(G2_thread, in_bytes(JavaThread::tlab_start_offset()), t1);
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7433
diff changeset
  4141
  sub(top, t1, t1); // size of tlab's allocated portion
7898
729a02451b8a 7011463: Sparc MacroAssembler::incr_allocated_bytes() needs a RegisterOrConstant argument
phh
parents: 7726
diff changeset
  4142
  incr_allocated_bytes(t1, t2, t3);
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7433
diff changeset
  4143
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4144
  // refill the tlab with an eden allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4145
  bind(do_refill);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4146
  ld_ptr(G2_thread, in_bytes(JavaThread::tlab_size_offset()), t1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4147
  sll_ptr(t1, LogHeapWordSize, t1);
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7433
diff changeset
  4148
  // allocate new tlab, address returned in top
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4149
  eden_allocate(top, t1, 0, t2, t3, slow_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4150
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4151
  st_ptr(top, G2_thread, in_bytes(JavaThread::tlab_start_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4152
  st_ptr(top, G2_thread, in_bytes(JavaThread::tlab_top_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4153
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4154
  // check that tlab_size (t1) is still valid
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4155
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4156
    Label ok;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4157
    ld_ptr(G2_thread, in_bytes(JavaThread::tlab_size_offset()), t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4158
    sll_ptr(t2, LogHeapWordSize, t2);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4159
    cmp_and_br_short(t1, t2, Assembler::equal, Assembler::pt, ok);
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11430
diff changeset
  4160
    STOP("assert(t1 == tlab_size)");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4161
    should_not_reach_here();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4162
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4163
    bind(ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4164
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4165
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4166
  add(top, t1, top); // t1 is tlab_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4167
  sub(top, ThreadLocalAllocBuffer::alignment_reserve_in_bytes(), top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4168
  st_ptr(top, G2_thread, in_bytes(JavaThread::tlab_end_offset()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4169
  verify_tlab();
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4170
  ba_short(retry);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4171
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4172
7898
729a02451b8a 7011463: Sparc MacroAssembler::incr_allocated_bytes() needs a RegisterOrConstant argument
phh
parents: 7726
diff changeset
  4173
void MacroAssembler::incr_allocated_bytes(RegisterOrConstant size_in_bytes,
729a02451b8a 7011463: Sparc MacroAssembler::incr_allocated_bytes() needs a RegisterOrConstant argument
phh
parents: 7726
diff changeset
  4174
                                          Register t1, Register t2) {
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7433
diff changeset
  4175
  // Bump total bytes allocated by this thread
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7433
diff changeset
  4176
  assert(t1->is_global(), "must be global reg"); // so all 64 bits are saved on a context switch
7898
729a02451b8a 7011463: Sparc MacroAssembler::incr_allocated_bytes() needs a RegisterOrConstant argument
phh
parents: 7726
diff changeset
  4177
  assert_different_registers(size_in_bytes.register_or_noreg(), t1, t2);
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7433
diff changeset
  4178
  // v8 support has gone the way of the dodo
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7433
diff changeset
  4179
  ldx(G2_thread, in_bytes(JavaThread::allocated_bytes_offset()), t1);
7898
729a02451b8a 7011463: Sparc MacroAssembler::incr_allocated_bytes() needs a RegisterOrConstant argument
phh
parents: 7726
diff changeset
  4180
  add(t1, ensure_simm13_or_reg(size_in_bytes, t2), t1);
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7433
diff changeset
  4181
  stx(t1, G2_thread, in_bytes(JavaThread::allocated_bytes_offset()));
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7433
diff changeset
  4182
}
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7433
diff changeset
  4183
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4184
Assembler::Condition MacroAssembler::negate_condition(Assembler::Condition cond) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4185
  switch (cond) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4186
    // Note some conditions are synonyms for others
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4187
    case Assembler::never:                return Assembler::always;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4188
    case Assembler::zero:                 return Assembler::notZero;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4189
    case Assembler::lessEqual:            return Assembler::greater;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4190
    case Assembler::less:                 return Assembler::greaterEqual;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4191
    case Assembler::lessEqualUnsigned:    return Assembler::greaterUnsigned;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4192
    case Assembler::lessUnsigned:         return Assembler::greaterEqualUnsigned;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4193
    case Assembler::negative:             return Assembler::positive;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4194
    case Assembler::overflowSet:          return Assembler::overflowClear;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4195
    case Assembler::always:               return Assembler::never;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4196
    case Assembler::notZero:              return Assembler::zero;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4197
    case Assembler::greater:              return Assembler::lessEqual;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4198
    case Assembler::greaterEqual:         return Assembler::less;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4199
    case Assembler::greaterUnsigned:      return Assembler::lessEqualUnsigned;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4200
    case Assembler::greaterEqualUnsigned: return Assembler::lessUnsigned;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4201
    case Assembler::positive:             return Assembler::negative;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4202
    case Assembler::overflowClear:        return Assembler::overflowSet;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4203
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4204
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4205
  ShouldNotReachHere(); return Assembler::overflowClear;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4206
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4207
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4208
void MacroAssembler::cond_inc(Assembler::Condition cond, address counter_ptr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4209
                              Register Rtmp1, Register Rtmp2 /*, Register Rtmp3, Register Rtmp4 */) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4210
  Condition negated_cond = negate_condition(cond);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4211
  Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4212
  brx(negated_cond, false, Assembler::pt, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4213
  delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4214
  inc_counter(counter_ptr, Rtmp1, Rtmp2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4215
  bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4216
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4217
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  4218
void MacroAssembler::inc_counter(address counter_addr, Register Rtmp1, Register Rtmp2) {
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  4219
  AddressLiteral addrlit(counter_addr);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  4220
  sethi(addrlit, Rtmp1);                 // Move hi22 bits into temporary register.
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  4221
  Address addr(Rtmp1, addrlit.low10());  // Build an address with low10 bits.
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  4222
  ld(addr, Rtmp2);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4223
  inc(Rtmp2);
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  4224
  st(Rtmp2, addr);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  4225
}
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  4226
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  4227
void MacroAssembler::inc_counter(int* counter_addr, Register Rtmp1, Register Rtmp2) {
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  4228
  inc_counter((address) counter_addr, Rtmp1, Rtmp2);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4229
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4230
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4231
SkipIfEqual::SkipIfEqual(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4232
    MacroAssembler* masm, Register temp, const bool* flag_addr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4233
    Assembler::Condition condition) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4234
  _masm = masm;
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  4235
  AddressLiteral flag(flag_addr);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  4236
  _masm->sethi(flag, temp);
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  4237
  _masm->ldub(temp, flag.low10(), temp);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4238
  _masm->tst(temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4239
  _masm->br(condition, false, Assembler::pt, _label);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4240
  _masm->delayed()->nop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4241
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4242
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4243
SkipIfEqual::~SkipIfEqual() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4244
  _masm->bind(_label);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4245
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4246
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4247
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4248
// Writes to stack successive pages until offset reached to check for
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4249
// stack overflow + shadow pages.  This clobbers tsp and scratch.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4250
void MacroAssembler::bang_stack_size(Register Rsize, Register Rtsp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4251
                                     Register Rscratch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4252
  // Use stack pointer in temp stack pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4253
  mov(SP, Rtsp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4254
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4255
  // Bang stack for total size given plus stack shadow page size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4256
  // Bang one page at a time because a large size can overflow yellow and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4257
  // red zones (the bang will fail but stack overflow handling can't tell that
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4258
  // it was a stack overflow bang vs a regular segv).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4259
  int offset = os::vm_page_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4260
  Register Roffset = Rscratch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4261
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4262
  Label loop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4263
  bind(loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4264
  set((-offset)+STACK_BIAS, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4265
  st(G0, Rtsp, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4266
  set(offset, Roffset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4267
  sub(Rsize, Roffset, Rsize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4268
  cmp(Rsize, G0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4269
  br(Assembler::greater, false, Assembler::pn, loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4270
  delayed()->sub(Rtsp, Roffset, Rtsp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4271
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4272
  // Bang down shadow pages too.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4273
  // The -1 because we already subtracted 1 page.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4274
  for (int i = 0; i< StackShadowPages-1; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4275
    set((-i*offset)+STACK_BIAS, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4276
    st(G0, Rtsp, Rscratch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4277
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4278
}
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4279
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4280
///////////////////////////////////////////////////////////////////////////////////
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4281
#ifndef SERIALGC
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4282
9176
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4283
static address satb_log_enqueue_with_frame = NULL;
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4284
static u_char* satb_log_enqueue_with_frame_end = NULL;
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4285
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4286
static address satb_log_enqueue_frameless = NULL;
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4287
static u_char* satb_log_enqueue_frameless_end = NULL;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4288
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4289
static int EnqueueCodeSize = 128 DEBUG_ONLY( + 256); // Instructions?
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4290
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4291
static void generate_satb_log_enqueue(bool with_frame) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4292
  BufferBlob* bb = BufferBlob::create("enqueue_with_frame", EnqueueCodeSize);
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6175
diff changeset
  4293
  CodeBuffer buf(bb);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4294
  MacroAssembler masm(&buf);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4295
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4296
#define __ masm.
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4297
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4298
  address start = __ pc();
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4299
  Register pre_val;
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
  Label refill, restart;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4302
  if (with_frame) {
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4303
    __ save_frame(0);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4304
    pre_val = I0;  // Was O0 before the save.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4305
  } else {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4306
    pre_val = O0;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4307
  }
10497
1bcff72a4b82 7066841: remove MacroAssembler::br_on_reg_cond() on sparc
johnc
parents: 10252
diff changeset
  4308
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4309
  int satb_q_index_byte_offset =
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4310
    in_bytes(JavaThread::satb_mark_queue_offset() +
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4311
             PtrQueue::byte_offset_of_index());
10497
1bcff72a4b82 7066841: remove MacroAssembler::br_on_reg_cond() on sparc
johnc
parents: 10252
diff changeset
  4312
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4313
  int satb_q_buf_byte_offset =
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4314
    in_bytes(JavaThread::satb_mark_queue_offset() +
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4315
             PtrQueue::byte_offset_of_buf());
10497
1bcff72a4b82 7066841: remove MacroAssembler::br_on_reg_cond() on sparc
johnc
parents: 10252
diff changeset
  4316
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4317
  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
  4318
         in_bytes(PtrQueue::byte_width_of_buf()) == sizeof(intptr_t),
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4319
         "check sizes in assembly below");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4320
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4321
  __ bind(restart);
10497
1bcff72a4b82 7066841: remove MacroAssembler::br_on_reg_cond() on sparc
johnc
parents: 10252
diff changeset
  4322
1bcff72a4b82 7066841: remove MacroAssembler::br_on_reg_cond() on sparc
johnc
parents: 10252
diff changeset
  4323
  // Load the index into the SATB buffer. PtrQueue::_index is a size_t
1bcff72a4b82 7066841: remove MacroAssembler::br_on_reg_cond() on sparc
johnc
parents: 10252
diff changeset
  4324
  // so ld_ptr is appropriate.
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4325
  __ ld_ptr(G2_thread, satb_q_index_byte_offset, L0);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4326
10497
1bcff72a4b82 7066841: remove MacroAssembler::br_on_reg_cond() on sparc
johnc
parents: 10252
diff changeset
  4327
  // index == 0?
1bcff72a4b82 7066841: remove MacroAssembler::br_on_reg_cond() on sparc
johnc
parents: 10252
diff changeset
  4328
  __ cmp_and_brx_short(L0, G0, Assembler::equal, Assembler::pn, refill);
1bcff72a4b82 7066841: remove MacroAssembler::br_on_reg_cond() on sparc
johnc
parents: 10252
diff changeset
  4329
1bcff72a4b82 7066841: remove MacroAssembler::br_on_reg_cond() on sparc
johnc
parents: 10252
diff changeset
  4330
  __ ld_ptr(G2_thread, satb_q_buf_byte_offset, L1);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4331
  __ sub(L0, oopSize, L0);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4332
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4333
  __ st_ptr(pre_val, L1, L0);  // [_buf + index] := I0
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4334
  if (!with_frame) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4335
    // Use return-from-leaf
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4336
    __ retl();
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4337
    __ delayed()->st_ptr(L0, G2_thread, satb_q_index_byte_offset);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4338
  } else {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4339
    // Not delayed.
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4340
    __ st_ptr(L0, G2_thread, satb_q_index_byte_offset);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4341
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4342
  if (with_frame) {
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4343
    __ ret();
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4344
    __ delayed()->restore();
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4345
  }
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4346
  __ bind(refill);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4347
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4348
  address handle_zero =
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4349
    CAST_FROM_FN_PTR(address,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4350
                     &SATBMarkQueueSet::handle_zero_index_for_thread);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4351
  // 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
  4352
  // scratch registers that the calling context might be using.
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4353
  __ mov(G1_scratch, L0);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4354
  __ mov(G3_scratch, L1);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4355
  __ mov(G4, L2);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4356
  // 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
  4357
  // save and restore it.
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4358
  __ mov(O0, L3);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4359
  // Since the call will overwrite O7, we save and restore that, as well.
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4360
  __ mov(O7, L4);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4361
  __ call_VM_leaf(L5, handle_zero, G2_thread);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4362
  __ mov(L0, G1_scratch);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4363
  __ mov(L1, G3_scratch);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4364
  __ mov(L2, G4);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4365
  __ mov(L3, O0);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4366
  __ br(Assembler::always, /*annul*/false, Assembler::pt, restart);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4367
  __ delayed()->mov(L4, O7);
1374
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
  if (with_frame) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4370
    satb_log_enqueue_with_frame = start;
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4371
    satb_log_enqueue_with_frame_end = __ pc();
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4372
  } else {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4373
    satb_log_enqueue_frameless = start;
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4374
    satb_log_enqueue_frameless_end = __ pc();
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4375
  }
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4376
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4377
#undef __
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4378
}
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
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
  4381
  if (with_frame) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4382
    if (satb_log_enqueue_with_frame == 0) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4383
      generate_satb_log_enqueue(with_frame);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4384
      assert(satb_log_enqueue_with_frame != 0, "postcondition.");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4385
      if (G1SATBPrintStubs) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4386
        tty->print_cr("Generated with-frame satb enqueue:");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4387
        Disassembler::decode((u_char*)satb_log_enqueue_with_frame,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4388
                             satb_log_enqueue_with_frame_end,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4389
                             tty);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4390
      }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4391
    }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4392
  } else {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4393
    if (satb_log_enqueue_frameless == 0) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4394
      generate_satb_log_enqueue(with_frame);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4395
      assert(satb_log_enqueue_frameless != 0, "postcondition.");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4396
      if (G1SATBPrintStubs) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4397
        tty->print_cr("Generated frameless satb enqueue:");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4398
        Disassembler::decode((u_char*)satb_log_enqueue_frameless,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4399
                             satb_log_enqueue_frameless_end,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4400
                             tty);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4401
      }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4402
    }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4403
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4404
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4405
9176
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4406
void MacroAssembler::g1_write_barrier_pre(Register obj,
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4407
                                          Register index,
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4408
                                          int offset,
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4409
                                          Register pre_val,
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4410
                                          Register tmp,
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4411
                                          bool preserve_o_regs) {
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4412
  Label filtered;
9176
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4413
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4414
  if (obj == noreg) {
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4415
    // We are not loading the previous value so make
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4416
    // sure that we don't trash the value in pre_val
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4417
    // with the code below.
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4418
    assert_different_registers(pre_val, tmp);
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4419
  } else {
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4420
    // We will be loading the previous value
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4421
    // in this code so...
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4422
    assert(offset == 0 || index == noreg, "choose one");
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4423
    assert(pre_val == noreg, "check this code");
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4424
  }
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4425
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4426
  // Is marking active?
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4427
  if (in_bytes(PtrQueue::byte_width_of_active()) == 4) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4428
    ld(G2,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4429
       in_bytes(JavaThread::satb_mark_queue_offset() +
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4430
                PtrQueue::byte_offset_of_active()),
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4431
       tmp);
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
    guarantee(in_bytes(PtrQueue::byte_width_of_active()) == 1,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4434
              "Assumption");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4435
    ldsb(G2,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4436
         in_bytes(JavaThread::satb_mark_queue_offset() +
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4437
                  PtrQueue::byte_offset_of_active()),
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4438
         tmp);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4439
  }
3262
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 2881
diff changeset
  4440
10497
1bcff72a4b82 7066841: remove MacroAssembler::br_on_reg_cond() on sparc
johnc
parents: 10252
diff changeset
  4441
  // Is marking active?
1bcff72a4b82 7066841: remove MacroAssembler::br_on_reg_cond() on sparc
johnc
parents: 10252
diff changeset
  4442
  cmp_and_br_short(tmp, G0, Assembler::equal, Assembler::pt, filtered);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4443
9176
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4444
  // Do we need to load the previous value?
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4445
  if (obj != noreg) {
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4446
    // Load the previous value...
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4447
    if (index == noreg) {
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4448
      if (Assembler::is_simm13(offset)) {
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4449
        load_heap_oop(obj, offset, tmp);
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4450
      } else {
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4451
        set(offset, tmp);
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4452
        load_heap_oop(obj, tmp, tmp);
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4453
      }
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4454
    } else {
9176
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4455
      load_heap_oop(obj, index, tmp);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4456
    }
9176
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4457
    // Previous value has been loaded into tmp
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4458
    pre_val = tmp;
1374
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
9176
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4461
  assert(pre_val != noreg, "must have a real register");
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4462
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4463
  // Is the previous value null?
10497
1bcff72a4b82 7066841: remove MacroAssembler::br_on_reg_cond() on sparc
johnc
parents: 10252
diff changeset
  4464
  cmp_and_brx_short(pre_val, G0, Assembler::equal, Assembler::pt, filtered);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4465
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4466
  // OK, it's not filtered, so we'll need to call enqueue.  In the normal
9176
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4467
  // case, pre_val will be a scratch G-reg, but there are some cases in
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4468
  // which it's an O-reg.  In the first case, do a normal call.  In the
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4469
  // latter, do a save here and call the frameless version.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4470
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4471
  guarantee(pre_val->is_global() || pre_val->is_out(),
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4472
            "Or we need to think harder.");
9176
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4473
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4474
  if (pre_val->is_global() && !preserve_o_regs) {
9176
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4475
    generate_satb_log_enqueue_if_necessary(true); // with frame
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4476
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4477
    call(satb_log_enqueue_with_frame);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4478
    delayed()->mov(pre_val, O0);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4479
  } else {
9176
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4480
    generate_satb_log_enqueue_if_necessary(false); // frameless
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4481
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4482
    save_frame(0);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4483
    call(satb_log_enqueue_frameless);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4484
    delayed()->mov(pre_val->after_save(), O0);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4485
    restore();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4486
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4487
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4488
  bind(filtered);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4489
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4490
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4491
static address dirty_card_log_enqueue = 0;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4492
static u_char* dirty_card_log_enqueue_end = 0;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4493
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4494
// This gets to assume that o0 contains the object address.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4495
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
  4496
  BufferBlob* bb = BufferBlob::create("dirty_card_enqueue", EnqueueCodeSize*2);
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6175
diff changeset
  4497
  CodeBuffer buf(bb);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4498
  MacroAssembler masm(&buf);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4499
#define __ masm.
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4500
  address start = __ pc();
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4501
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4502
  Label not_already_dirty, restart, refill;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4503
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4504
#ifdef _LP64
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4505
  __ srlx(O0, CardTableModRefBS::card_shift, O0);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4506
#else
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4507
  __ srl(O0, CardTableModRefBS::card_shift, O0);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4508
#endif
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  4509
  AddressLiteral addrlit(byte_map_base);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4510
  __ set(addrlit, O1); // O1 := <card table base>
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4511
  __ ldub(O0, O1, O2); // O2 := [O0 + O1]
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4512
10497
1bcff72a4b82 7066841: remove MacroAssembler::br_on_reg_cond() on sparc
johnc
parents: 10252
diff changeset
  4513
  assert(CardTableModRefBS::dirty_card_val() == 0, "otherwise check this code");
1bcff72a4b82 7066841: remove MacroAssembler::br_on_reg_cond() on sparc
johnc
parents: 10252
diff changeset
  4514
  __ cmp_and_br_short(O2, G0, Assembler::notEqual, Assembler::pt, not_already_dirty);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4515
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4516
  // 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
  4517
  // Use return-from-leaf
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4518
  __ retl();
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4519
  __ delayed()->nop();
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4520
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4521
  // Not dirty.
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4522
  __ bind(not_already_dirty);
10497
1bcff72a4b82 7066841: remove MacroAssembler::br_on_reg_cond() on sparc
johnc
parents: 10252
diff changeset
  4523
1bcff72a4b82 7066841: remove MacroAssembler::br_on_reg_cond() on sparc
johnc
parents: 10252
diff changeset
  4524
  // Get O0 + O1 into a reg by itself
1bcff72a4b82 7066841: remove MacroAssembler::br_on_reg_cond() on sparc
johnc
parents: 10252
diff changeset
  4525
  __ add(O0, O1, O3);
1bcff72a4b82 7066841: remove MacroAssembler::br_on_reg_cond() on sparc
johnc
parents: 10252
diff changeset
  4526
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4527
  // First, dirty it.
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4528
  __ stb(G0, O3, G0);  // [cardPtr] := 0  (i.e., dirty).
10497
1bcff72a4b82 7066841: remove MacroAssembler::br_on_reg_cond() on sparc
johnc
parents: 10252
diff changeset
  4529
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4530
  int dirty_card_q_index_byte_offset =
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4531
    in_bytes(JavaThread::dirty_card_queue_offset() +
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4532
             PtrQueue::byte_offset_of_index());
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4533
  int dirty_card_q_buf_byte_offset =
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4534
    in_bytes(JavaThread::dirty_card_queue_offset() +
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4535
             PtrQueue::byte_offset_of_buf());
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4536
  __ bind(restart);
10497
1bcff72a4b82 7066841: remove MacroAssembler::br_on_reg_cond() on sparc
johnc
parents: 10252
diff changeset
  4537
1bcff72a4b82 7066841: remove MacroAssembler::br_on_reg_cond() on sparc
johnc
parents: 10252
diff changeset
  4538
  // Load the index into the update buffer. PtrQueue::_index is
1bcff72a4b82 7066841: remove MacroAssembler::br_on_reg_cond() on sparc
johnc
parents: 10252
diff changeset
  4539
  // a size_t so ld_ptr is appropriate here.
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4540
  __ ld_ptr(G2_thread, dirty_card_q_index_byte_offset, L0);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4541
10497
1bcff72a4b82 7066841: remove MacroAssembler::br_on_reg_cond() on sparc
johnc
parents: 10252
diff changeset
  4542
  // index == 0?
1bcff72a4b82 7066841: remove MacroAssembler::br_on_reg_cond() on sparc
johnc
parents: 10252
diff changeset
  4543
  __ cmp_and_brx_short(L0, G0, Assembler::equal, Assembler::pn, refill);
1bcff72a4b82 7066841: remove MacroAssembler::br_on_reg_cond() on sparc
johnc
parents: 10252
diff changeset
  4544
1bcff72a4b82 7066841: remove MacroAssembler::br_on_reg_cond() on sparc
johnc
parents: 10252
diff changeset
  4545
  __ ld_ptr(G2_thread, dirty_card_q_buf_byte_offset, L1);
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4546
  __ sub(L0, oopSize, L0);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4547
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4548
  __ st_ptr(O3, L1, L0);  // [_buf + index] := I0
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4549
  // Use return-from-leaf
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4550
  __ retl();
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4551
  __ delayed()->st_ptr(L0, G2_thread, dirty_card_q_index_byte_offset);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4552
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4553
  __ bind(refill);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4554
  address handle_zero =
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4555
    CAST_FROM_FN_PTR(address,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4556
                     &DirtyCardQueueSet::handle_zero_index_for_thread);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4557
  // 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
  4558
  // scratch registers that the calling context might be using.
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4559
  __ mov(G1_scratch, L3);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4560
  __ mov(G3_scratch, L5);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4561
  // 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
  4562
  // save and restore it.
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4563
  __ mov(O3, L6);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4564
  // Since the call will overwrite O7, we save and restore that, as well.
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4565
  __ mov(O7, L4);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4566
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4567
  __ call_VM_leaf(L7_thread_cache, handle_zero, G2_thread);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4568
  __ mov(L3, G1_scratch);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4569
  __ mov(L5, G3_scratch);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4570
  __ mov(L6, O3);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4571
  __ br(Assembler::always, /*annul*/false, Assembler::pt, restart);
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4572
  __ delayed()->mov(L4, O7);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4573
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4574
  dirty_card_log_enqueue = start;
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4575
  dirty_card_log_enqueue_end = __ pc();
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4576
  // 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
  4577
  // Does it already do so?  Do an experiment...
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4578
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4579
#undef __
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4580
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4581
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4582
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4583
static inline void
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4584
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
  4585
  if (dirty_card_log_enqueue == 0) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4586
    generate_dirty_card_log_enqueue(byte_map_base);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4587
    assert(dirty_card_log_enqueue != 0, "postcondition.");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4588
    if (G1SATBPrintStubs) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4589
      tty->print_cr("Generated dirty_card enqueue:");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4590
      Disassembler::decode((u_char*)dirty_card_log_enqueue,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4591
                           dirty_card_log_enqueue_end,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4592
                           tty);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4593
    }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4594
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4595
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4596
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4597
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4598
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
  4599
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4600
  Label filtered;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4601
  MacroAssembler* post_filter_masm = this;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4602
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4603
  if (new_val == G0) return;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4604
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4605
  G1SATBCardTableModRefBS* bs = (G1SATBCardTableModRefBS*) Universe::heap()->barrier_set();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4606
  assert(bs->kind() == BarrierSet::G1SATBCT ||
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4607
         bs->kind() == BarrierSet::G1SATBCTLogging, "wrong barrier");
10497
1bcff72a4b82 7066841: remove MacroAssembler::br_on_reg_cond() on sparc
johnc
parents: 10252
diff changeset
  4608
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4609
  if (G1RSBarrierRegionFilter) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4610
    xor3(store_addr, new_val, tmp);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4611
#ifdef _LP64
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4612
    srlx(tmp, HeapRegion::LogOfHRGrainBytes, tmp);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4613
#else
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4614
    srl(tmp, HeapRegion::LogOfHRGrainBytes, tmp);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4615
#endif
9176
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8676
diff changeset
  4616
10497
1bcff72a4b82 7066841: remove MacroAssembler::br_on_reg_cond() on sparc
johnc
parents: 10252
diff changeset
  4617
    // XXX Should I predict this taken or not?  Does it matter?
1bcff72a4b82 7066841: remove MacroAssembler::br_on_reg_cond() on sparc
johnc
parents: 10252
diff changeset
  4618
    cmp_and_brx_short(tmp, G0, Assembler::equal, Assembler::pt, filtered);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4619
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4620
2881
74a1337e4acc 6484957: G1: parallel concurrent refinement
iveresov
parents: 2571
diff changeset
  4621
  // If the "store_addr" register is an "in" or "local" register, move it to
74a1337e4acc 6484957: G1: parallel concurrent refinement
iveresov
parents: 2571
diff changeset
  4622
  // a scratch reg so we can pass it as an argument.
74a1337e4acc 6484957: G1: parallel concurrent refinement
iveresov
parents: 2571
diff changeset
  4623
  bool use_scr = !(store_addr->is_global() || store_addr->is_out());
74a1337e4acc 6484957: G1: parallel concurrent refinement
iveresov
parents: 2571
diff changeset
  4624
  // Pick a scratch register different from "tmp".
74a1337e4acc 6484957: G1: parallel concurrent refinement
iveresov
parents: 2571
diff changeset
  4625
  Register scr = (tmp == G1_scratch ? G3_scratch : G1_scratch);
74a1337e4acc 6484957: G1: parallel concurrent refinement
iveresov
parents: 2571
diff changeset
  4626
  // Make sure we use up the delay slot!
74a1337e4acc 6484957: G1: parallel concurrent refinement
iveresov
parents: 2571
diff changeset
  4627
  if (use_scr) {
74a1337e4acc 6484957: G1: parallel concurrent refinement
iveresov
parents: 2571
diff changeset
  4628
    post_filter_masm->mov(store_addr, scr);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4629
  } else {
2881
74a1337e4acc 6484957: G1: parallel concurrent refinement
iveresov
parents: 2571
diff changeset
  4630
    post_filter_masm->nop();
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4631
  }
2881
74a1337e4acc 6484957: G1: parallel concurrent refinement
iveresov
parents: 2571
diff changeset
  4632
  generate_dirty_card_log_enqueue_if_necessary(bs->byte_map_base);
74a1337e4acc 6484957: G1: parallel concurrent refinement
iveresov
parents: 2571
diff changeset
  4633
  save_frame(0);
74a1337e4acc 6484957: G1: parallel concurrent refinement
iveresov
parents: 2571
diff changeset
  4634
  call(dirty_card_log_enqueue);
74a1337e4acc 6484957: G1: parallel concurrent refinement
iveresov
parents: 2571
diff changeset
  4635
  if (use_scr) {
74a1337e4acc 6484957: G1: parallel concurrent refinement
iveresov
parents: 2571
diff changeset
  4636
    delayed()->mov(scr, O0);
74a1337e4acc 6484957: G1: parallel concurrent refinement
iveresov
parents: 2571
diff changeset
  4637
  } else {
74a1337e4acc 6484957: G1: parallel concurrent refinement
iveresov
parents: 2571
diff changeset
  4638
    delayed()->mov(store_addr->after_save(), O0);
74a1337e4acc 6484957: G1: parallel concurrent refinement
iveresov
parents: 2571
diff changeset
  4639
  }
74a1337e4acc 6484957: G1: parallel concurrent refinement
iveresov
parents: 2571
diff changeset
  4640
  restore();
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4641
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4642
  bind(filtered);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4643
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4644
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4645
#endif  // SERIALGC
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4646
///////////////////////////////////////////////////////////////////////////////////
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4647
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4648
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
  4649
  // 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
  4650
  if (new_val == G0) return;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4651
  CardTableModRefBS* bs = (CardTableModRefBS*) Universe::heap()->barrier_set();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4652
  assert(bs->kind() == BarrierSet::CardTableModRef ||
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4653
         bs->kind() == BarrierSet::CardTableExtension, "wrong barrier");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4654
  card_table_write(bs->byte_map_base, tmp, store_addr);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4655
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  4656
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  4657
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
  4658
  // 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
  4659
  // MachCallDynamicJavaNode::ret_addr_offset()
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4660
  // if this changes, change that.
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4661
  if (UseCompressedOops) {
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  4662
    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
  4663
    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
  4664
  } else {
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  4665
    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
  4666
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4667
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4668
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  4669
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
  4670
  if (UseCompressedOops) {
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  4671
    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
  4672
    encode_heap_oop_not_null(klass);
593
803947e176bd 6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents: 590
diff changeset
  4673
    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
  4674
  } else {
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 371
diff changeset
  4675
    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
  4676
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4677
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4678
593
803947e176bd 6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents: 590
diff changeset
  4679
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
  4680
  if (UseCompressedOops) {
803947e176bd 6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents: 590
diff changeset
  4681
    assert(s != d, "not enough registers");
803947e176bd 6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents: 590
diff changeset
  4682
    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
  4683
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4684
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4685
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  4686
void MacroAssembler::load_heap_oop(const Address& s, Register d) {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4687
  if (UseCompressedOops) {
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  4688
    lduw(s, d);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4689
    decode_heap_oop(d);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4690
  } else {
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  4691
    ld_ptr(s, d);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4692
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4693
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4694
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4695
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
  4696
   if (UseCompressedOops) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4697
    lduw(s1, s2, d);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4698
    decode_heap_oop(d, d);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4699
  } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4700
    ld_ptr(s1, s2, d);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4701
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4702
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4703
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4704
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
  4705
   if (UseCompressedOops) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4706
    lduw(s1, simm13a, d);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4707
    decode_heap_oop(d, d);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4708
  } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4709
    ld_ptr(s1, simm13a, d);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4710
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4711
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4712
6772
2563324665d5 6829194: JSR 292 needs to support compressed oops
twisti
parents: 6418
diff changeset
  4713
void MacroAssembler::load_heap_oop(Register s1, RegisterOrConstant s2, Register d) {
2563324665d5 6829194: JSR 292 needs to support compressed oops
twisti
parents: 6418
diff changeset
  4714
  if (s2.is_constant())  load_heap_oop(s1, s2.as_constant(), d);
2563324665d5 6829194: JSR 292 needs to support compressed oops
twisti
parents: 6418
diff changeset
  4715
  else                   load_heap_oop(s1, s2.as_register(), d);
2563324665d5 6829194: JSR 292 needs to support compressed oops
twisti
parents: 6418
diff changeset
  4716
}
2563324665d5 6829194: JSR 292 needs to support compressed oops
twisti
parents: 6418
diff changeset
  4717
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4718
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
  4719
  if (UseCompressedOops) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4720
    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
  4721
    encode_heap_oop(d);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4722
    st(d, s1, s2);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4723
  } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4724
    st_ptr(d, s1, s2);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4725
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4726
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4727
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4728
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
  4729
  if (UseCompressedOops) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4730
    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
  4731
    encode_heap_oop(d);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4732
    st(d, s1, simm13a);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4733
  } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4734
    st_ptr(d, s1, simm13a);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4735
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4736
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4737
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4738
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
  4739
  if (UseCompressedOops) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4740
    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
  4741
    encode_heap_oop(d);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4742
    st(d, a, offset);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4743
  } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4744
    st_ptr(d, a, offset);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4745
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4746
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4747
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4748
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4749
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
  4750
  assert (UseCompressedOops, "must be compressed");
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4751
  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
  4752
  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
  4753
  verify_oop(src);
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4754
  if (Universe::narrow_oop_base() == NULL) {
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4755
    srlx(src, LogMinObjAlignmentInBytes, dst);
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4756
    return;
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4757
  }
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4758
  Label done;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4759
  if (src == dst) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4760
    // 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
  4761
    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
  4762
    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
  4763
    bind(done);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4764
    srlx(src, LogMinObjAlignmentInBytes, dst);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4765
  } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4766
    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
  4767
    delayed() -> mov(G0, dst);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4768
    // 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
  4769
    // 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
  4770
    sub(src, G6_heapbase, dst);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4771
    srlx(dst, LogMinObjAlignmentInBytes, dst);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4772
    bind(done);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4773
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4774
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4775
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4776
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4777
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
  4778
  assert (UseCompressedOops, "must be compressed");
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4779
  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
  4780
  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
  4781
  verify_oop(r);
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4782
  if (Universe::narrow_oop_base() != NULL)
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4783
    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
  4784
  srlx(r, LogMinObjAlignmentInBytes, r);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4785
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4786
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  4787
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
  4788
  assert (UseCompressedOops, "must be compressed");
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4789
  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
  4790
  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
  4791
  verify_oop(src);
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4792
  if (Universe::narrow_oop_base() == NULL) {
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4793
    srlx(src, LogMinObjAlignmentInBytes, dst);
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4794
  } else {
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4795
    sub(src, G6_heapbase, dst);
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4796
    srlx(dst, LogMinObjAlignmentInBytes, dst);
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4797
  }
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  4798
}
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  4799
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4800
// 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
  4801
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
  4802
  assert (UseCompressedOops, "must be compressed");
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4803
  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
  4804
  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
  4805
  sllx(src, LogMinObjAlignmentInBytes, dst);
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4806
  if (Universe::narrow_oop_base() != NULL) {
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4807
    Label done;
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4808
    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
  4809
    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
  4810
    bind(done);
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4811
  }
604
3967d752d79b 6695819: verify_oopx rax: broken oop in decode_heap_oop
coleenp
parents: 371
diff changeset
  4812
  verify_oop(dst);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4813
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4814
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4815
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
  4816
  // 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
  4817
  // pd_code_size_limit.
604
3967d752d79b 6695819: verify_oopx rax: broken oop in decode_heap_oop
coleenp
parents: 371
diff changeset
  4818
  // 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
  4819
  assert (UseCompressedOops, "must be compressed");
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4820
  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
  4821
  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
  4822
  sllx(r, LogMinObjAlignmentInBytes, r);
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4823
  if (Universe::narrow_oop_base() != NULL)
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4824
    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
  4825
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4826
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  4827
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
  4828
  // 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
  4829
  // pd_code_size_limit.
604
3967d752d79b 6695819: verify_oopx rax: broken oop in decode_heap_oop
coleenp
parents: 371
diff changeset
  4830
  // 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
  4831
  assert (UseCompressedOops, "must be compressed");
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4832
  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
  4833
  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
  4834
  sllx(src, LogMinObjAlignmentInBytes, dst);
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4835
  if (Universe::narrow_oop_base() != NULL)
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 2149
diff changeset
  4836
    add(dst, G6_heapbase, dst);
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  4837
}
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
  4838
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4839
void MacroAssembler::reinit_heapbase() {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4840
  if (UseCompressedOops) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4841
    // call indirectly to solve generation ordering problem
2571
d602ad6538bd 6822110: Add AddressLiteral class on SPARC
twisti
parents: 2534
diff changeset
  4842
    AddressLiteral base(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
  4843
    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
  4844
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4845
}
3905
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4846
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4847
// Compare char[] arrays aligned to 4 bytes.
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4848
void MacroAssembler::char_arrays_equals(Register ary1, Register ary2,
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4849
                                        Register limit, Register result,
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4850
                                        Register chr1, Register chr2, Label& Ldone) {
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4851
  Label Lvector, Lloop;
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4852
  assert(chr1 == result, "should be the same");
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4853
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4854
  // Note: limit contains number of bytes (2*char_elements) != 0.
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4855
  andcc(limit, 0x2, chr1); // trailing character ?
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4856
  br(Assembler::zero, false, Assembler::pt, Lvector);
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4857
  delayed()->nop();
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4858
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4859
  // compare the trailing char
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4860
  sub(limit, sizeof(jchar), limit);
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4861
  lduh(ary1, limit, chr1);
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4862
  lduh(ary2, limit, chr2);
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4863
  cmp(chr1, chr2);
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4864
  br(Assembler::notEqual, true, Assembler::pt, Ldone);
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4865
  delayed()->mov(G0, result);     // not equal
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4866
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4867
  // only one char ?
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 9976
diff changeset
  4868
  cmp_zero_and_br(zero, limit, Ldone, true, Assembler::pn);
3905
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4869
  delayed()->add(G0, 1, result); // zero-length arrays are equal
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4870
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4871
  // word by word compare, dont't need alignment check
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4872
  bind(Lvector);
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4873
  // Shift ary1 and ary2 to the end of the arrays, negate limit
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4874
  add(ary1, limit, ary1);
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4875
  add(ary2, limit, ary2);
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4876
  neg(limit, limit);
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4877
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4878
  lduw(ary1, limit, chr1);
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4879
  bind(Lloop);
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4880
  lduw(ary2, limit, chr2);
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4881
  cmp(chr1, chr2);
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4882
  br(Assembler::notEqual, true, Assembler::pt, Ldone);
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4883
  delayed()->mov(G0, result);     // not equal
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4884
  inccc(limit, 2*sizeof(jchar));
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4885
  // annul LDUW if branch is not taken to prevent access past end of array
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4886
  br(Assembler::notZero, true, Assembler::pt, Lloop);
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4887
  delayed()->lduw(ary1, limit, chr1); // hoisted
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4888
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4889
  // Caller should set it:
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4890
  // add(G0, 1, result); // equals
7d725029ac85 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 3262
diff changeset
  4891
}
10501
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4892
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4893
// Use BIS for zeroing (count is in bytes).
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4894
void MacroAssembler::bis_zeroing(Register to, Register count, Register temp, Label& Ldone) {
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4895
  assert(UseBlockZeroing && VM_Version::has_block_zeroing(), "only works with BIS zeroing");
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4896
  Register end = count;
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4897
  int cache_line_size = VM_Version::prefetch_data_size();
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4898
  // Minimum count when BIS zeroing can be used since
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4899
  // it needs membar which is expensive.
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4900
  int block_zero_size  = MAX2(cache_line_size*3, (int)BlockZeroingLowLimit);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4901
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4902
  Label small_loop;
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4903
  // Check if count is negative (dead code) or zero.
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4904
  // Note, count uses 64bit in 64 bit VM.
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4905
  cmp_and_brx_short(count, 0, Assembler::lessEqual, Assembler::pn, Ldone);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4906
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4907
  // Use BIS zeroing only for big arrays since it requires membar.
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4908
  if (Assembler::is_simm13(block_zero_size)) { // < 4096
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4909
    cmp(count, block_zero_size);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4910
  } else {
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4911
    set(block_zero_size, temp);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4912
    cmp(count, temp);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4913
  }
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4914
  br(Assembler::lessUnsigned, false, Assembler::pt, small_loop);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4915
  delayed()->add(to, count, end);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4916
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4917
  // Note: size is >= three (32 bytes) cache lines.
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4918
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4919
  // Clean the beginning of space up to next cache line.
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4920
  for (int offs = 0; offs < cache_line_size; offs += 8) {
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4921
    stx(G0, to, offs);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4922
  }
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4923
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4924
  // align to next cache line
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4925
  add(to, cache_line_size, to);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4926
  and3(to, -cache_line_size, to);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4927
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4928
  // Note: size left >= two (32 bytes) cache lines.
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4929
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4930
  // BIS should not be used to zero tail (64 bytes)
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4931
  // to avoid zeroing a header of the following object.
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4932
  sub(end, (cache_line_size*2)-8, end);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4933
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4934
  Label bis_loop;
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4935
  bind(bis_loop);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4936
  stxa(G0, to, G0, Assembler::ASI_ST_BLKINIT_PRIMARY);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4937
  add(to, cache_line_size, to);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4938
  cmp_and_brx_short(to, end, Assembler::lessUnsigned, Assembler::pt, bis_loop);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4939
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4940
  // BIS needs membar.
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4941
  membar(Assembler::StoreLoad);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4942
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4943
  add(end, (cache_line_size*2)-8, end); // restore end
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4944
  cmp_and_brx_short(to, end, Assembler::greaterEqualUnsigned, Assembler::pn, Ldone);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4945
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4946
  // Clean the tail.
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4947
  bind(small_loop);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4948
  stx(G0, to, 0);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4949
  add(to, 8, to);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4950
  cmp_and_brx_short(to, end, Assembler::lessUnsigned, Assembler::pt, small_loop);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4951
  nop(); // Separate short branches
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10252
diff changeset
  4952
}