hotspot/src/cpu/x86/vm/c1_MacroAssembler_x86.cpp
author coleenp
Sun, 13 Apr 2008 17:43:42 -0400
changeset 360 21d113ecbf6a
parent 1 489c9b5090e2
child 670 ddf3e9583f2f
permissions -rw-r--r--
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes Summary: Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1999-2007 Sun Microsystems, Inc.  All Rights Reserved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
#include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
#include "incls/_c1_MacroAssembler_x86.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
int C1_MacroAssembler::lock_object(Register hdr, Register obj, Register disp_hdr, Register scratch, Label& slow_case) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
  const int aligned_mask = 3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
  const int hdr_offset = oopDesc::mark_offset_in_bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  assert(hdr == rax, "hdr must be rax, for the cmpxchg instruction");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
  assert(hdr != obj && hdr != disp_hdr && obj != disp_hdr, "registers must be different");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  assert(BytesPerWord == 4, "adjust aligned_mask and code");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  Label done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  int null_check_offset = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  verify_oop(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  // save object being locked into the BasicObjectLock
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  movl(Address(disp_hdr, BasicObjectLock::obj_offset_in_bytes()), obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  if (UseBiasedLocking) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
    assert(scratch != noreg, "should have scratch register at this point");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
    null_check_offset = biased_locking_enter(disp_hdr, obj, hdr, scratch, false, done, &slow_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
    null_check_offset = offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  // Load object header
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  movl(hdr, Address(obj, hdr_offset));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  // and mark it as unlocked
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  orl(hdr, markOopDesc::unlocked_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  // save unlocked object header into the displaced header location on the stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  movl(Address(disp_hdr, 0), hdr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  // test if object header is still the same (i.e. unlocked), and if so, store the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  // displaced header address in the object header - if it is not the same, get the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  // object header instead
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  if (os::is_MP()) MacroAssembler::lock(); // must be immediately before cmpxchg!
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  cmpxchg(disp_hdr, Address(obj, hdr_offset));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  // if the object header was the same, we're done
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  if (PrintBiasedLockingStatistics) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    cond_inc32(Assembler::equal,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
               ExternalAddress((address)BiasedLocking::fast_path_entry_count_addr()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  jcc(Assembler::equal, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  // if the object header was not the same, it is now in the hdr register
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  // => test if it is a stack pointer into the same stack (recursive locking), i.e.:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  // 1) (hdr & aligned_mask) == 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  // 2) rsp <= hdr
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  // 3) hdr <= rsp + page_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  // these 3 tests can be done by evaluating the following expression:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  // (hdr - rsp) & (aligned_mask - page_size)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  // assuming both the stack pointer and page_size have their least
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  // significant 2 bits cleared and page_size is a power of 2
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  subl(hdr, rsp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  andl(hdr, aligned_mask - os::vm_page_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  // for recursive locking, the result is zero => save it in the displaced header
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  // location (NULL in the displaced hdr location indicates recursive locking)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  movl(Address(disp_hdr, 0), hdr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  // otherwise we don't care about the result and handle locking via runtime call
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  jcc(Assembler::notZero, slow_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  // done
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  bind(done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  return null_check_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
void C1_MacroAssembler::unlock_object(Register hdr, Register obj, Register disp_hdr, Label& slow_case) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  const int aligned_mask = 3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  const int hdr_offset = oopDesc::mark_offset_in_bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  assert(disp_hdr == rax, "disp_hdr must be rax, for the cmpxchg instruction");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  assert(hdr != obj && hdr != disp_hdr && obj != disp_hdr, "registers must be different");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  assert(BytesPerWord == 4, "adjust aligned_mask and code");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  Label done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  if (UseBiasedLocking) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    // load object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    movl(obj, Address(disp_hdr, BasicObjectLock::obj_offset_in_bytes()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    biased_locking_exit(obj, hdr, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  // load displaced header
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  movl(hdr, Address(disp_hdr, 0));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // if the loaded hdr is NULL we had recursive locking
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  testl(hdr, hdr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  // if we had recursive locking, we are done
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  jcc(Assembler::zero, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  if (!UseBiasedLocking) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    // load object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    movl(obj, Address(disp_hdr, BasicObjectLock::obj_offset_in_bytes()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  verify_oop(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  // test if object header is pointing to the displaced header, and if so, restore
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  // the displaced header in the object - if the object header is not pointing to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  // the displaced header, get the object header instead
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  if (os::is_MP()) MacroAssembler::lock(); // must be immediately before cmpxchg!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  cmpxchg(hdr, Address(obj, hdr_offset));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  // if the object header was not pointing to the displaced header,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  // we do unlocking via runtime call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  jcc(Assembler::notEqual, slow_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  // done
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  bind(done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
// Defines obj, preserves var_size_in_bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
void C1_MacroAssembler::try_allocate(Register obj, Register var_size_in_bytes, int con_size_in_bytes, Register t1, Register t2, Label& slow_case) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  if (UseTLAB) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    tlab_allocate(obj, var_size_in_bytes, con_size_in_bytes, t1, t2, slow_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    eden_allocate(obj, var_size_in_bytes, con_size_in_bytes, t1, slow_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
void C1_MacroAssembler::initialize_header(Register obj, Register klass, Register len, Register t1, Register t2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  assert_different_registers(obj, klass, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  if (UseBiasedLocking && !len->is_valid()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    assert_different_registers(obj, klass, len, t1, t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    movl(t1, Address(klass, Klass::prototype_header_offset_in_bytes() + klassOopDesc::klass_part_offset_in_bytes()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    movl(Address(obj, oopDesc::mark_offset_in_bytes()), t1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    movl(Address(obj, oopDesc::mark_offset_in_bytes ()), (int)markOopDesc::prototype());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  movl(Address(obj, oopDesc::klass_offset_in_bytes()), klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  if (len->is_valid()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
    movl(Address(obj, arrayOopDesc::length_offset_in_bytes()), len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
// preserves obj, destroys len_in_bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
void C1_MacroAssembler::initialize_body(Register obj, Register len_in_bytes, int hdr_size_in_bytes, Register t1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  Label done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  assert(obj != len_in_bytes && obj != t1 && t1 != len_in_bytes, "registers must be different");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  assert((hdr_size_in_bytes & (BytesPerWord - 1)) == 0, "header size is not a multiple of BytesPerWord");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  Register index = len_in_bytes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  subl(index, hdr_size_in_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  jcc(Assembler::zero, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  // initialize topmost word, divide index by 2, check if odd and test if zero
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  // note: for the remaining code to work, index must be a multiple of BytesPerWord
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  { Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    testl(index, BytesPerWord - 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    jcc(Assembler::zero, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    stop("index is not a multiple of BytesPerWord");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  xorl(t1, t1);      // use _zero reg to clear memory (shorter code)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  if (UseIncDec) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    shrl(index, 3);  // divide by 8 and set carry flag if bit 2 was set
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
    shrl(index, 2);  // use 2 instructions to avoid partial flag stall
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    shrl(index, 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  // index could have been not a multiple of 8 (i.e., bit 2 was set)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  { Label even;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    // note: if index was a multiple of 8, than it cannot
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
    //       be 0 now otherwise it must have been 0 before
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    //       => if it is even, we don't need to check for 0 again
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
    jcc(Assembler::carryClear, even);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
    // clear topmost word (no jump needed if conditional assignment would work here)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
    movl(Address(obj, index, Address::times_8, hdr_size_in_bytes - 0*BytesPerWord), t1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
    // index could be 0 now, need to check again
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
    jcc(Assembler::zero, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
    bind(even);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  // initialize remaining object fields: rdx is a multiple of 2 now
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  { Label loop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
    bind(loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    movl(Address(obj, index, Address::times_8, hdr_size_in_bytes - 1*BytesPerWord), t1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
    movl(Address(obj, index, Address::times_8, hdr_size_in_bytes - 2*BytesPerWord), t1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
    decrement(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
    jcc(Assembler::notZero, loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  // done
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  bind(done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
void C1_MacroAssembler::allocate_object(Register obj, Register t1, Register t2, int header_size, int object_size, Register klass, Label& slow_case) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  assert(obj == rax, "obj must be in rax, for cmpxchg");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  assert(obj != t1 && obj != t2 && t1 != t2, "registers must be different"); // XXX really?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  assert(header_size >= 0 && object_size >= header_size, "illegal sizes");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  try_allocate(obj, noreg, object_size * BytesPerWord, t1, t2, slow_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  initialize_object(obj, klass, noreg, object_size * HeapWordSize, t1, t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
void C1_MacroAssembler::initialize_object(Register obj, Register klass, Register var_size_in_bytes, int con_size_in_bytes, Register t1, Register t2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  assert((con_size_in_bytes & MinObjAlignmentInBytesMask) == 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
         "con_size_in_bytes is not multiple of alignment");
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   221
  const int hdr_size_in_bytes = instanceOopDesc::base_offset_in_bytes();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  initialize_header(obj, klass, noreg, t1, t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  // clear rest of allocated space
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  const Register t1_zero = t1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  const Register index = t2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  const int threshold = 6 * BytesPerWord;   // approximate break even point for code size (see comments below)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  if (var_size_in_bytes != noreg) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    movl(index, var_size_in_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    initialize_body(obj, index, hdr_size_in_bytes, t1_zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  } else if (con_size_in_bytes <= threshold) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
    // use explicit null stores
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
    // code size = 2 + 3*n bytes (n = number of fields to clear)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
    xorl(t1_zero, t1_zero); // use t1_zero reg to clear memory (shorter code)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
    for (int i = hdr_size_in_bytes; i < con_size_in_bytes; i += BytesPerWord)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
      movl(Address(obj, i), t1_zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  } else if (con_size_in_bytes > hdr_size_in_bytes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
    // use loop to null out the fields
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
    // code size = 16 bytes for even n (n = number of fields to clear)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
    // initialize last object field first if odd number of fields
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
    xorl(t1_zero, t1_zero); // use t1_zero reg to clear memory (shorter code)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
    movl(index, (con_size_in_bytes - hdr_size_in_bytes) >> 3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    // initialize last object field if constant size is odd
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
    if (((con_size_in_bytes - hdr_size_in_bytes) & 4) != 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
      movl(Address(obj, con_size_in_bytes - (1*BytesPerWord)), t1_zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
    // initialize remaining object fields: rdx is a multiple of 2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
    { Label loop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
      bind(loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
      movl(Address(obj, index, Address::times_8,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
        hdr_size_in_bytes - (1*BytesPerWord)), t1_zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
      movl(Address(obj, index, Address::times_8,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
        hdr_size_in_bytes - (2*BytesPerWord)), t1_zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
      decrement(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
      jcc(Assembler::notZero, loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  if (DTraceAllocProbes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
    assert(obj == rax, "must be");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
    call(RuntimeAddress(Runtime1::entry_for(Runtime1::dtrace_object_alloc_id)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  verify_oop(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
void C1_MacroAssembler::allocate_array(Register obj, Register len, Register t1, Register t2, int header_size, Address::ScaleFactor f, Register klass, Label& slow_case) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  assert(obj == rax, "obj must be in rax, for cmpxchg");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  assert_different_registers(obj, len, t1, t2, klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  // determine alignment mask
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  assert(BytesPerWord == 4, "must be a multiple of 2 for masking code to work");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  // check for negative or excessive length
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  cmpl(len, max_array_allocation_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  jcc(Assembler::above, slow_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  const Register arr_size = t2; // okay to be the same
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  // align object end
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  movl(arr_size, header_size * BytesPerWord + MinObjAlignmentInBytesMask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  leal(arr_size, Address(arr_size, len, f));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  andl(arr_size, ~MinObjAlignmentInBytesMask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  try_allocate(obj, arr_size, 0, t1, t2, slow_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  initialize_header(obj, klass, len, t1, t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  // clear rest of allocated space
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  const Register len_zero = len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  initialize_body(obj, arr_size, header_size * BytesPerWord, len_zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  if (DTraceAllocProbes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
    assert(obj == rax, "must be");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
    call(RuntimeAddress(Runtime1::entry_for(Runtime1::dtrace_object_alloc_id)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  verify_oop(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
void C1_MacroAssembler::inline_cache_check(Register receiver, Register iCache) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  verify_oop(receiver);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  // explicit NULL check not needed since load from [klass_offset] causes a trap
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  // check against inline cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  assert(!MacroAssembler::needs_explicit_null_check(oopDesc::klass_offset_in_bytes()), "must add explicit null check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  int start_offset = offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  cmpl(iCache, Address(receiver, oopDesc::klass_offset_in_bytes()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  // if icache check fails, then jump to runtime routine
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  // Note: RECEIVER must still contain the receiver!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  jump_cc(Assembler::notEqual,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
          RuntimeAddress(SharedRuntime::get_ic_miss_stub()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  assert(offset() - start_offset == 9, "check alignment in emit_method_entry");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
void C1_MacroAssembler::method_exit(bool restore_frame) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  if (restore_frame) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
    leave();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
void C1_MacroAssembler::build_frame(int frame_size_in_bytes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  // Make sure there is enough stack space for this method's activation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  // Note that we do this before doing an enter(). This matches the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  // ordering of C2's stack overflow check / rsp decrement and allows
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  // the SharedRuntime stack overflow handling to be consistent
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  // between the two compilers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  generate_stack_overflow_check(frame_size_in_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  enter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
#ifdef TIERED
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  // c2 leaves fpu stack dirty. Clean it on entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  if (UseSSE < 2 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
    empty_FPU_stack();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
#endif // TIERED
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  decrement(rsp, frame_size_in_bytes); // does not emit code for frame_size == 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
void C1_MacroAssembler::unverified_entry(Register receiver, Register ic_klass) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  if (C1Breakpoint) int3();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  inline_cache_check(receiver, ic_klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
void C1_MacroAssembler::verified_entry() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  if (C1Breakpoint)int3();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  // build frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  verify_FPU(0, "method_entry");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
void C1_MacroAssembler::verify_stack_oop(int stack_offset) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  if (!VerifyOops) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  verify_oop_addr(Address(rsp, stack_offset));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
void C1_MacroAssembler::verify_not_null_oop(Register r) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  if (!VerifyOops) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  Label not_null;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  testl(r, r);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  jcc(Assembler::notZero, not_null);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  stop("non-null oop required");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  bind(not_null);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  verify_oop(r);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
void C1_MacroAssembler::invalidate_registers(bool inv_rax, bool inv_rbx, bool inv_rcx, bool inv_rdx, bool inv_rsi, bool inv_rdi) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  if (inv_rax) movl(rax, 0xDEAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  if (inv_rbx) movl(rbx, 0xDEAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  if (inv_rcx) movl(rcx, 0xDEAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  if (inv_rdx) movl(rdx, 0xDEAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  if (inv_rsi) movl(rsi, 0xDEAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  if (inv_rdi) movl(rdi, 0xDEAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
#endif // ifndef PRODUCT