hotspot/src/cpu/x86/vm/c1_MacroAssembler_x86.cpp
author stefank
Fri, 13 Feb 2015 14:37:35 +0100
changeset 29081 c61eb4914428
parent 24018 77b156916bab
child 30305 b92a97e1e9cb
permissions -rw-r--r--
8072911: Remove includes of oop.inline.hpp from .hpp files Reviewed-by: brutisso, coleenp, jwilhelm, simonis, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 24018
diff changeset
     2
 * Copyright (c) 1999, 2015, 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: 5046
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5046
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: 5046
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: 5547
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#include "c1/c1_MacroAssembler.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
#include "c1/c1_Runtime1.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "gc_interface/collectedHeap.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "interpreter/interpreter.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "oops/arrayOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "oops/markOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#include "runtime/basicLock.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#include "runtime/biasedLocking.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    35
#include "runtime/os.hpp"
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 24018
diff changeset
    36
#include "runtime/sharedRuntime.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    37
#include "runtime/stubRoutines.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
int C1_MacroAssembler::lock_object(Register hdr, Register obj, Register disp_hdr, Register scratch, Label& slow_case) {
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
    40
  const int aligned_mask = BytesPerWord -1;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  const int hdr_offset = oopDesc::mark_offset_in_bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  assert(hdr == rax, "hdr must be rax, for the cmpxchg instruction");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  assert(hdr != obj && hdr != disp_hdr && obj != disp_hdr, "registers must be different");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  Label done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  int null_check_offset = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  verify_oop(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  // save object being locked into the BasicObjectLock
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
    50
  movptr(Address(disp_hdr, BasicObjectLock::obj_offset_in_bytes()), obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  if (UseBiasedLocking) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
    assert(scratch != noreg, "should have scratch register at this point");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    null_check_offset = biased_locking_enter(disp_hdr, obj, hdr, scratch, false, done, &slow_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
    null_check_offset = offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  // Load object header
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
    60
  movptr(hdr, Address(obj, hdr_offset));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  // and mark it as unlocked
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
    62
  orptr(hdr, markOopDesc::unlocked_value);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  // save unlocked object header into the displaced header location on the stack
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
    64
  movptr(Address(disp_hdr, 0), hdr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  // test if object header is still the same (i.e. unlocked), and if so, store the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  // displaced header address in the object header - if it is not the same, get the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  // object header instead
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  if (os::is_MP()) MacroAssembler::lock(); // must be immediately before cmpxchg!
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
    69
  cmpxchgptr(disp_hdr, Address(obj, hdr_offset));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  // if the object header was the same, we're done
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  if (PrintBiasedLockingStatistics) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    cond_inc32(Assembler::equal,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
               ExternalAddress((address)BiasedLocking::fast_path_entry_count_addr()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  jcc(Assembler::equal, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  // if the object header was not the same, it is now in the hdr register
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  // => test if it is a stack pointer into the same stack (recursive locking), i.e.:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  // 1) (hdr & aligned_mask) == 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  // 2) rsp <= hdr
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  // 3) hdr <= rsp + page_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  // these 3 tests can be done by evaluating the following expression:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // (hdr - rsp) & (aligned_mask - page_size)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  // assuming both the stack pointer and page_size have their least
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  // significant 2 bits cleared and page_size is a power of 2
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
    89
  subptr(hdr, rsp);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
    90
  andptr(hdr, aligned_mask - os::vm_page_size());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  // for recursive locking, the result is zero => save it in the displaced header
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  // location (NULL in the displaced hdr location indicates recursive locking)
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
    93
  movptr(Address(disp_hdr, 0), hdr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  // otherwise we don't care about the result and handle locking via runtime call
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  jcc(Assembler::notZero, slow_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  // done
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  bind(done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  return null_check_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
void C1_MacroAssembler::unlock_object(Register hdr, Register obj, Register disp_hdr, Label& slow_case) {
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   103
  const int aligned_mask = BytesPerWord -1;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  const int hdr_offset = oopDesc::mark_offset_in_bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  assert(disp_hdr == rax, "disp_hdr must be rax, for the cmpxchg instruction");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  assert(hdr != obj && hdr != disp_hdr && obj != disp_hdr, "registers must be different");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  Label done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  if (UseBiasedLocking) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    // load object
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   111
    movptr(obj, Address(disp_hdr, BasicObjectLock::obj_offset_in_bytes()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    biased_locking_exit(obj, hdr, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  // load displaced header
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   116
  movptr(hdr, Address(disp_hdr, 0));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  // if the loaded hdr is NULL we had recursive locking
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   118
  testptr(hdr, hdr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  // if we had recursive locking, we are done
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  jcc(Assembler::zero, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  if (!UseBiasedLocking) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    // load object
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   123
    movptr(obj, Address(disp_hdr, BasicObjectLock::obj_offset_in_bytes()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  verify_oop(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  // test if object header is pointing to the displaced header, and if so, restore
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  // the displaced header in the object - if the object header is not pointing to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  // the displaced header, get the object header instead
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  if (os::is_MP()) MacroAssembler::lock(); // must be immediately before cmpxchg!
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   130
  cmpxchgptr(hdr, Address(obj, hdr_offset));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  // if the object header was not pointing to the displaced header,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  // we do unlocking via runtime call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  jcc(Assembler::notEqual, slow_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  // done
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  bind(done);
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
// Defines obj, preserves var_size_in_bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
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
   141
  if (UseTLAB) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
    tlab_allocate(obj, var_size_in_bytes, con_size_in_bytes, t1, t2, slow_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    eden_allocate(obj, var_size_in_bytes, con_size_in_bytes, t1, slow_case);
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7427
diff changeset
   145
    incr_allocated_bytes(noreg, var_size_in_bytes, con_size_in_bytes, t1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
void C1_MacroAssembler::initialize_header(Register obj, Register klass, Register len, Register t1, Register t2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  assert_different_registers(obj, klass, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  if (UseBiasedLocking && !len->is_valid()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    assert_different_registers(obj, klass, len, t1, t2);
11430
718fc06da49a 7118863: Move sizeof(klassOopDesc) into the *Klass::*_offset_in_bytes() functions
stefank
parents: 7724
diff changeset
   154
    movptr(t1, Address(klass, Klass::prototype_header_offset()));
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   155
    movptr(Address(obj, oopDesc::mark_offset_in_bytes()), t1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  } else {
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   157
    // This assumes that all prototype bits fit in an int32_t
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   158
    movptr(Address(obj, oopDesc::mark_offset_in_bytes ()), (int32_t)(intptr_t)markOopDesc::prototype());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  }
7427
d7b79a367474 6985015: C1 needs to support compressed oops
iveresov
parents: 7397
diff changeset
   160
#ifdef _LP64
19979
ebe1dbb6e1aa 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents: 13969
diff changeset
   161
  if (UseCompressedClassPointers) { // Take care not to kill klass
7427
d7b79a367474 6985015: C1 needs to support compressed oops
iveresov
parents: 7397
diff changeset
   162
    movptr(t1, klass);
13969
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13728
diff changeset
   163
    encode_klass_not_null(t1);
7427
d7b79a367474 6985015: C1 needs to support compressed oops
iveresov
parents: 7397
diff changeset
   164
    movl(Address(obj, oopDesc::klass_offset_in_bytes()), t1);
d7b79a367474 6985015: C1 needs to support compressed oops
iveresov
parents: 7397
diff changeset
   165
  } else
d7b79a367474 6985015: C1 needs to support compressed oops
iveresov
parents: 7397
diff changeset
   166
#endif
d7b79a367474 6985015: C1 needs to support compressed oops
iveresov
parents: 7397
diff changeset
   167
  {
d7b79a367474 6985015: C1 needs to support compressed oops
iveresov
parents: 7397
diff changeset
   168
    movptr(Address(obj, oopDesc::klass_offset_in_bytes()), klass);
d7b79a367474 6985015: C1 needs to support compressed oops
iveresov
parents: 7397
diff changeset
   169
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  if (len->is_valid()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    movl(Address(obj, arrayOopDesc::length_offset_in_bytes()), len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  }
7427
d7b79a367474 6985015: C1 needs to support compressed oops
iveresov
parents: 7397
diff changeset
   174
#ifdef _LP64
19979
ebe1dbb6e1aa 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents: 13969
diff changeset
   175
  else if (UseCompressedClassPointers) {
7427
d7b79a367474 6985015: C1 needs to support compressed oops
iveresov
parents: 7397
diff changeset
   176
    xorptr(t1, t1);
d7b79a367474 6985015: C1 needs to support compressed oops
iveresov
parents: 7397
diff changeset
   177
    store_klass_gap(obj, t1);
d7b79a367474 6985015: C1 needs to support compressed oops
iveresov
parents: 7397
diff changeset
   178
  }
d7b79a367474 6985015: C1 needs to support compressed oops
iveresov
parents: 7397
diff changeset
   179
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
// preserves obj, destroys len_in_bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
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
   185
  Label done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  assert(obj != len_in_bytes && obj != t1 && t1 != len_in_bytes, "registers must be different");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  assert((hdr_size_in_bytes & (BytesPerWord - 1)) == 0, "header size is not a multiple of BytesPerWord");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  Register index = len_in_bytes;
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   189
  // index is positive and ptr sized
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   190
  subptr(index, hdr_size_in_bytes);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  jcc(Assembler::zero, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  // initialize topmost word, divide index by 2, check if odd and test if zero
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  // note: for the remaining code to work, index must be a multiple of BytesPerWord
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  { Label L;
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   196
    testptr(index, BytesPerWord - 1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    jcc(Assembler::zero, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
    stop("index is not a multiple of BytesPerWord");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
    bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
#endif
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   202
  xorptr(t1, t1);    // use _zero reg to clear memory (shorter code)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  if (UseIncDec) {
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   204
    shrptr(index, 3);  // divide by 8/16 and set carry flag if bit 2 was set
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  } else {
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   206
    shrptr(index, 2);  // use 2 instructions to avoid partial flag stall
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   207
    shrptr(index, 1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  }
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   209
#ifndef _LP64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  // index could have been not a multiple of 8 (i.e., bit 2 was set)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  { Label even;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
    // note: if index was a multiple of 8, than it cannot
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
    //       be 0 now otherwise it must have been 0 before
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    //       => if it is even, we don't need to check for 0 again
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    jcc(Assembler::carryClear, even);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
    // clear topmost word (no jump needed if conditional assignment would work here)
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   217
    movptr(Address(obj, index, Address::times_8, hdr_size_in_bytes - 0*BytesPerWord), t1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
    // index could be 0 now, need to check again
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
    jcc(Assembler::zero, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
    bind(even);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  }
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   222
#endif // !_LP64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  // initialize remaining object fields: rdx is a multiple of 2 now
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  { Label loop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    bind(loop);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   226
    movptr(Address(obj, index, Address::times_8, hdr_size_in_bytes - 1*BytesPerWord), t1);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   227
    NOT_LP64(movptr(Address(obj, index, Address::times_8, hdr_size_in_bytes - 2*BytesPerWord), t1);)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
    decrement(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
    jcc(Assembler::notZero, loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  // done
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  bind(done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
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
   238
  assert(obj == rax, "obj must be in rax, for cmpxchg");
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7427
diff changeset
   239
  assert_different_registers(obj, t1, t2); // XXX really?
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  assert(header_size >= 0 && object_size >= header_size, "illegal sizes");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  try_allocate(obj, noreg, object_size * BytesPerWord, t1, t2, slow_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  initialize_object(obj, klass, noreg, object_size * HeapWordSize, t1, t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
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
   248
  assert((con_size_in_bytes & MinObjAlignmentInBytesMask) == 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
         "con_size_in_bytes is not multiple of alignment");
7427
d7b79a367474 6985015: C1 needs to support compressed oops
iveresov
parents: 7397
diff changeset
   250
  const int hdr_size_in_bytes = instanceOopDesc::header_size() * HeapWordSize;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  initialize_header(obj, klass, noreg, t1, t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  // clear rest of allocated space
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  const Register t1_zero = t1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  const Register index = t2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  const int threshold = 6 * BytesPerWord;   // approximate break even point for code size (see comments below)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  if (var_size_in_bytes != noreg) {
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   259
    mov(index, var_size_in_bytes);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
    initialize_body(obj, index, hdr_size_in_bytes, t1_zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  } else if (con_size_in_bytes <= threshold) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
    // use explicit null stores
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
    // code size = 2 + 3*n bytes (n = number of fields to clear)
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   264
    xorptr(t1_zero, t1_zero); // use t1_zero reg to clear memory (shorter code)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
    for (int i = hdr_size_in_bytes; i < con_size_in_bytes; i += BytesPerWord)
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   266
      movptr(Address(obj, i), t1_zero);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  } else if (con_size_in_bytes > hdr_size_in_bytes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
    // use loop to null out the fields
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
    // code size = 16 bytes for even n (n = number of fields to clear)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
    // initialize last object field first if odd number of fields
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   271
    xorptr(t1_zero, t1_zero); // use t1_zero reg to clear memory (shorter code)
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   272
    movptr(index, (con_size_in_bytes - hdr_size_in_bytes) >> 3);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
    // initialize last object field if constant size is odd
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
    if (((con_size_in_bytes - hdr_size_in_bytes) & 4) != 0)
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   275
      movptr(Address(obj, con_size_in_bytes - (1*BytesPerWord)), t1_zero);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
    // initialize remaining object fields: rdx is a multiple of 2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
    { Label loop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
      bind(loop);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   279
      movptr(Address(obj, index, Address::times_8, hdr_size_in_bytes - (1*BytesPerWord)),
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   280
             t1_zero);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   281
      NOT_LP64(movptr(Address(obj, index, Address::times_8, hdr_size_in_bytes - (2*BytesPerWord)),
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   282
             t1_zero);)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
      decrement(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
      jcc(Assembler::notZero, loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
2867
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1066
diff changeset
   288
  if (CURRENT_ENV->dtrace_alloc_probes()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
    assert(obj == rax, "must be");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
    call(RuntimeAddress(Runtime1::entry_for(Runtime1::dtrace_object_alloc_id)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  verify_oop(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
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
   297
  assert(obj == rax, "obj must be in rax, for cmpxchg");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  assert_different_registers(obj, len, t1, t2, klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  // determine alignment mask
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   301
  assert(!(BytesPerWord & 1), "must be a multiple of 2 for masking code to work");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  // check for negative or excessive length
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   304
  cmpptr(len, (int32_t)max_array_allocation_length);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  jcc(Assembler::above, slow_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  const Register arr_size = t2; // okay to be the same
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  // align object end
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   309
  movptr(arr_size, (int32_t)header_size * BytesPerWord + MinObjAlignmentInBytesMask);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   310
  lea(arr_size, Address(arr_size, len, f));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   311
  andptr(arr_size, ~MinObjAlignmentInBytesMask);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  try_allocate(obj, arr_size, 0, t1, t2, slow_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  initialize_header(obj, klass, len, t1, t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  // clear rest of allocated space
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  const Register len_zero = len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  initialize_body(obj, arr_size, header_size * BytesPerWord, len_zero);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
2867
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1066
diff changeset
   321
  if (CURRENT_ENV->dtrace_alloc_probes()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
    assert(obj == rax, "must be");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
    call(RuntimeAddress(Runtime1::entry_for(Runtime1::dtrace_object_alloc_id)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  verify_oop(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
void C1_MacroAssembler::inline_cache_check(Register receiver, Register iCache) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  verify_oop(receiver);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  // explicit NULL check not needed since load from [klass_offset] causes a trap
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  // check against inline cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  assert(!MacroAssembler::needs_explicit_null_check(oopDesc::klass_offset_in_bytes()), "must add explicit null check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  int start_offset = offset();
7427
d7b79a367474 6985015: C1 needs to support compressed oops
iveresov
parents: 7397
diff changeset
   337
19979
ebe1dbb6e1aa 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents: 13969
diff changeset
   338
  if (UseCompressedClassPointers) {
7427
d7b79a367474 6985015: C1 needs to support compressed oops
iveresov
parents: 7397
diff changeset
   339
    load_klass(rscratch1, receiver);
d7b79a367474 6985015: C1 needs to support compressed oops
iveresov
parents: 7397
diff changeset
   340
    cmpptr(rscratch1, iCache);
d7b79a367474 6985015: C1 needs to support compressed oops
iveresov
parents: 7397
diff changeset
   341
  } else {
d7b79a367474 6985015: C1 needs to support compressed oops
iveresov
parents: 7397
diff changeset
   342
    cmpptr(iCache, Address(receiver, oopDesc::klass_offset_in_bytes()));
d7b79a367474 6985015: C1 needs to support compressed oops
iveresov
parents: 7397
diff changeset
   343
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  // if icache check fails, then jump to runtime routine
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  // Note: RECEIVER must still contain the receiver!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  jump_cc(Assembler::notEqual,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
          RuntimeAddress(SharedRuntime::get_ic_miss_stub()));
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   348
  const int ic_cmp_size = LP64_ONLY(10) NOT_LP64(9);
19979
ebe1dbb6e1aa 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents: 13969
diff changeset
   349
  assert(UseCompressedClassPointers || offset() - start_offset == ic_cmp_size, "check alignment in emit_method_entry");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
24018
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 22234
diff changeset
   353
void C1_MacroAssembler::build_frame(int frame_size_in_bytes, int bang_size_in_bytes) {
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 22234
diff changeset
   354
  assert(bang_size_in_bytes >= frame_size_in_bytes, "stack bang size incorrect");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  // Make sure there is enough stack space for this method's activation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  // Note that we do this before doing an enter(). This matches the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  // ordering of C2's stack overflow check / rsp decrement and allows
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  // the SharedRuntime stack overflow handling to be consistent
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  // between the two compilers.
24018
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 22234
diff changeset
   360
  generate_stack_overflow_check(bang_size_in_bytes);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
5046
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 3261
diff changeset
   362
  push(rbp);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
#ifdef TIERED
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  // c2 leaves fpu stack dirty. Clean it on entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  if (UseSSE < 2 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
    empty_FPU_stack();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
#endif // TIERED
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  decrement(rsp, frame_size_in_bytes); // does not emit code for frame_size == 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
5046
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 3261
diff changeset
   373
void C1_MacroAssembler::remove_frame(int frame_size_in_bytes) {
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 3261
diff changeset
   374
  increment(rsp, frame_size_in_bytes);  // Does not emit code for frame_size == 0
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 3261
diff changeset
   375
  pop(rbp);
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 3261
diff changeset
   376
}
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 3261
diff changeset
   377
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 3261
diff changeset
   378
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
void C1_MacroAssembler::unverified_entry(Register receiver, Register ic_klass) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  if (C1Breakpoint) int3();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  inline_cache_check(receiver, ic_klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
void C1_MacroAssembler::verified_entry() {
11791
3be8cae67887 7125136: SIGILL on linux amd64 in gc/ArrayJuggle/Juggle29
kvn
parents: 11430
diff changeset
   386
  if (C1Breakpoint || VerifyFPU || !UseStackBanging) {
3be8cae67887 7125136: SIGILL on linux amd64 in gc/ArrayJuggle/Juggle29
kvn
parents: 11430
diff changeset
   387
    // Verified Entry first instruction should be 5 bytes long for correct
3be8cae67887 7125136: SIGILL on linux amd64 in gc/ArrayJuggle/Juggle29
kvn
parents: 11430
diff changeset
   388
    // patching by patch_verified_entry().
3be8cae67887 7125136: SIGILL on linux amd64 in gc/ArrayJuggle/Juggle29
kvn
parents: 11430
diff changeset
   389
    //
3be8cae67887 7125136: SIGILL on linux amd64 in gc/ArrayJuggle/Juggle29
kvn
parents: 11430
diff changeset
   390
    // C1Breakpoint and VerifyFPU have one byte first instruction.
3be8cae67887 7125136: SIGILL on linux amd64 in gc/ArrayJuggle/Juggle29
kvn
parents: 11430
diff changeset
   391
    // Also first instruction will be one byte "push(rbp)" if stack banging
3be8cae67887 7125136: SIGILL on linux amd64 in gc/ArrayJuggle/Juggle29
kvn
parents: 11430
diff changeset
   392
    // code is not generated (see build_frame() above).
3be8cae67887 7125136: SIGILL on linux amd64 in gc/ArrayJuggle/Juggle29
kvn
parents: 11430
diff changeset
   393
    // For all these cases generate long instruction first.
3be8cae67887 7125136: SIGILL on linux amd64 in gc/ArrayJuggle/Juggle29
kvn
parents: 11430
diff changeset
   394
    fat_nop();
3be8cae67887 7125136: SIGILL on linux amd64 in gc/ArrayJuggle/Juggle29
kvn
parents: 11430
diff changeset
   395
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  if (C1Breakpoint)int3();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  // build frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  verify_FPU(0, "method_entry");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
void C1_MacroAssembler::verify_stack_oop(int stack_offset) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  if (!VerifyOops) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  verify_oop_addr(Address(rsp, stack_offset));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
void C1_MacroAssembler::verify_not_null_oop(Register r) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  if (!VerifyOops) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  Label not_null;
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   412
  testptr(r, r);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  jcc(Assembler::notZero, not_null);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  stop("non-null oop required");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  bind(not_null);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  verify_oop(r);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
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
   420
#ifdef ASSERT
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   421
  if (inv_rax) movptr(rax, 0xDEAD);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   422
  if (inv_rbx) movptr(rbx, 0xDEAD);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   423
  if (inv_rcx) movptr(rcx, 0xDEAD);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   424
  if (inv_rdx) movptr(rdx, 0xDEAD);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   425
  if (inv_rsi) movptr(rsi, 0xDEAD);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   426
  if (inv_rdi) movptr(rdi, 0xDEAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
#endif // ifndef PRODUCT