hotspot/src/cpu/x86/vm/c1_Runtime1_x86.cpp
author jprovino
Wed, 23 Jan 2013 13:02:39 -0500
changeset 15482 470d0b0c09f1
parent 13728 882756847a04
child 16611 6807a703dd6b
permissions -rw-r--r--
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS Summary: Rename INCLUDE_ALTERNATE_GCS to INCLUDE_ALL_GCS and replace SERIALGC with INCLUDE_ALL_GCS. Reviewed-by: coleenp, stefank
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11962
diff changeset
     2
 * Copyright (c) 1999, 2012, 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: 5252
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5252
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: 5252
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: 6453
diff changeset
    25
#include "precompiled.hpp"
8882
f852635a6383 7032388: guarantee(VM_Version::supports_cmov()) failed: illegal instruction on i586 after 6919934
twisti
parents: 8495
diff changeset
    26
#include "asm/assembler.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    27
#include "c1/c1_Defs.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    28
#include "c1/c1_MacroAssembler.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    29
#include "c1/c1_Runtime1.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    30
#include "interpreter/interpreter.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    31
#include "nativeInst_x86.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11962
diff changeset
    32
#include "oops/compiledICHolder.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    33
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    34
#include "prims/jvmtiExport.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    35
#include "register_x86.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    36
#include "runtime/sharedRuntime.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    37
#include "runtime/signature.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    38
#include "runtime/vframeArray.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13728
diff changeset
    39
#include "utilities/macros.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    40
#include "vmreg_x86.inline.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
// Implementation of StubAssembler
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11962
diff changeset
    45
int StubAssembler::call_RT(Register oop_result1, Register metadata_result, address entry, int args_size) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  // setup registers
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
    47
  const Register thread = NOT_LP64(rdi) LP64_ONLY(r15_thread); // is callee-saved register (Visual C++ calling conventions)
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11962
diff changeset
    48
  assert(!(oop_result1->is_valid() || metadata_result->is_valid()) || oop_result1 != metadata_result, "registers must be different");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11962
diff changeset
    49
  assert(oop_result1 != thread && metadata_result != thread, "registers must be different");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  assert(args_size >= 0, "illegal args_size");
11962
42ae1f21ed2b 7148486: At a method handle call returning with an exception may call the runtime with misaligned stack (x64)
roland
parents: 11439
diff changeset
    51
  bool align_stack = false;
42ae1f21ed2b 7148486: At a method handle call returning with an exception may call the runtime with misaligned stack (x64)
roland
parents: 11439
diff changeset
    52
#ifdef _LP64
42ae1f21ed2b 7148486: At a method handle call returning with an exception may call the runtime with misaligned stack (x64)
roland
parents: 11439
diff changeset
    53
  // At a method handle call, the stack may not be properly aligned
42ae1f21ed2b 7148486: At a method handle call returning with an exception may call the runtime with misaligned stack (x64)
roland
parents: 11439
diff changeset
    54
  // when returning with an exception.
42ae1f21ed2b 7148486: At a method handle call returning with an exception may call the runtime with misaligned stack (x64)
roland
parents: 11439
diff changeset
    55
  align_stack = (stub_id() == Runtime1::handle_exception_from_callee_id);
42ae1f21ed2b 7148486: At a method handle call returning with an exception may call the runtime with misaligned stack (x64)
roland
parents: 11439
diff changeset
    56
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
    58
#ifdef _LP64
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
    59
  mov(c_rarg0, thread);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
    60
  set_num_rt_args(0); // Nothing on stack
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
    61
#else
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  set_num_rt_args(1 + args_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  // push java thread (becomes first argument of C function)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  get_thread(thread);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
    66
  push(thread);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
    67
#endif // _LP64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
11962
42ae1f21ed2b 7148486: At a method handle call returning with an exception may call the runtime with misaligned stack (x64)
roland
parents: 11439
diff changeset
    69
  int call_offset;
42ae1f21ed2b 7148486: At a method handle call returning with an exception may call the runtime with misaligned stack (x64)
roland
parents: 11439
diff changeset
    70
  if (!align_stack) {
42ae1f21ed2b 7148486: At a method handle call returning with an exception may call the runtime with misaligned stack (x64)
roland
parents: 11439
diff changeset
    71
    set_last_Java_frame(thread, noreg, rbp, NULL);
42ae1f21ed2b 7148486: At a method handle call returning with an exception may call the runtime with misaligned stack (x64)
roland
parents: 11439
diff changeset
    72
  } else {
42ae1f21ed2b 7148486: At a method handle call returning with an exception may call the runtime with misaligned stack (x64)
roland
parents: 11439
diff changeset
    73
    address the_pc = pc();
42ae1f21ed2b 7148486: At a method handle call returning with an exception may call the runtime with misaligned stack (x64)
roland
parents: 11439
diff changeset
    74
    call_offset = offset();
42ae1f21ed2b 7148486: At a method handle call returning with an exception may call the runtime with misaligned stack (x64)
roland
parents: 11439
diff changeset
    75
    set_last_Java_frame(thread, noreg, rbp, the_pc);
42ae1f21ed2b 7148486: At a method handle call returning with an exception may call the runtime with misaligned stack (x64)
roland
parents: 11439
diff changeset
    76
    andptr(rsp, -(StackAlignmentInBytes));    // Align stack
42ae1f21ed2b 7148486: At a method handle call returning with an exception may call the runtime with misaligned stack (x64)
roland
parents: 11439
diff changeset
    77
  }
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
    78
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  // do the call
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  call(RuntimeAddress(entry));
11962
42ae1f21ed2b 7148486: At a method handle call returning with an exception may call the runtime with misaligned stack (x64)
roland
parents: 11439
diff changeset
    81
  if (!align_stack) {
42ae1f21ed2b 7148486: At a method handle call returning with an exception may call the runtime with misaligned stack (x64)
roland
parents: 11439
diff changeset
    82
    call_offset = offset();
42ae1f21ed2b 7148486: At a method handle call returning with an exception may call the runtime with misaligned stack (x64)
roland
parents: 11439
diff changeset
    83
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  // verify callee-saved register
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  guarantee(thread != rax, "change this code");
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
    87
  push(rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  { Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    get_thread(rax);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
    90
    cmpptr(thread, rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    jcc(Assembler::equal, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    int3();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    stop("StubAssembler::call_RT: rdi not callee saved?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  }
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
    96
  pop(rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
#endif
11962
42ae1f21ed2b 7148486: At a method handle call returning with an exception may call the runtime with misaligned stack (x64)
roland
parents: 11439
diff changeset
    98
  reset_last_Java_frame(thread, true, align_stack);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  // discard thread and arguments
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   101
  NOT_LP64(addptr(rsp, num_rt_args()*BytesPerWord));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  // check for pending exceptions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  { Label L;
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   105
    cmpptr(Address(thread, Thread::pending_exception_offset()), (int32_t)NULL_WORD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    jcc(Assembler::equal, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    // exception pending => remove activation and forward to exception handler
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   108
    movptr(rax, Address(thread, Thread::pending_exception_offset()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    // make sure that the vm_results are cleared
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    if (oop_result1->is_valid()) {
1888
bbf498fb4354 6787106: Hotspot 32 bit build fails on platforms having different definitions for intptr_t & int32_t
xlu
parents: 1412
diff changeset
   111
      movptr(Address(thread, JavaThread::vm_result_offset()), NULL_WORD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11962
diff changeset
   113
    if (metadata_result->is_valid()) {
1888
bbf498fb4354 6787106: Hotspot 32 bit build fails on platforms having different definitions for intptr_t & int32_t
xlu
parents: 1412
diff changeset
   114
      movptr(Address(thread, JavaThread::vm_result_2_offset()), NULL_WORD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    if (frame_size() == no_frame_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
      leave();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
      jump(RuntimeAddress(StubRoutines::forward_exception_entry()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    } else if (_stub_id == Runtime1::forward_exception_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
      should_not_reach_here();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
      jump(RuntimeAddress(Runtime1::entry_for(Runtime1::forward_exception_id)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  // get oop results if there are any and reset the values in the thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  if (oop_result1->is_valid()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11962
diff changeset
   128
    get_vm_result(oop_result1, thread);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11962
diff changeset
   130
  if (metadata_result->is_valid()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11962
diff changeset
   131
    get_vm_result_2(metadata_result, thread);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  return call_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11962
diff changeset
   137
int StubAssembler::call_RT(Register oop_result1, Register metadata_result, address entry, Register arg1) {
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   138
#ifdef _LP64
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   139
  mov(c_rarg1, arg1);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   140
#else
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   141
  push(arg1);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   142
#endif // _LP64
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11962
diff changeset
   143
  return call_RT(oop_result1, metadata_result, entry, 1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11962
diff changeset
   147
int StubAssembler::call_RT(Register oop_result1, Register metadata_result, address entry, Register arg1, Register arg2) {
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   148
#ifdef _LP64
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   149
  if (c_rarg1 == arg2) {
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   150
    if (c_rarg2 == arg1) {
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   151
      xchgq(arg1, arg2);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   152
    } else {
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   153
      mov(c_rarg2, arg2);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   154
      mov(c_rarg1, arg1);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   155
    }
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   156
  } else {
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   157
    mov(c_rarg1, arg1);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   158
    mov(c_rarg2, arg2);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   159
  }
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   160
#else
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   161
  push(arg2);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   162
  push(arg1);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   163
#endif // _LP64
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11962
diff changeset
   164
  return call_RT(oop_result1, metadata_result, entry, 2);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11962
diff changeset
   168
int StubAssembler::call_RT(Register oop_result1, Register metadata_result, address entry, Register arg1, Register arg2, Register arg3) {
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   169
#ifdef _LP64
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   170
  // if there is any conflict use the stack
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   171
  if (arg1 == c_rarg2 || arg1 == c_rarg3 ||
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   172
      arg2 == c_rarg1 || arg1 == c_rarg3 ||
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   173
      arg3 == c_rarg1 || arg1 == c_rarg2) {
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   174
    push(arg3);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   175
    push(arg2);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   176
    push(arg1);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   177
    pop(c_rarg1);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   178
    pop(c_rarg2);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   179
    pop(c_rarg3);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   180
  } else {
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   181
    mov(c_rarg1, arg1);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   182
    mov(c_rarg2, arg2);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   183
    mov(c_rarg3, arg3);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   184
  }
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   185
#else
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   186
  push(arg3);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   187
  push(arg2);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   188
  push(arg1);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   189
#endif // _LP64
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11962
diff changeset
   190
  return call_RT(oop_result1, metadata_result, entry, 3);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
// Implementation of StubFrame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
class StubFrame: public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  StubAssembler* _sasm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  StubFrame(StubAssembler* sasm, const char* name, bool must_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  void load_argument(int offset_in_words, Register reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  ~StubFrame();
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
#define __ _sasm->
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
StubFrame::StubFrame(StubAssembler* sasm, const char* name, bool must_gc_arguments) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  _sasm = sasm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  __ set_info(name, must_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  __ enter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
// load parameters that were stored with LIR_Assembler::store_parameter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
// Note: offsets for store_parameter and load_argument must match
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
void StubFrame::load_argument(int offset_in_words, Register reg) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  // rbp, + 0: link
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  //     + 1: return address
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  //     + 2: argument with offset 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  //     + 3: argument with offset 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  //     + 4: ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   225
  __ movptr(reg, Address(rbp, (offset_in_words + 2) * BytesPerWord));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
StubFrame::~StubFrame() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  __ leave();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
#undef __
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
// Implementation of Runtime1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
#define __ sasm->
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   241
const int float_regs_as_doubles_size_in_slots = pd_nof_fpu_regs_frame_map * 2;
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   242
const int xmm_regs_as_doubles_size_in_slots = FrameMap::nof_xmm_regs * 2;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
// Stack layout for saving/restoring  all the registers needed during a runtime
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
// call (this includes deoptimization)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
// Note: note that users of this frame may well have arguments to some runtime
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
// while these values are on the stack. These positions neglect those arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
// but the code in save_live_registers will take the argument count into
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
// account.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
//
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   251
#ifdef _LP64
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   252
  #define SLOT2(x) x,
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   253
  #define SLOT_PER_WORD 2
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   254
#else
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   255
  #define SLOT2(x)
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   256
  #define SLOT_PER_WORD 1
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   257
#endif // _LP64
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   258
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
enum reg_save_layout {
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   260
  // 64bit needs to keep stack 16 byte aligned. So we add some alignment dummies to make that
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   261
  // happen and will assert if the stack size we create is misaligned
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   262
#ifdef _LP64
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   263
  align_dummy_0, align_dummy_1,
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   264
#endif // _LP64
8495
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   265
#ifdef _WIN64
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   266
  // Windows always allocates space for it's argument registers (see
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   267
  // frame::arg_reg_save_area_bytes).
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   268
  arg_reg_save_1, arg_reg_save_1H,                                                          // 0, 4
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   269
  arg_reg_save_2, arg_reg_save_2H,                                                          // 8, 12
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   270
  arg_reg_save_3, arg_reg_save_3H,                                                          // 16, 20
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   271
  arg_reg_save_4, arg_reg_save_4H,                                                          // 24, 28
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   272
#endif // _WIN64
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   273
  xmm_regs_as_doubles_off,                                                                  // 32
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   274
  float_regs_as_doubles_off = xmm_regs_as_doubles_off + xmm_regs_as_doubles_size_in_slots,  // 160
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   275
  fpu_state_off = float_regs_as_doubles_off + float_regs_as_doubles_size_in_slots,          // 224
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   276
  // fpu_state_end_off is exclusive
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   277
  fpu_state_end_off = fpu_state_off + (FPUStateSizeInWords / SLOT_PER_WORD),                // 352
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   278
  marker = fpu_state_end_off, SLOT2(markerH)                                                // 352, 356
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   279
  extra_space_offset,                                                                       // 360
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   280
#ifdef _LP64
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   281
  r15_off = extra_space_offset, r15H_off,                                                   // 360, 364
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   282
  r14_off, r14H_off,                                                                        // 368, 372
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   283
  r13_off, r13H_off,                                                                        // 376, 380
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   284
  r12_off, r12H_off,                                                                        // 384, 388
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   285
  r11_off, r11H_off,                                                                        // 392, 396
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   286
  r10_off, r10H_off,                                                                        // 400, 404
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   287
  r9_off, r9H_off,                                                                          // 408, 412
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   288
  r8_off, r8H_off,                                                                          // 416, 420
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   289
  rdi_off, rdiH_off,                                                                        // 424, 428
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   290
#else
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  rdi_off = extra_space_offset,
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   292
#endif // _LP64
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   293
  rsi_off, SLOT2(rsiH_off)                                                                  // 432, 436
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   294
  rbp_off, SLOT2(rbpH_off)                                                                  // 440, 444
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   295
  rsp_off, SLOT2(rspH_off)                                                                  // 448, 452
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   296
  rbx_off, SLOT2(rbxH_off)                                                                  // 456, 460
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   297
  rdx_off, SLOT2(rdxH_off)                                                                  // 464, 468
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   298
  rcx_off, SLOT2(rcxH_off)                                                                  // 472, 476
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   299
  rax_off, SLOT2(raxH_off)                                                                  // 480, 484
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   300
  saved_rbp_off, SLOT2(saved_rbpH_off)                                                      // 488, 492
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   301
  return_off, SLOT2(returnH_off)                                                            // 496, 500
8495
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   302
  reg_save_frame_size   // As noted: neglects any parameters to runtime                     // 504
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
// Save off registers which might be killed by calls into the runtime.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
// Tries to smart of about FP registers.  In particular we separate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
// saving and describing the FPU registers for deoptimization since we
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
// have to save the FPU registers twice if we describe them and on P4
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
// saving FPU registers which don't contain anything appears
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
// expensive.  The deopt blob is the only thing which needs to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
// describe FPU registers.  In all other cases it should be sufficient
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
// to simply save their current value.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
static OopMap* generate_oop_map(StubAssembler* sasm, int num_rt_args,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
                                bool save_fpu_registers = true) {
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   318
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   319
  // In 64bit all the args are in regs so there are no additional stack slots
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   320
  LP64_ONLY(num_rt_args = 0);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   321
  LP64_ONLY(assert((reg_save_frame_size * VMRegImpl::stack_slot_size) % 16 == 0, "must be 16 byte aligned");)
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   322
  int frame_size_in_slots = reg_save_frame_size + num_rt_args; // args + thread
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   323
  sasm->set_frame_size(frame_size_in_slots / VMRegImpl::slots_per_word );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  // record saved value locations in an OopMap
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  // locations are offsets from sp after runtime call; num_rt_args is number of arguments in call, including thread
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   327
  OopMap* map = new OopMap(frame_size_in_slots, 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  map->set_callee_saved(VMRegImpl::stack2reg(rax_off + num_rt_args), rax->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  map->set_callee_saved(VMRegImpl::stack2reg(rcx_off + num_rt_args), rcx->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  map->set_callee_saved(VMRegImpl::stack2reg(rdx_off + num_rt_args), rdx->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  map->set_callee_saved(VMRegImpl::stack2reg(rbx_off + num_rt_args), rbx->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  map->set_callee_saved(VMRegImpl::stack2reg(rsi_off + num_rt_args), rsi->as_VMReg());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  map->set_callee_saved(VMRegImpl::stack2reg(rdi_off + num_rt_args), rdi->as_VMReg());
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   334
#ifdef _LP64
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   335
  map->set_callee_saved(VMRegImpl::stack2reg(r8_off + num_rt_args),  r8->as_VMReg());
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   336
  map->set_callee_saved(VMRegImpl::stack2reg(r9_off + num_rt_args),  r9->as_VMReg());
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   337
  map->set_callee_saved(VMRegImpl::stack2reg(r10_off + num_rt_args), r10->as_VMReg());
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   338
  map->set_callee_saved(VMRegImpl::stack2reg(r11_off + num_rt_args), r11->as_VMReg());
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   339
  map->set_callee_saved(VMRegImpl::stack2reg(r12_off + num_rt_args), r12->as_VMReg());
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   340
  map->set_callee_saved(VMRegImpl::stack2reg(r13_off + num_rt_args), r13->as_VMReg());
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   341
  map->set_callee_saved(VMRegImpl::stack2reg(r14_off + num_rt_args), r14->as_VMReg());
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   342
  map->set_callee_saved(VMRegImpl::stack2reg(r15_off + num_rt_args), r15->as_VMReg());
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   343
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   344
  // This is stupid but needed.
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   345
  map->set_callee_saved(VMRegImpl::stack2reg(raxH_off + num_rt_args), rax->as_VMReg()->next());
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   346
  map->set_callee_saved(VMRegImpl::stack2reg(rcxH_off + num_rt_args), rcx->as_VMReg()->next());
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   347
  map->set_callee_saved(VMRegImpl::stack2reg(rdxH_off + num_rt_args), rdx->as_VMReg()->next());
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   348
  map->set_callee_saved(VMRegImpl::stack2reg(rbxH_off + num_rt_args), rbx->as_VMReg()->next());
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   349
  map->set_callee_saved(VMRegImpl::stack2reg(rsiH_off + num_rt_args), rsi->as_VMReg()->next());
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   350
  map->set_callee_saved(VMRegImpl::stack2reg(rdiH_off + num_rt_args), rdi->as_VMReg()->next());
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   351
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   352
  map->set_callee_saved(VMRegImpl::stack2reg(r8H_off + num_rt_args),  r8->as_VMReg()->next());
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   353
  map->set_callee_saved(VMRegImpl::stack2reg(r9H_off + num_rt_args),  r9->as_VMReg()->next());
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   354
  map->set_callee_saved(VMRegImpl::stack2reg(r10H_off + num_rt_args), r10->as_VMReg()->next());
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   355
  map->set_callee_saved(VMRegImpl::stack2reg(r11H_off + num_rt_args), r11->as_VMReg()->next());
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   356
  map->set_callee_saved(VMRegImpl::stack2reg(r12H_off + num_rt_args), r12->as_VMReg()->next());
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   357
  map->set_callee_saved(VMRegImpl::stack2reg(r13H_off + num_rt_args), r13->as_VMReg()->next());
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   358
  map->set_callee_saved(VMRegImpl::stack2reg(r14H_off + num_rt_args), r14->as_VMReg()->next());
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   359
  map->set_callee_saved(VMRegImpl::stack2reg(r15H_off + num_rt_args), r15->as_VMReg()->next());
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   360
#endif // _LP64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  if (save_fpu_registers) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
    if (UseSSE < 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
      int fpu_off = float_regs_as_doubles_off;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
      for (int n = 0; n < FrameMap::nof_fpu_regs; n++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
        VMReg fpu_name_0 = FrameMap::fpu_regname(n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
        map->set_callee_saved(VMRegImpl::stack2reg(fpu_off +     num_rt_args), fpu_name_0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
        // %%% This is really a waste but we'll keep things as they were for now
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
        if (true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
          map->set_callee_saved(VMRegImpl::stack2reg(fpu_off + 1 + num_rt_args), fpu_name_0->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
        fpu_off += 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
      assert(fpu_off == fpu_state_off, "incorrect number of fpu stack slots");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
    if (UseSSE >= 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
      int xmm_off = xmm_regs_as_doubles_off;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
      for (int n = 0; n < FrameMap::nof_xmm_regs; n++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
        VMReg xmm_name_0 = as_XMMRegister(n)->as_VMReg();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
        map->set_callee_saved(VMRegImpl::stack2reg(xmm_off +     num_rt_args), xmm_name_0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
        // %%% This is really a waste but we'll keep things as they were for now
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
        if (true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
          map->set_callee_saved(VMRegImpl::stack2reg(xmm_off + 1 + num_rt_args), xmm_name_0->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
        xmm_off += 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
      assert(xmm_off == float_regs_as_doubles_off, "incorrect number of xmm registers");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
    } else if (UseSSE == 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
      int xmm_off = xmm_regs_as_doubles_off;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
      for (int n = 0; n < FrameMap::nof_xmm_regs; n++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
        VMReg xmm_name_0 = as_XMMRegister(n)->as_VMReg();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
        map->set_callee_saved(VMRegImpl::stack2reg(xmm_off +     num_rt_args), xmm_name_0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
        xmm_off += 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
      assert(xmm_off == float_regs_as_doubles_off, "incorrect number of xmm registers");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  return map;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
static OopMap* save_live_registers(StubAssembler* sasm, int num_rt_args,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
                                   bool save_fpu_registers = true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  __ block_comment("save_live_registers");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   408
  __ pusha();         // integer registers
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  // assert(float_regs_as_doubles_off % 2 == 0, "misaligned offset");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  // assert(xmm_regs_as_doubles_off % 2 == 0, "misaligned offset");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   413
  __ subptr(rsp, extra_space_offset * VMRegImpl::stack_slot_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
#ifdef ASSERT
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   416
  __ movptr(Address(rsp, marker * VMRegImpl::stack_slot_size), (int32_t)0xfeedbeef);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
  if (save_fpu_registers) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
    if (UseSSE < 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
      // save FPU stack
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   422
      __ fnsave(Address(rsp, fpu_state_off * VMRegImpl::stack_slot_size));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
      __ fwait();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
      Label ok;
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   427
      __ cmpw(Address(rsp, fpu_state_off * VMRegImpl::stack_slot_size), StubRoutines::fpu_cntrl_wrd_std());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
      __ jccb(Assembler::equal, ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
      __ stop("corrupted control word detected");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
      __ bind(ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
      // Reset the control word to guard against exceptions being unmasked
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
      // since fstp_d can cause FPU stack underflow exceptions.  Write it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
      // into the on stack copy and then reload that to make sure that the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
      // current and future values are correct.
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   437
      __ movw(Address(rsp, fpu_state_off * VMRegImpl::stack_slot_size), StubRoutines::fpu_cntrl_wrd_std());
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   438
      __ frstor(Address(rsp, fpu_state_off * VMRegImpl::stack_slot_size));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
      // Save the FPU registers in de-opt-able form
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   441
      __ fstp_d(Address(rsp, float_regs_as_doubles_off * VMRegImpl::stack_slot_size +  0));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   442
      __ fstp_d(Address(rsp, float_regs_as_doubles_off * VMRegImpl::stack_slot_size +  8));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   443
      __ fstp_d(Address(rsp, float_regs_as_doubles_off * VMRegImpl::stack_slot_size + 16));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   444
      __ fstp_d(Address(rsp, float_regs_as_doubles_off * VMRegImpl::stack_slot_size + 24));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   445
      __ fstp_d(Address(rsp, float_regs_as_doubles_off * VMRegImpl::stack_slot_size + 32));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   446
      __ fstp_d(Address(rsp, float_regs_as_doubles_off * VMRegImpl::stack_slot_size + 40));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   447
      __ fstp_d(Address(rsp, float_regs_as_doubles_off * VMRegImpl::stack_slot_size + 48));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   448
      __ fstp_d(Address(rsp, float_regs_as_doubles_off * VMRegImpl::stack_slot_size + 56));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
    if (UseSSE >= 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
      // save XMM registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
      // XMM registers can contain float or double values, but this is not known here,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
      // so always save them as doubles.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
      // note that float values are _not_ converted automatically, so for float values
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
      // the second word contains only garbage data.
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   457
      __ movdbl(Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size +  0), xmm0);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   458
      __ movdbl(Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size +  8), xmm1);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   459
      __ movdbl(Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 16), xmm2);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   460
      __ movdbl(Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 24), xmm3);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   461
      __ movdbl(Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 32), xmm4);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   462
      __ movdbl(Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 40), xmm5);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   463
      __ movdbl(Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 48), xmm6);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   464
      __ movdbl(Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 56), xmm7);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   465
#ifdef _LP64
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   466
      __ movdbl(Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 64), xmm8);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   467
      __ movdbl(Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 72), xmm9);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   468
      __ movdbl(Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 80), xmm10);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   469
      __ movdbl(Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 88), xmm11);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   470
      __ movdbl(Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 96), xmm12);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   471
      __ movdbl(Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 104), xmm13);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   472
      __ movdbl(Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 112), xmm14);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   473
      __ movdbl(Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 120), xmm15);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   474
#endif // _LP64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
    } else if (UseSSE == 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
      // save XMM registers as float because double not supported without SSE2
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   477
      __ movflt(Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size +  0), xmm0);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   478
      __ movflt(Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size +  8), xmm1);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   479
      __ movflt(Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 16), xmm2);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   480
      __ movflt(Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 24), xmm3);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   481
      __ movflt(Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 32), xmm4);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   482
      __ movflt(Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 40), xmm5);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   483
      __ movflt(Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 48), xmm6);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   484
      __ movflt(Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 56), xmm7);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  // FPU stack must be empty now
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  __ verify_FPU(0, "save_live_registers");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  return generate_oop_map(sasm, num_rt_args, save_fpu_registers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
static void restore_fpu(StubAssembler* sasm, bool restore_fpu_registers = true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  if (restore_fpu_registers) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
    if (UseSSE >= 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
      // restore XMM registers
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   499
      __ movdbl(xmm0, Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size +  0));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   500
      __ movdbl(xmm1, Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size +  8));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   501
      __ movdbl(xmm2, Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 16));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   502
      __ movdbl(xmm3, Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 24));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   503
      __ movdbl(xmm4, Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 32));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   504
      __ movdbl(xmm5, Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 40));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   505
      __ movdbl(xmm6, Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 48));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   506
      __ movdbl(xmm7, Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 56));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   507
#ifdef _LP64
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   508
      __ movdbl(xmm8, Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 64));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   509
      __ movdbl(xmm9, Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 72));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   510
      __ movdbl(xmm10, Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 80));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   511
      __ movdbl(xmm11, Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 88));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   512
      __ movdbl(xmm12, Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 96));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   513
      __ movdbl(xmm13, Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 104));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   514
      __ movdbl(xmm14, Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 112));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   515
      __ movdbl(xmm15, Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 120));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   516
#endif // _LP64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
    } else if (UseSSE == 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
      // restore XMM registers
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   519
      __ movflt(xmm0, Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size +  0));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   520
      __ movflt(xmm1, Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size +  8));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   521
      __ movflt(xmm2, Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 16));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   522
      __ movflt(xmm3, Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 24));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   523
      __ movflt(xmm4, Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 32));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   524
      __ movflt(xmm5, Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 40));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   525
      __ movflt(xmm6, Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 48));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   526
      __ movflt(xmm7, Address(rsp, xmm_regs_as_doubles_off * VMRegImpl::stack_slot_size + 56));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
    if (UseSSE < 2) {
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   530
      __ frstor(Address(rsp, fpu_state_off * VMRegImpl::stack_slot_size));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
      // check that FPU stack is really empty
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
      __ verify_FPU(0, "restore_live_registers");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
    // check that FPU stack is really empty
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
    __ verify_FPU(0, "restore_live_registers");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
    Label ok;
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   544
    __ cmpptr(Address(rsp, marker * VMRegImpl::stack_slot_size), (int32_t)0xfeedbeef);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
    __ jcc(Assembler::equal, ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
    __ stop("bad offsets in frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
    __ bind(ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
  }
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   549
#endif // ASSERT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   551
  __ addptr(rsp, extra_space_offset * VMRegImpl::stack_slot_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
static void restore_live_registers(StubAssembler* sasm, bool restore_fpu_registers = true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
  __ block_comment("restore_live_registers");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
  restore_fpu(sasm, restore_fpu_registers);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   559
  __ popa();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
static void restore_live_registers_except_rax(StubAssembler* sasm, bool restore_fpu_registers = true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
  __ block_comment("restore_live_registers_except_rax");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  restore_fpu(sasm, restore_fpu_registers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   568
#ifdef _LP64
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   569
  __ movptr(r15, Address(rsp, 0));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   570
  __ movptr(r14, Address(rsp, wordSize));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   571
  __ movptr(r13, Address(rsp, 2 * wordSize));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   572
  __ movptr(r12, Address(rsp, 3 * wordSize));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   573
  __ movptr(r11, Address(rsp, 4 * wordSize));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   574
  __ movptr(r10, Address(rsp, 5 * wordSize));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   575
  __ movptr(r9,  Address(rsp, 6 * wordSize));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   576
  __ movptr(r8,  Address(rsp, 7 * wordSize));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   577
  __ movptr(rdi, Address(rsp, 8 * wordSize));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   578
  __ movptr(rsi, Address(rsp, 9 * wordSize));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   579
  __ movptr(rbp, Address(rsp, 10 * wordSize));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   580
  // skip rsp
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   581
  __ movptr(rbx, Address(rsp, 12 * wordSize));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   582
  __ movptr(rdx, Address(rsp, 13 * wordSize));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   583
  __ movptr(rcx, Address(rsp, 14 * wordSize));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   584
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   585
  __ addptr(rsp, 16 * wordSize);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   586
#else
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   587
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   588
  __ pop(rdi);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   589
  __ pop(rsi);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   590
  __ pop(rbp);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   591
  __ pop(rbx); // skip this value
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   592
  __ pop(rbx);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   593
  __ pop(rdx);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   594
  __ pop(rcx);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   595
  __ addptr(rsp, BytesPerWord);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   596
#endif // _LP64
1
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 Runtime1::initialize_pd() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
  // nothing to do
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
// target: the entry point of the method that creates and posts the exception oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
// has_argument: true if the exception needs an argument (passed on stack because registers must be preserved)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
OopMapSet* Runtime1::generate_exception_throw(StubAssembler* sasm, address target, bool has_argument) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
  // preserve all registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  int num_rt_args = has_argument ? 2 : 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
  OopMap* oop_map = save_live_registers(sasm, num_rt_args);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
  // now all registers are saved and can be used freely
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
  // verify that no old value is used accidentally
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
  __ invalidate_registers(true, true, true, true, true, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
  // registers used by this stub
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
  const Register temp_reg = rbx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
  // load argument for exception that is passed as an argument into the stub
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
  if (has_argument) {
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   622
#ifdef _LP64
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   623
    __ movptr(c_rarg1, Address(rbp, 2*BytesPerWord));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   624
#else
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   625
    __ movptr(temp_reg, Address(rbp, 2*BytesPerWord));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   626
    __ push(temp_reg);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   627
#endif // _LP64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
  int call_offset = __ call_RT(noreg, noreg, target, num_rt_args - 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
  OopMapSet* oop_maps = new OopMapSet();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
  oop_maps->add_gc_map(call_offset, oop_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
  __ stop("should not reach here");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
  return oop_maps;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
8495
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   640
OopMapSet* Runtime1::generate_handle_exception(StubID id, StubAssembler *sasm) {
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   641
  __ block_comment("generate_handle_exception");
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   642
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
  // incoming parameters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
  const Register exception_oop = rax;
8495
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   645
  const Register exception_pc  = rdx;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
  // other registers used in this stub
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   647
  const Register thread = NOT_LP64(rdi) LP64_ONLY(r15_thread);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
8495
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   649
  // Save registers, if required.
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   650
  OopMapSet* oop_maps = new OopMapSet();
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   651
  OopMap* oop_map = NULL;
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   652
  switch (id) {
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   653
  case forward_exception_id:
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   654
    // We're handling an exception in the context of a compiled frame.
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   655
    // The registers have been saved in the standard places.  Perform
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   656
    // an exception lookup in the caller and dispatch to the handler
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   657
    // if found.  Otherwise unwind and dispatch to the callers
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   658
    // exception handler.
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   659
    oop_map = generate_oop_map(sasm, 1 /*thread*/);
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   660
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   661
    // load and clear pending exception oop into RAX
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   662
    __ movptr(exception_oop, Address(thread, Thread::pending_exception_offset()));
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   663
    __ movptr(Address(thread, Thread::pending_exception_offset()), NULL_WORD);
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   664
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   665
    // load issuing PC (the return address for this stub) into rdx
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   666
    __ movptr(exception_pc, Address(rbp, 1*BytesPerWord));
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   667
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   668
    // make sure that the vm_results are cleared (may be unnecessary)
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   669
    __ movptr(Address(thread, JavaThread::vm_result_offset()),   NULL_WORD);
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   670
    __ movptr(Address(thread, JavaThread::vm_result_2_offset()), NULL_WORD);
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   671
    break;
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   672
  case handle_exception_nofpu_id:
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   673
  case handle_exception_id:
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   674
    // At this point all registers MAY be live.
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   675
    oop_map = save_live_registers(sasm, 1 /*thread*/, id == handle_exception_nofpu_id);
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   676
    break;
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   677
  case handle_exception_from_callee_id: {
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   678
    // At this point all registers except exception oop (RAX) and
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   679
    // exception pc (RDX) are dead.
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   680
    const int frame_size = 2 /*BP, return address*/ NOT_LP64(+ 1 /*thread*/) WIN64_ONLY(+ frame::arg_reg_save_area_bytes / BytesPerWord);
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   681
    oop_map = new OopMap(frame_size * VMRegImpl::slots_per_word, 0);
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   682
    sasm->set_frame_size(frame_size);
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   683
    WIN64_ONLY(__ subq(rsp, frame::arg_reg_save_area_bytes));
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   684
    break;
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   685
  }
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   686
  default:  ShouldNotReachHere();
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   687
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
#ifdef TIERED
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
  // C2 can leave the fpu stack dirty
8495
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   691
  if (UseSSE < 2) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
    __ empty_FPU_stack();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
#endif // TIERED
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
  // verify that only rax, and rdx is valid at this time
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
  __ invalidate_registers(false, true, true, false, true, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
  // verify that rax, contains a valid exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
  __ verify_not_null_oop(exception_oop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
  // load address of JavaThread object for thread-local data
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   702
  NOT_LP64(__ get_thread(thread);)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
  // check that fields in JavaThread for exception oop and issuing pc are
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
  // empty before writing to them
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
  Label oop_empty;
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   708
  __ cmpptr(Address(thread, JavaThread::exception_oop_offset()), (int32_t) NULL_WORD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
  __ jcc(Assembler::equal, oop_empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
  __ stop("exception oop already set");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
  __ bind(oop_empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
  Label pc_empty;
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   714
  __ cmpptr(Address(thread, JavaThread::exception_pc_offset()), 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
  __ jcc(Assembler::equal, pc_empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
  __ stop("exception pc already set");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
  __ bind(pc_empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
  // save exception oop and issuing pc into JavaThread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
  // (exception handler will load it from here)
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   722
  __ movptr(Address(thread, JavaThread::exception_oop_offset()), exception_oop);
8495
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   723
  __ movptr(Address(thread, JavaThread::exception_pc_offset()),  exception_pc);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
  // patch throwing pc into return address (has bci & oop map)
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   726
  __ movptr(Address(rbp, 1*BytesPerWord), exception_pc);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
  // compute the exception handler.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
  // the exception oop and the throwing pc are read from the fields in JavaThread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
  int call_offset = __ call_RT(noreg, noreg, CAST_FROM_FN_PTR(address, exception_handler_for_pc));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
  oop_maps->add_gc_map(call_offset, oop_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
8495
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   733
  // rax: handler address
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
  //      will be the deopt blob if nmethod was deoptimized while we looked up
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
  //      handler regardless of whether handler existed in the nmethod.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
  // only rax, is valid at this time, all other registers have been destroyed by the runtime call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
  __ invalidate_registers(false, true, true, true, true, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
8495
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   740
  // patch the return address, this stub will directly return to the exception handler
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   741
  __ movptr(Address(rbp, 1*BytesPerWord), rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
8495
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   743
  switch (id) {
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   744
  case forward_exception_id:
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   745
  case handle_exception_nofpu_id:
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   746
  case handle_exception_id:
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   747
    // Restore the registers that were saved at the beginning.
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   748
    restore_live_registers(sasm, id == handle_exception_nofpu_id);
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   749
    break;
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   750
  case handle_exception_from_callee_id:
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   751
    // WIN64_ONLY: No need to add frame::arg_reg_save_area_bytes to SP
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   752
    // since we do a leave anyway.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
8495
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   754
    // Pop the return address since we are possibly changing SP (restoring from BP).
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   755
    __ leave();
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   756
    __ pop(rcx);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
8495
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   758
    // Restore SP from BP if the exception PC is a method handle call site.
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   759
    NOT_LP64(__ get_thread(thread);)
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   760
    __ cmpl(Address(thread, JavaThread::is_method_handle_return_offset()), 0);
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   761
    __ cmovptr(Assembler::notEqual, rsp, rbp_mh_SP_save);
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   762
    __ jmp(rcx);  // jump to exception handler
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   763
    break;
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   764
  default:  ShouldNotReachHere();
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   765
  }
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   766
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   767
  return oop_maps;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
void Runtime1::generate_unwind_exception(StubAssembler *sasm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
  // incoming parameters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
  const Register exception_oop = rax;
5046
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 2259
diff changeset
   774
  // callee-saved copy of exception_oop during runtime call
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 2259
diff changeset
   775
  const Register exception_oop_callee_saved = NOT_LP64(rsi) LP64_ONLY(r14);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
  // other registers used in this stub
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
  const Register exception_pc = rdx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
  const Register handler_addr = rbx;
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   779
  const Register thread = NOT_LP64(rdi) LP64_ONLY(r15_thread);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
  // verify that only rax, is valid at this time
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
  __ invalidate_registers(false, true, true, true, true, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
  // check that fields in JavaThread for exception oop and issuing pc are empty
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   786
  NOT_LP64(__ get_thread(thread);)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
  Label oop_empty;
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   788
  __ cmpptr(Address(thread, JavaThread::exception_oop_offset()), 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
  __ jcc(Assembler::equal, oop_empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
  __ stop("exception oop must be empty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
  __ bind(oop_empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
  Label pc_empty;
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   794
  __ cmpptr(Address(thread, JavaThread::exception_pc_offset()), 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
  __ jcc(Assembler::equal, pc_empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
  __ stop("exception pc must be empty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
  __ bind(pc_empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
  // clear the FPU stack in case any FPU results are left behind
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
  __ empty_FPU_stack();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
5046
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 2259
diff changeset
   803
  // save exception_oop in callee-saved register to preserve it during runtime calls
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 2259
diff changeset
   804
  __ verify_not_null_oop(exception_oop);
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 2259
diff changeset
   805
  __ movptr(exception_oop_callee_saved, exception_oop);
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 2259
diff changeset
   806
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 2259
diff changeset
   807
  NOT_LP64(__ get_thread(thread);)
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 2259
diff changeset
   808
  // Get return address (is on top of stack after leave).
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   809
  __ movptr(exception_pc, Address(rsp, 0));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
5046
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 2259
diff changeset
   811
  // search the exception handler address of the caller (using the return address)
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 2259
diff changeset
   812
  __ call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::exception_handler_for_return_address), thread, exception_pc);
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 2259
diff changeset
   813
  // rax: exception handler address of the caller
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
5046
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 2259
diff changeset
   815
  // Only RAX and RSI are valid at this time, all other registers have been destroyed by the call.
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 2259
diff changeset
   816
  __ invalidate_registers(false, true, true, true, false, true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
  // move result of call into correct register
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   819
  __ movptr(handler_addr, rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
5046
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 2259
diff changeset
   821
  // Restore exception oop to RAX (required convention of exception handler).
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 2259
diff changeset
   822
  __ movptr(exception_oop, exception_oop_callee_saved);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
5046
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 2259
diff changeset
   824
  // verify that there is really a valid exception in rax
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 2259
diff changeset
   825
  __ verify_not_null_oop(exception_oop);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
  // get throwing pc (= return address).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
  // rdx has been destroyed by the call, so it must be set again
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
  // the pop is also necessary to simulate the effect of a ret(0)
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   830
  __ pop(exception_pc);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
8495
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   832
  // Restore SP from BP if the exception PC is a method handle call site.
5046
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 2259
diff changeset
   833
  NOT_LP64(__ get_thread(thread);)
5252
58f23871a5b6 6941529: SharedRuntime::raw_exception_handler_for_return_address must reset thread MethodHandle flag
twisti
parents: 5046
diff changeset
   834
  __ cmpl(Address(thread, JavaThread::is_method_handle_return_offset()), 0);
5687
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 5252
diff changeset
   835
  __ cmovptr(Assembler::notEqual, rsp, rbp_mh_SP_save);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
  // continue at exception handler (return address removed)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
  // note: do *not* remove arguments when unwinding the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
  //       activation since the caller assumes having
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
  //       all arguments on the stack when entering the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
  //       runtime to determine the exception handler
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
  //       (GC happens at call site with arguments!)
5046
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 2259
diff changeset
   843
  // rax: exception oop
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
  // rdx: throwing pc
5046
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 2259
diff changeset
   845
  // rbx: exception handler
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
  __ jmp(handler_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
OopMapSet* Runtime1::generate_patching(StubAssembler* sasm, address target) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
  // use the maximum number of runtime-arguments here because it is difficult to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
  // distinguish each RT-Call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
  // Note: This number affects also the RT-Call in generate_handle_exception because
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
  //       the oop-map is shared for all calls.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
  const int num_rt_args = 2;  // thread + dummy
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
  DeoptimizationBlob* deopt_blob = SharedRuntime::deopt_blob();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
  assert(deopt_blob != NULL, "deoptimization blob must have been created");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
  OopMap* oop_map = save_live_registers(sasm, num_rt_args);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   862
#ifdef _LP64
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   863
  const Register thread = r15_thread;
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   864
  // No need to worry about dummy
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   865
  __ mov(c_rarg0, thread);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   866
#else
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   867
  __ push(rax); // push dummy
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
  const Register thread = rdi; // is callee-saved register (Visual C++ calling conventions)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
  // push java thread (becomes first argument of C function)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
  __ get_thread(thread);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   872
  __ push(thread);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   873
#endif // _LP64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
  __ set_last_Java_frame(thread, noreg, rbp, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
  // do the call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
  __ call(RuntimeAddress(target));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
  OopMapSet* oop_maps = new OopMapSet();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
  oop_maps->add_gc_map(__ offset(), oop_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
  // verify callee-saved register
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
  guarantee(thread != rax, "change this code");
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   882
  __ push(rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
  { Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
    __ get_thread(rax);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   885
    __ cmpptr(thread, rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
    __ jcc(Assembler::equal, L);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   887
    __ stop("StubAssembler::call_RT: rdi/r15 not callee saved?");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
    __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
  }
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   890
  __ pop(rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
  __ reset_last_Java_frame(thread, true, false);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   893
#ifndef _LP64
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   894
  __ pop(rcx); // discard thread arg
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   895
  __ pop(rcx); // discard dummy
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   896
#endif // _LP64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
  // check for pending exceptions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
  { Label L;
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   900
    __ cmpptr(Address(thread, Thread::pending_exception_offset()), (int32_t)NULL_WORD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
    __ jcc(Assembler::equal, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
    // exception pending => remove activation and forward to exception handler
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   904
    __ testptr(rax, rax);                                   // have we deoptimized?
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
    __ jump_cc(Assembler::equal,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
               RuntimeAddress(Runtime1::entry_for(Runtime1::forward_exception_id)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
    // the deopt blob expects exceptions in the special fields of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
    // JavaThread, so copy and clear pending exception.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
    // load and clear pending exception
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   912
    __ movptr(rax, Address(thread, Thread::pending_exception_offset()));
1888
bbf498fb4354 6787106: Hotspot 32 bit build fails on platforms having different definitions for intptr_t & int32_t
xlu
parents: 1412
diff changeset
   913
    __ movptr(Address(thread, Thread::pending_exception_offset()), NULL_WORD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
    // check that there is really a valid exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
    __ verify_not_null_oop(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
    // load throwing pc: this is the return address of the stub
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   919
    __ movptr(rdx, Address(rsp, return_off * VMRegImpl::stack_slot_size));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
    // check that fields in JavaThread for exception oop and issuing pc are empty
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
    Label oop_empty;
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   924
    __ cmpptr(Address(thread, JavaThread::exception_oop_offset()), (int32_t)NULL_WORD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
    __ jcc(Assembler::equal, oop_empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
    __ stop("exception oop must be empty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
    __ bind(oop_empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
    Label pc_empty;
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   930
    __ cmpptr(Address(thread, JavaThread::exception_pc_offset()), (int32_t)NULL_WORD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
    __ jcc(Assembler::equal, pc_empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
    __ stop("exception pc must be empty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
    __ bind(pc_empty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
    // store exception oop and throwing pc to JavaThread
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   937
    __ movptr(Address(thread, JavaThread::exception_oop_offset()), rax);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   938
    __ movptr(Address(thread, JavaThread::exception_pc_offset()), rdx);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
    restore_live_registers(sasm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
    __ leave();
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   943
    __ addptr(rsp, BytesPerWord);  // remove return address from stack
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
    // Forward the exception directly to deopt blob. We can blow no
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
    // registers and must leave throwing pc on the stack.  A patch may
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
    // have values live in registers so the entry point with the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
    // exception in tls.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
    __ jump(RuntimeAddress(deopt_blob->unpack_with_exception_in_tls()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
    __ bind(L);
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
  // Runtime will return true if the nmethod has been deoptimized during
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
  // the patching process. In that case we must do a deopt reexecute instead.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
  Label reexecuteEntry, cont;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   960
  __ testptr(rax, rax);                                 // have we deoptimized?
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
  __ jcc(Assembler::equal, cont);                       // no
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
  // Will reexecute. Proper return address is already on the stack we just restore
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
  // registers, pop all of our frame but the return address and jump to the deopt blob
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
  restore_live_registers(sasm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
  __ leave();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
  __ jump(RuntimeAddress(deopt_blob->unpack_with_reexecution()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
  __ bind(cont);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
  restore_live_registers(sasm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
  __ leave();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
  __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
  return oop_maps;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
OopMapSet* Runtime1::generate_code_for(StubID id, StubAssembler* sasm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
  // for better readability
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
  const bool must_gc_arguments = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
  const bool dont_gc_arguments = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
  // default value; overwritten for some optimized stubs that are called from methods that do not use the fpu
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
  bool save_fpu_registers = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
  // stub code & info for the different stubs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
  OopMapSet* oop_maps = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
  switch (id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
    case forward_exception_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
      {
8495
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   992
        oop_maps = generate_handle_exception(id, sasm);
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   993
        __ leave();
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   994
        __ ret(0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
    case new_instance_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
    case fast_new_instance_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
    case fast_new_instance_init_check_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
      {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
        Register klass = rdx; // Incoming
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
        Register obj   = rax; // Result
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
        if (id == new_instance_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
          __ set_info("new_instance", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
        } else if (id == fast_new_instance_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
          __ set_info("fast new_instance", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
          assert(id == fast_new_instance_init_check_id, "bad StubID");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
          __ set_info("fast new_instance init check", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
        if ((id == fast_new_instance_id || id == fast_new_instance_init_check_id) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
            UseTLAB && FastTLABRefill) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
          Label slow_path;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
          Register obj_size = rcx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
          Register t1       = rbx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
          Register t2       = rsi;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
          assert_different_registers(klass, obj, obj_size, t1, t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1022
          __ push(rdi);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1023
          __ push(rbx);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
          if (id == fast_new_instance_init_check_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
            // make sure the klass is initialized
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11962
diff changeset
  1027
            __ cmpb(Address(klass, InstanceKlass::init_state_offset()), InstanceKlass::fully_initialized);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
            __ jcc(Assembler::notEqual, slow_path);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
          // assert object can be fast path allocated
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
          {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
            Label ok, not_ok;
11430
718fc06da49a 7118863: Move sizeof(klassOopDesc) into the *Klass::*_offset_in_bytes() functions
stefank
parents: 10972
diff changeset
  1035
            __ movl(obj_size, Address(klass, Klass::layout_helper_offset()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
            __ cmpl(obj_size, 0);  // make sure it's an instance (LH > 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
            __ jcc(Assembler::lessEqual, not_ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
            __ testl(obj_size, Klass::_lh_instance_slow_path_bit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
            __ jcc(Assembler::zero, ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
            __ bind(not_ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
            __ stop("assert(can be fast path allocated)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
            __ should_not_reach_here();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
            __ bind(ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
          // if we got here then the TLAB allocation failed, so try
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
          // refilling the TLAB or allocating directly from eden.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
          Label retry_tlab, try_eden;
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7427
diff changeset
  1050
          const Register thread =
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7427
diff changeset
  1051
            __ tlab_refill(retry_tlab, try_eden, slow_path); // does not destroy rdx (klass), returns rdi
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
          __ bind(retry_tlab);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1055
          // get the instance size (size is postive so movl is fine for 64bit)
11430
718fc06da49a 7118863: Move sizeof(klassOopDesc) into the *Klass::*_offset_in_bytes() functions
stefank
parents: 10972
diff changeset
  1056
          __ movl(obj_size, Address(klass, Klass::layout_helper_offset()));
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7427
diff changeset
  1057
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
          __ tlab_allocate(obj, obj_size, 0, t1, t2, slow_path);
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7427
diff changeset
  1059
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
          __ initialize_object(obj, klass, obj_size, 0, t1, t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
          __ verify_oop(obj);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1062
          __ pop(rbx);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1063
          __ pop(rdi);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
          __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
          __ bind(try_eden);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1067
          // get the instance size (size is postive so movl is fine for 64bit)
11430
718fc06da49a 7118863: Move sizeof(klassOopDesc) into the *Klass::*_offset_in_bytes() functions
stefank
parents: 10972
diff changeset
  1068
          __ movl(obj_size, Address(klass, Klass::layout_helper_offset()));
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7427
diff changeset
  1069
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
          __ eden_allocate(obj, obj_size, 0, t1, slow_path);
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7427
diff changeset
  1071
          __ incr_allocated_bytes(thread, obj_size, 0);
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7427
diff changeset
  1072
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
          __ initialize_object(obj, klass, obj_size, 0, t1, t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
          __ verify_oop(obj);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1075
          __ pop(rbx);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1076
          __ pop(rdi);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
          __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
          __ bind(slow_path);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1080
          __ pop(rbx);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1081
          __ pop(rdi);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
        __ enter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
        OopMap* map = save_live_registers(sasm, 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
        int call_offset = __ call_RT(obj, noreg, CAST_FROM_FN_PTR(address, new_instance), klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
        oop_maps = new OopMapSet();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
        oop_maps->add_gc_map(call_offset, map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
        restore_live_registers_except_rax(sasm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
        __ verify_oop(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
        __ leave();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
        __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
        // rax,: new instance
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
    case counter_overflow_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
      {
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  1101
        Register bci = rax, method = rbx;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
        __ enter();
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  1103
        OopMap* map = save_live_registers(sasm, 3);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
        // Retrieve bci
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
        __ movl(bci, Address(rbp, 2*BytesPerWord));
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11962
diff changeset
  1106
        // And a pointer to the Method*
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  1107
        __ movptr(method, Address(rbp, 3*BytesPerWord));
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  1108
        int call_offset = __ call_RT(noreg, noreg, CAST_FROM_FN_PTR(address, counter_overflow), bci, method);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
        oop_maps = new OopMapSet();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1110
        oop_maps->add_gc_map(call_offset, map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1111
        restore_live_registers(sasm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
        __ leave();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
        __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1114
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1115
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1116
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1117
    case new_type_array_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
    case new_object_array_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1119
      {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
        Register length   = rbx; // Incoming
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
        Register klass    = rdx; // Incoming
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
        Register obj      = rax; // Result
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1124
        if (id == new_type_array_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
          __ set_info("new_type_array", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1127
          __ set_info("new_object_array", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1128
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1129
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1131
        // assert object type is really an array of the proper kind
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1132
        {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
          Label ok;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1134
          Register t0 = obj;
11430
718fc06da49a 7118863: Move sizeof(klassOopDesc) into the *Klass::*_offset_in_bytes() functions
stefank
parents: 10972
diff changeset
  1135
          __ movl(t0, Address(klass, Klass::layout_helper_offset()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1136
          __ sarl(t0, Klass::_lh_array_tag_shift);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
          int tag = ((id == new_type_array_id)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
                     ? Klass::_lh_array_tag_type_value
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1139
                     : Klass::_lh_array_tag_obj_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
          __ cmpl(t0, tag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
          __ jcc(Assembler::equal, ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1142
          __ stop("assert(is an array klass)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
          __ should_not_reach_here();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
          __ bind(ok);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1148
        if (UseTLAB && FastTLABRefill) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1149
          Register arr_size = rsi;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1150
          Register t1       = rcx;  // must be rcx for use as shift count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
          Register t2       = rdi;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
          Label slow_path;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1153
          assert_different_registers(length, klass, obj, arr_size, t1, t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1154
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1155
          // check that array length is small enough for fast path.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1156
          __ cmpl(length, C1_MacroAssembler::max_array_allocation_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1157
          __ jcc(Assembler::above, slow_path);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1158
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1159
          // if we got here then the TLAB allocation failed, so try
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1160
          // refilling the TLAB or allocating directly from eden.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1161
          Label retry_tlab, try_eden;
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7427
diff changeset
  1162
          const Register thread =
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7427
diff changeset
  1163
            __ tlab_refill(retry_tlab, try_eden, slow_path); // preserves rbx & rdx, returns rdi
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1164
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1165
          __ bind(retry_tlab);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1166
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1167
          // get the allocation size: round_up(hdr + length << (layout_helper & 0x1F))
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7427
diff changeset
  1168
          // since size is positive movl does right thing on 64bit
11430
718fc06da49a 7118863: Move sizeof(klassOopDesc) into the *Klass::*_offset_in_bytes() functions
stefank
parents: 10972
diff changeset
  1169
          __ movl(t1, Address(klass, Klass::layout_helper_offset()));
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1170
          // since size is postive movl does right thing on 64bit
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1171
          __ movl(arr_size, length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1172
          assert(t1 == rcx, "fixed register usage");
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1173
          __ shlptr(arr_size /* by t1=rcx, mod 32 */);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1174
          __ shrptr(t1, Klass::_lh_header_size_shift);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1175
          __ andptr(t1, Klass::_lh_header_size_mask);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1176
          __ addptr(arr_size, t1);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1177
          __ addptr(arr_size, MinObjAlignmentInBytesMask); // align up
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1178
          __ andptr(arr_size, ~MinObjAlignmentInBytesMask);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1179
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
          __ tlab_allocate(obj, arr_size, 0, t1, t2, slow_path);  // preserves arr_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1181
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1182
          __ initialize_header(obj, klass, length, t1, t2);
11430
718fc06da49a 7118863: Move sizeof(klassOopDesc) into the *Klass::*_offset_in_bytes() functions
stefank
parents: 10972
diff changeset
  1183
          __ movb(t1, Address(klass, in_bytes(Klass::layout_helper_offset()) + (Klass::_lh_header_size_shift / BitsPerByte)));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
          assert(Klass::_lh_header_size_shift % BitsPerByte == 0, "bytewise");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1185
          assert(Klass::_lh_header_size_mask <= 0xFF, "bytewise");
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1186
          __ andptr(t1, Klass::_lh_header_size_mask);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1187
          __ subptr(arr_size, t1);  // body length
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1188
          __ addptr(t1, obj);       // body start
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
          __ initialize_body(t1, arr_size, 0, t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
          __ verify_oop(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1191
          __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1192
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
          __ bind(try_eden);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1194
          // get the allocation size: round_up(hdr + length << (layout_helper & 0x1F))
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7427
diff changeset
  1195
          // since size is positive movl does right thing on 64bit
11430
718fc06da49a 7118863: Move sizeof(klassOopDesc) into the *Klass::*_offset_in_bytes() functions
stefank
parents: 10972
diff changeset
  1196
          __ movl(t1, Address(klass, Klass::layout_helper_offset()));
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1197
          // since size is postive movl does right thing on 64bit
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1198
          __ movl(arr_size, length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1199
          assert(t1 == rcx, "fixed register usage");
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1200
          __ shlptr(arr_size /* by t1=rcx, mod 32 */);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1201
          __ shrptr(t1, Klass::_lh_header_size_shift);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1202
          __ andptr(t1, Klass::_lh_header_size_mask);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1203
          __ addptr(arr_size, t1);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1204
          __ addptr(arr_size, MinObjAlignmentInBytesMask); // align up
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1205
          __ andptr(arr_size, ~MinObjAlignmentInBytesMask);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1206
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1207
          __ eden_allocate(obj, arr_size, 0, t1, slow_path);  // preserves arr_size
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7427
diff changeset
  1208
          __ incr_allocated_bytes(thread, arr_size, 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1209
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1210
          __ initialize_header(obj, klass, length, t1, t2);
11430
718fc06da49a 7118863: Move sizeof(klassOopDesc) into the *Klass::*_offset_in_bytes() functions
stefank
parents: 10972
diff changeset
  1211
          __ movb(t1, Address(klass, in_bytes(Klass::layout_helper_offset()) + (Klass::_lh_header_size_shift / BitsPerByte)));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1212
          assert(Klass::_lh_header_size_shift % BitsPerByte == 0, "bytewise");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1213
          assert(Klass::_lh_header_size_mask <= 0xFF, "bytewise");
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1214
          __ andptr(t1, Klass::_lh_header_size_mask);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1215
          __ subptr(arr_size, t1);  // body length
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1216
          __ addptr(t1, obj);       // body start
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1217
          __ initialize_body(t1, arr_size, 0, t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1218
          __ verify_oop(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1219
          __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1220
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1221
          __ bind(slow_path);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1222
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1223
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1224
        __ enter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1225
        OopMap* map = save_live_registers(sasm, 3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1226
        int call_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
        if (id == new_type_array_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
          call_offset = __ call_RT(obj, noreg, CAST_FROM_FN_PTR(address, new_type_array), klass, length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1229
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1230
          call_offset = __ call_RT(obj, noreg, CAST_FROM_FN_PTR(address, new_object_array), klass, length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1231
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1232
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1233
        oop_maps = new OopMapSet();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1234
        oop_maps->add_gc_map(call_offset, map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1235
        restore_live_registers_except_rax(sasm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1236
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1237
        __ verify_oop(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1238
        __ leave();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1239
        __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1240
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1241
        // rax,: new array
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1242
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1243
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1244
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1245
    case new_multi_array_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1246
      { StubFrame f(sasm, "new_multi_array", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1247
        // rax,: klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1248
        // rbx,: rank
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1249
        // rcx: address of 1st dimension
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1250
        OopMap* map = save_live_registers(sasm, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1251
        int call_offset = __ call_RT(rax, noreg, CAST_FROM_FN_PTR(address, new_multi_array), rax, rbx, rcx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1252
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1253
        oop_maps = new OopMapSet();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1254
        oop_maps->add_gc_map(call_offset, map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1255
        restore_live_registers_except_rax(sasm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1256
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1257
        // rax,: new multi array
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1258
        __ verify_oop(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1259
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1260
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1261
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1262
    case register_finalizer_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1263
      {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1264
        __ set_info("register_finalizer", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1265
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1266
        // This is called via call_runtime so the arguments
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1267
        // will be place in C abi locations
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1268
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1269
#ifdef _LP64
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1270
        __ verify_oop(c_rarg0);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1271
        __ mov(rax, c_rarg0);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1272
#else
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1273
        // The object is passed on the stack and we haven't pushed a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1274
        // frame yet so it's one work away from top of stack.
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1275
        __ movptr(rax, Address(rsp, 1 * BytesPerWord));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1276
        __ verify_oop(rax);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1277
#endif // _LP64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1278
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1279
        // load the klass and check the has finalizer flag
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1280
        Label register_finalizer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1281
        Register t = rsi;
7427
d7b79a367474 6985015: C1 needs to support compressed oops
iveresov
parents: 7397
diff changeset
  1282
        __ load_klass(t, rax);
11430
718fc06da49a 7118863: Move sizeof(klassOopDesc) into the *Klass::*_offset_in_bytes() functions
stefank
parents: 10972
diff changeset
  1283
        __ movl(t, Address(t, Klass::access_flags_offset()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1284
        __ testl(t, JVM_ACC_HAS_FINALIZER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1285
        __ jcc(Assembler::notZero, register_finalizer);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1286
        __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1287
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1288
        __ bind(register_finalizer);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1289
        __ enter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1290
        OopMap* oop_map = save_live_registers(sasm, 2 /*num_rt_args */);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11962
diff changeset
  1291
        int call_offset = __ call_RT(noreg, noreg, CAST_FROM_FN_PTR(address, SharedRuntime::register_finalizer), rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1292
        oop_maps = new OopMapSet();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1293
        oop_maps->add_gc_map(call_offset, oop_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1294
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1295
        // Now restore all the live registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1296
        restore_live_registers(sasm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1297
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1298
        __ leave();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1299
        __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1300
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1301
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1302
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1303
    case throw_range_check_failed_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1304
      { StubFrame f(sasm, "range_check_failed", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1305
        oop_maps = generate_exception_throw(sasm, CAST_FROM_FN_PTR(address, throw_range_check_exception), true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1306
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1307
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1308
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1309
    case throw_index_exception_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1310
      { StubFrame f(sasm, "index_range_check_failed", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1311
        oop_maps = generate_exception_throw(sasm, CAST_FROM_FN_PTR(address, throw_index_exception), true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1312
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1313
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1314
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1315
    case throw_div0_exception_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1316
      { StubFrame f(sasm, "throw_div0_exception", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1317
        oop_maps = generate_exception_throw(sasm, CAST_FROM_FN_PTR(address, throw_div0_exception), false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1318
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1319
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1320
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1321
    case throw_null_pointer_exception_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1322
      { StubFrame f(sasm, "throw_null_pointer_exception", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1323
        oop_maps = generate_exception_throw(sasm, CAST_FROM_FN_PTR(address, throw_null_pointer_exception), false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1324
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1325
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1326
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1327
    case handle_exception_nofpu_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1328
    case handle_exception_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1329
      { StubFrame f(sasm, "handle_exception", dont_gc_arguments);
8495
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
  1330
        oop_maps = generate_handle_exception(id, sasm);
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
  1331
      }
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
  1332
      break;
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
  1333
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
  1334
    case handle_exception_from_callee_id:
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
  1335
      { StubFrame f(sasm, "handle_exception_from_callee", dont_gc_arguments);
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
  1336
        oop_maps = generate_handle_exception(id, sasm);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1337
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1338
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1339
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1340
    case unwind_exception_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1341
      { __ set_info("unwind_exception", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1342
        // note: no stubframe since we are about to leave the current
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1343
        //       activation and we are calling a leaf VM function only.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1344
        generate_unwind_exception(sasm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1345
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1346
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1347
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1348
    case throw_array_store_exception_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1349
      { StubFrame f(sasm, "throw_array_store_exception", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1350
        // tos + 0: link
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1351
        //     + 1: return address
8067
f5f4eac4c48f 7008809: should report the class in ArrayStoreExceptions from compiled code
never
parents: 7724
diff changeset
  1352
        oop_maps = generate_exception_throw(sasm, CAST_FROM_FN_PTR(address, throw_array_store_exception), true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1353
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1354
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1355
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1356
    case throw_class_cast_exception_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1357
      { StubFrame f(sasm, "throw_class_cast_exception", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1358
        oop_maps = generate_exception_throw(sasm, CAST_FROM_FN_PTR(address, throw_class_cast_exception), true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1359
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1360
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1361
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1362
    case throw_incompatible_class_change_error_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1363
      { StubFrame f(sasm, "throw_incompatible_class_cast_exception", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1364
        oop_maps = generate_exception_throw(sasm, CAST_FROM_FN_PTR(address, throw_incompatible_class_change_error), false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1365
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1366
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1367
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1368
    case slow_subtype_check_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1369
      {
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 1909
diff changeset
  1370
        // Typical calling sequence:
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 1909
diff changeset
  1371
        // __ push(klass_RInfo);  // object klass or other subclass
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 1909
diff changeset
  1372
        // __ push(sup_k_RInfo);  // array element klass or other superclass
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 1909
diff changeset
  1373
        // __ call(slow_subtype_check);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 1909
diff changeset
  1374
        // Note that the subclass is pushed first, and is therefore deepest.
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 1909
diff changeset
  1375
        // Previous versions of this code reversed the names 'sub' and 'super'.
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 1909
diff changeset
  1376
        // This was operationally harmless but made the code unreadable.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1377
        enum layout {
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1378
          rax_off, SLOT2(raxH_off)
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1379
          rcx_off, SLOT2(rcxH_off)
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1380
          rsi_off, SLOT2(rsiH_off)
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1381
          rdi_off, SLOT2(rdiH_off)
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1382
          // saved_rbp_off, SLOT2(saved_rbpH_off)
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1383
          return_off, SLOT2(returnH_off)
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 1909
diff changeset
  1384
          sup_k_off, SLOT2(sup_kH_off)
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 1909
diff changeset
  1385
          klass_off, SLOT2(superH_off)
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 1909
diff changeset
  1386
          framesize,
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 1909
diff changeset
  1387
          result_off = klass_off  // deepest argument is also the return value
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1388
        };
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1389
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1390
        __ set_info("slow_subtype_check", dont_gc_arguments);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1391
        __ push(rdi);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1392
        __ push(rsi);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1393
        __ push(rcx);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1394
        __ push(rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1395
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1396
        // This is called by pushing args and not with C abi
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 1909
diff changeset
  1397
        __ movptr(rsi, Address(rsp, (klass_off) * VMRegImpl::stack_slot_size)); // subclass
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 1909
diff changeset
  1398
        __ movptr(rax, Address(rsp, (sup_k_off) * VMRegImpl::stack_slot_size)); // superclass
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1399
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1400
        Label miss;
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 1909
diff changeset
  1401
        __ check_klass_subtype_slow_path(rsi, rax, rcx, rdi, NULL, &miss);
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 1909
diff changeset
  1402
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 1909
diff changeset
  1403
        // fallthrough on success:
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 1909
diff changeset
  1404
        __ movptr(Address(rsp, (result_off) * VMRegImpl::stack_slot_size), 1); // result
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1405
        __ pop(rax);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1406
        __ pop(rcx);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1407
        __ pop(rsi);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1408
        __ pop(rdi);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1409
        __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1410
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1411
        __ bind(miss);
2256
82d4e10b7c6b 6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents: 1909
diff changeset
  1412
        __ movptr(Address(rsp, (result_off) * VMRegImpl::stack_slot_size), NULL_WORD); // result
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1413
        __ pop(rax);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1414
        __ pop(rcx);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1415
        __ pop(rsi);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1416
        __ pop(rdi);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1417
        __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1418
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1419
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1420
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1421
    case monitorenter_nofpu_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1422
      save_fpu_registers = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1423
      // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1424
    case monitorenter_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1425
      {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1426
        StubFrame f(sasm, "monitorenter", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1427
        OopMap* map = save_live_registers(sasm, 3, save_fpu_registers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1428
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1429
        // Called with store_parameter and not C abi
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1430
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1431
        f.load_argument(1, rax); // rax,: object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1432
        f.load_argument(0, rbx); // rbx,: lock address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1433
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1434
        int call_offset = __ call_RT(noreg, noreg, CAST_FROM_FN_PTR(address, monitorenter), rax, rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1435
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1436
        oop_maps = new OopMapSet();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1437
        oop_maps->add_gc_map(call_offset, map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1438
        restore_live_registers(sasm, save_fpu_registers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1439
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1440
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1441
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1442
    case monitorexit_nofpu_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1443
      save_fpu_registers = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1444
      // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1445
    case monitorexit_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1446
      {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1447
        StubFrame f(sasm, "monitorexit", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1448
        OopMap* map = save_live_registers(sasm, 2, save_fpu_registers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1449
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1450
        // Called with store_parameter and not C abi
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1451
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1452
        f.load_argument(0, rax); // rax,: lock address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1453
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1454
        // note: really a leaf routine but must setup last java sp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1455
        //       => use call_RT for now (speed can be improved by
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1456
        //       doing last java sp setup manually)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1457
        int call_offset = __ call_RT(noreg, noreg, CAST_FROM_FN_PTR(address, monitorexit), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1458
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1459
        oop_maps = new OopMapSet();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1460
        oop_maps->add_gc_map(call_offset, map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1461
        restore_live_registers(sasm, save_fpu_registers);
10972
ef164805934c 7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents: 10508
diff changeset
  1462
      }
ef164805934c 7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents: 10508
diff changeset
  1463
      break;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1464
10972
ef164805934c 7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents: 10508
diff changeset
  1465
    case deoptimize_id:
ef164805934c 7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents: 10508
diff changeset
  1466
      {
ef164805934c 7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents: 10508
diff changeset
  1467
        StubFrame f(sasm, "deoptimize", dont_gc_arguments);
ef164805934c 7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents: 10508
diff changeset
  1468
        const int num_rt_args = 1;  // thread
ef164805934c 7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents: 10508
diff changeset
  1469
        OopMap* oop_map = save_live_registers(sasm, num_rt_args);
ef164805934c 7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents: 10508
diff changeset
  1470
        int call_offset = __ call_RT(noreg, noreg, CAST_FROM_FN_PTR(address, deoptimize));
ef164805934c 7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents: 10508
diff changeset
  1471
        oop_maps = new OopMapSet();
ef164805934c 7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents: 10508
diff changeset
  1472
        oop_maps->add_gc_map(call_offset, oop_map);
ef164805934c 7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents: 10508
diff changeset
  1473
        restore_live_registers(sasm);
ef164805934c 7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents: 10508
diff changeset
  1474
        DeoptimizationBlob* deopt_blob = SharedRuntime::deopt_blob();
ef164805934c 7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents: 10508
diff changeset
  1475
        assert(deopt_blob != NULL, "deoptimization blob must have been created");
ef164805934c 7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents: 10508
diff changeset
  1476
        __ leave();
ef164805934c 7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents: 10508
diff changeset
  1477
        __ jump(RuntimeAddress(deopt_blob->unpack_with_reexecution()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1478
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1479
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1480
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1481
    case access_field_patching_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1482
      { StubFrame f(sasm, "access_field_patching", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1483
        // we should set up register map
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1484
        oop_maps = generate_patching(sasm, CAST_FROM_FN_PTR(address, access_field_patching));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1485
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1486
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1487
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1488
    case load_klass_patching_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1489
      { StubFrame f(sasm, "load_klass_patching", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1490
        // we should set up register map
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1491
        oop_maps = generate_patching(sasm, CAST_FROM_FN_PTR(address, move_klass_patching));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1492
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1493
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1494
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11962
diff changeset
  1495
    case load_mirror_patching_id:
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11962
diff changeset
  1496
      { StubFrame f(sasm, "load_mirror_patching", dont_gc_arguments);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11962
diff changeset
  1497
        // we should set up register map
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11962
diff changeset
  1498
        oop_maps = generate_patching(sasm, CAST_FROM_FN_PTR(address, move_mirror_patching));
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11962
diff changeset
  1499
      }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11962
diff changeset
  1500
      break;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11962
diff changeset
  1501
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1502
    case dtrace_object_alloc_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1503
      { // rax,: object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1504
        StubFrame f(sasm, "dtrace_object_alloc", dont_gc_arguments);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1505
        // we can't gc here so skip the oopmap but make sure that all
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1506
        // the live registers get saved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1507
        save_live_registers(sasm, 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1508
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1509
        __ NOT_LP64(push(rax)) LP64_ONLY(mov(c_rarg0, rax));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1510
        __ call(RuntimeAddress(CAST_FROM_FN_PTR(address, SharedRuntime::dtrace_object_alloc)));
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1511
        NOT_LP64(__ pop(rax));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1512
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1513
        restore_live_registers(sasm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1514
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1515
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1516
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1517
    case fpu2long_stub_id:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1518
      {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1519
        // rax, and rdx are destroyed, but should be free since the result is returned there
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1520
        // preserve rsi,ecx
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1521
        __ push(rsi);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1522
        __ push(rcx);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1523
        LP64_ONLY(__ push(rdx);)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1524
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1525
        // check for NaN
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1526
        Label return0, do_return, return_min_jlong, do_convert;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1527
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1528
        Address value_high_word(rsp, wordSize + 4);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1529
        Address value_low_word(rsp, wordSize);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1530
        Address result_high_word(rsp, 3*wordSize + 4);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1531
        Address result_low_word(rsp, 3*wordSize);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1532
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1533
        __ subptr(rsp, 32);                    // more than enough on 32bit
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1534
        __ fst_d(value_low_word);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1535
        __ movl(rax, value_high_word);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1536
        __ andl(rax, 0x7ff00000);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1537
        __ cmpl(rax, 0x7ff00000);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1538
        __ jcc(Assembler::notEqual, do_convert);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1539
        __ movl(rax, value_high_word);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1540
        __ andl(rax, 0xfffff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1541
        __ orl(rax, value_low_word);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1542
        __ jcc(Assembler::notZero, return0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1543
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1544
        __ bind(do_convert);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1545
        __ fnstcw(Address(rsp, 0));
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1546
        __ movzwl(rax, Address(rsp, 0));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1547
        __ orl(rax, 0xc00);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1548
        __ movw(Address(rsp, 2), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1549
        __ fldcw(Address(rsp, 2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1550
        __ fwait();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1551
        __ fistp_d(result_low_word);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1552
        __ fldcw(Address(rsp, 0));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1553
        __ fwait();
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1554
        // This gets the entire long in rax on 64bit
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1555
        __ movptr(rax, result_low_word);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1556
        // testing of high bits
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1557
        __ movl(rdx, result_high_word);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1558
        __ mov(rcx, rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1559
        // What the heck is the point of the next instruction???
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1560
        __ xorl(rcx, 0x0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1561
        __ movl(rsi, 0x80000000);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1562
        __ xorl(rsi, rdx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1563
        __ orl(rcx, rsi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1564
        __ jcc(Assembler::notEqual, do_return);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1565
        __ fldz();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1566
        __ fcomp_d(value_low_word);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1567
        __ fnstsw_ax();
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1568
#ifdef _LP64
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1569
        __ testl(rax, 0x4100);  // ZF & CF == 0
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1570
        __ jcc(Assembler::equal, return_min_jlong);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1571
#else
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1572
        __ sahf();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1573
        __ jcc(Assembler::above, return_min_jlong);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1574
#endif // _LP64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1575
        // return max_jlong
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1576
#ifndef _LP64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1577
        __ movl(rdx, 0x7fffffff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1578
        __ movl(rax, 0xffffffff);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1579
#else
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1580
        __ mov64(rax, CONST64(0x7fffffffffffffff));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1581
#endif // _LP64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1582
        __ jmp(do_return);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1583
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1584
        __ bind(return_min_jlong);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1585
#ifndef _LP64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1586
        __ movl(rdx, 0x80000000);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1587
        __ xorl(rax, rax);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1588
#else
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1589
        __ mov64(rax, CONST64(0x8000000000000000));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1590
#endif // _LP64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1591
        __ jmp(do_return);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1592
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1593
        __ bind(return0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1594
        __ fpop();
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1595
#ifndef _LP64
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1596
        __ xorptr(rdx,rdx);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1597
        __ xorptr(rax,rax);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1598
#else
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1599
        __ xorptr(rax, rax);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1600
#endif // _LP64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1601
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1602
        __ bind(do_return);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1603
        __ addptr(rsp, 32);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1604
        LP64_ONLY(__ pop(rdx);)
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1605
        __ pop(rcx);
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1606
        __ pop(rsi);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1607
        __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1608
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1609
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1610
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13728
diff changeset
  1611
#if INCLUDE_ALL_GCS
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1612
    case g1_pre_barrier_slow_id:
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1613
      {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1614
        StubFrame f(sasm, "g1_pre_barrier", dont_gc_arguments);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1615
        // arg0 : previous value of memory
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1616
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1617
        BarrierSet* bs = Universe::heap()->barrier_set();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1618
        if (bs->kind() != BarrierSet::G1SATBCTLogging) {
1394
apetrusenko
parents: 1066 1374
diff changeset
  1619
          __ movptr(rax, (int)id);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1620
          __ call_RT(noreg, noreg, CAST_FROM_FN_PTR(address, unimplemented_entry), rax);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1621
          __ should_not_reach_here();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1622
          break;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1623
        }
1394
apetrusenko
parents: 1066 1374
diff changeset
  1624
        __ push(rax);
apetrusenko
parents: 1066 1374
diff changeset
  1625
        __ push(rdx);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1626
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1627
        const Register pre_val = rax;
1394
apetrusenko
parents: 1066 1374
diff changeset
  1628
        const Register thread = NOT_LP64(rax) LP64_ONLY(r15_thread);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1629
        const Register tmp = rdx;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1630
1394
apetrusenko
parents: 1066 1374
diff changeset
  1631
        NOT_LP64(__ get_thread(thread);)
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1632
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1633
        Address in_progress(thread, in_bytes(JavaThread::satb_mark_queue_offset() +
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1634
                                             PtrQueue::byte_offset_of_active()));
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1635
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1636
        Address queue_index(thread, in_bytes(JavaThread::satb_mark_queue_offset() +
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1637
                                             PtrQueue::byte_offset_of_index()));
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1638
        Address buffer(thread, in_bytes(JavaThread::satb_mark_queue_offset() +
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1639
                                        PtrQueue::byte_offset_of_buf()));
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1640
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1641
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1642
        Label done;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1643
        Label runtime;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1644
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1645
        // Can we store original value in the thread's buffer?
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1646
1394
apetrusenko
parents: 1066 1374
diff changeset
  1647
#ifdef _LP64
5695
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1648
        __ movslq(tmp, queue_index);
1394
apetrusenko
parents: 1066 1374
diff changeset
  1649
        __ cmpq(tmp, 0);
apetrusenko
parents: 1066 1374
diff changeset
  1650
#else
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1651
        __ cmpl(queue_index, 0);
1394
apetrusenko
parents: 1066 1374
diff changeset
  1652
#endif
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1653
        __ jcc(Assembler::equal, runtime);
1394
apetrusenko
parents: 1066 1374
diff changeset
  1654
#ifdef _LP64
apetrusenko
parents: 1066 1374
diff changeset
  1655
        __ subq(tmp, wordSize);
apetrusenko
parents: 1066 1374
diff changeset
  1656
        __ movl(queue_index, tmp);
apetrusenko
parents: 1066 1374
diff changeset
  1657
        __ addq(tmp, buffer);
apetrusenko
parents: 1066 1374
diff changeset
  1658
#else
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1659
        __ subl(queue_index, wordSize);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1660
        __ movl(tmp, buffer);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1661
        __ addl(tmp, queue_index);
1394
apetrusenko
parents: 1066 1374
diff changeset
  1662
#endif
apetrusenko
parents: 1066 1374
diff changeset
  1663
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1664
        // prev_val (rax)
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1665
        f.load_argument(0, pre_val);
1394
apetrusenko
parents: 1066 1374
diff changeset
  1666
        __ movptr(Address(tmp, 0), pre_val);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1667
        __ jmp(done);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1668
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1669
        __ bind(runtime);
5695
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1670
        __ push(rcx);
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1671
#ifdef _LP64
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1672
        __ push(r8);
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1673
        __ push(r9);
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1674
        __ push(r10);
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1675
        __ push(r11);
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1676
#  ifndef _WIN64
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1677
        __ push(rdi);
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1678
        __ push(rsi);
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1679
#  endif
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1680
#endif
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1681
        // load the pre-value
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1682
        f.load_argument(0, rcx);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1683
        __ call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::g1_wb_pre), rcx, thread);
5695
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1684
#ifdef _LP64
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1685
#  ifndef _WIN64
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1686
        __ pop(rsi);
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1687
        __ pop(rdi);
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1688
#  endif
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1689
        __ pop(r11);
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1690
        __ pop(r10);
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1691
        __ pop(r9);
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1692
        __ pop(r8);
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1693
#endif
1394
apetrusenko
parents: 1066 1374
diff changeset
  1694
        __ pop(rcx);
5695
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1695
        __ bind(done);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1696
1394
apetrusenko
parents: 1066 1374
diff changeset
  1697
        __ pop(rdx);
apetrusenko
parents: 1066 1374
diff changeset
  1698
        __ pop(rax);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1699
      }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1700
      break;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1701
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1702
    case g1_post_barrier_slow_id:
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1703
      {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1704
        StubFrame f(sasm, "g1_post_barrier", dont_gc_arguments);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1705
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1706
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1707
        // arg0: store_address
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1708
        Address store_addr(rbp, 2*BytesPerWord);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1709
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1710
        BarrierSet* bs = Universe::heap()->barrier_set();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1711
        CardTableModRefBS* ct = (CardTableModRefBS*)bs;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1712
        Label done;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1713
        Label runtime;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1714
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1715
        // At this point we know new_value is non-NULL and the new_value crosses regsion.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1716
        // Must check to see if card is already dirty
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1717
1394
apetrusenko
parents: 1066 1374
diff changeset
  1718
        const Register thread = NOT_LP64(rax) LP64_ONLY(r15_thread);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1719
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1720
        Address queue_index(thread, in_bytes(JavaThread::dirty_card_queue_offset() +
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1721
                                             PtrQueue::byte_offset_of_index()));
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1722
        Address buffer(thread, in_bytes(JavaThread::dirty_card_queue_offset() +
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1723
                                        PtrQueue::byte_offset_of_buf()));
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1724
1394
apetrusenko
parents: 1066 1374
diff changeset
  1725
        __ push(rax);
5695
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1726
        __ push(rcx);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1727
1394
apetrusenko
parents: 1066 1374
diff changeset
  1728
        NOT_LP64(__ get_thread(thread);)
apetrusenko
parents: 1066 1374
diff changeset
  1729
        ExternalAddress cardtable((address)ct->byte_map_base);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1730
        assert(sizeof(*ct->byte_map_base) == sizeof(jbyte), "adjust this code");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1731
5695
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1732
        const Register card_addr = rcx;
1394
apetrusenko
parents: 1066 1374
diff changeset
  1733
#ifdef _LP64
apetrusenko
parents: 1066 1374
diff changeset
  1734
        const Register tmp = rscratch1;
apetrusenko
parents: 1066 1374
diff changeset
  1735
        f.load_argument(0, card_addr);
apetrusenko
parents: 1066 1374
diff changeset
  1736
        __ shrq(card_addr, CardTableModRefBS::card_shift);
apetrusenko
parents: 1066 1374
diff changeset
  1737
        __ lea(tmp, cardtable);
apetrusenko
parents: 1066 1374
diff changeset
  1738
        // get the address of the card
apetrusenko
parents: 1066 1374
diff changeset
  1739
        __ addq(card_addr, tmp);
apetrusenko
parents: 1066 1374
diff changeset
  1740
#else
5695
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1741
        const Register card_index = rcx;
1394
apetrusenko
parents: 1066 1374
diff changeset
  1742
        f.load_argument(0, card_index);
apetrusenko
parents: 1066 1374
diff changeset
  1743
        __ shrl(card_index, CardTableModRefBS::card_shift);
apetrusenko
parents: 1066 1374
diff changeset
  1744
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1745
        Address index(noreg, card_index, Address::times_1);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1746
        __ leal(card_addr, __ as_Address(ArrayAddress(cardtable, index)));
1394
apetrusenko
parents: 1066 1374
diff changeset
  1747
#endif
apetrusenko
parents: 1066 1374
diff changeset
  1748
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1749
        __ cmpb(Address(card_addr, 0), 0);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1750
        __ jcc(Assembler::equal, done);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1751
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1752
        // storing region crossing non-NULL, card is clean.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1753
        // dirty card and log.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1754
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1755
        __ movb(Address(card_addr, 0), 0);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1756
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1757
        __ cmpl(queue_index, 0);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1758
        __ jcc(Assembler::equal, runtime);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1759
        __ subl(queue_index, wordSize);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1760
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1761
        const Register buffer_addr = rbx;
1394
apetrusenko
parents: 1066 1374
diff changeset
  1762
        __ push(rbx);
apetrusenko
parents: 1066 1374
diff changeset
  1763
apetrusenko
parents: 1066 1374
diff changeset
  1764
        __ movptr(buffer_addr, buffer);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1765
1394
apetrusenko
parents: 1066 1374
diff changeset
  1766
#ifdef _LP64
apetrusenko
parents: 1066 1374
diff changeset
  1767
        __ movslq(rscratch1, queue_index);
apetrusenko
parents: 1066 1374
diff changeset
  1768
        __ addptr(buffer_addr, rscratch1);
apetrusenko
parents: 1066 1374
diff changeset
  1769
#else
apetrusenko
parents: 1066 1374
diff changeset
  1770
        __ addptr(buffer_addr, queue_index);
apetrusenko
parents: 1066 1374
diff changeset
  1771
#endif
apetrusenko
parents: 1066 1374
diff changeset
  1772
        __ movptr(Address(buffer_addr, 0), card_addr);
apetrusenko
parents: 1066 1374
diff changeset
  1773
apetrusenko
parents: 1066 1374
diff changeset
  1774
        __ pop(rbx);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1775
        __ jmp(done);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1776
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1777
        __ bind(runtime);
5695
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1778
        __ push(rdx);
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1779
#ifdef _LP64
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1780
        __ push(r8);
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1781
        __ push(r9);
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1782
        __ push(r10);
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1783
        __ push(r11);
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1784
#  ifndef _WIN64
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1785
        __ push(rdi);
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1786
        __ push(rsi);
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1787
#  endif
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1788
#endif
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1789
        __ call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::g1_wb_post), card_addr, thread);
5695
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1790
#ifdef _LP64
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1791
#  ifndef _WIN64
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1792
        __ pop(rsi);
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1793
        __ pop(rdi);
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1794
#  endif
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1795
        __ pop(r11);
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1796
        __ pop(r10);
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1797
        __ pop(r9);
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1798
        __ pop(r8);
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1799
#endif
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1800
        __ pop(rdx);
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1801
        __ bind(done);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1802
5695
7fbbde5b4e3e 6955349: C1: Make G1 barriers work with x64
iveresov
parents: 5687
diff changeset
  1803
        __ pop(rcx);
1394
apetrusenko
parents: 1066 1374
diff changeset
  1804
        __ pop(rax);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1805
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1806
      }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1807
      break;
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13728
diff changeset
  1808
#endif // INCLUDE_ALL_GCS
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
  1809
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1810
    default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1811
      { StubFrame f(sasm, "unimplemented entry", dont_gc_arguments);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
  1812
        __ movptr(rax, (int)id);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1813
        __ call_RT(noreg, noreg, CAST_FROM_FN_PTR(address, unimplemented_entry), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1814
        __ should_not_reach_here();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1815
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1816
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1817
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1818
  return oop_maps;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1819
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1820
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1821
#undef __
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5702
diff changeset
  1822
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5702
diff changeset
  1823
const char *Runtime1::pd_name_for_address(address entry) {
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5702
diff changeset
  1824
  return "<unknown function>";
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5702
diff changeset
  1825
}